/* --- ivobutik MASTER CSS (FULL & FIXED) --- */
:root {
    --ivo-black: #050505;
    --ivo-gold: #c5a47e;
    --ivo-border: rgba(255, 255, 255, 0.08);
    --ivo-gray: #888;
}

body { background: var(--ivo-black) !important; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; overflow-x: hidden; }
.ivo-container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* 1. HERO FIX */
.ivo-hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; overflow: hidden; }
.ivo-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; width: 100%; z-index: 10; }
.ivo-hero-tag { font-size: 10px; letter-spacing: 4px; color: var(--ivo-gold); font-weight: 800; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.ivo-dot { width: 6px; height: 6px; background: var(--ivo-gold); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% {opacity: 0.5;} 50% {opacity: 1;} }

.ivo-hero-title { font-family: 'Syne', sans-serif; font-size: clamp(40px, 8vw, 115px); font-weight: 800; line-height: 0.85; letter-spacing: -5px; }
.ivo-t-outline { display: block; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.2); }
.ivo-hero-desc { color: var(--ivo-gray); max-width: 350px; font-size: 14px; line-height: 1.6; margin-bottom: 35px; }
.ivo-btn-primary { background: #fff; color: #000; text-decoration: none; padding: 18px 45px; border-radius: 100px; font-weight: 900; font-size: 12px; display: inline-flex; align-items: center; gap: 15px; transition: 0.4s; }
.ivo-btn-primary:hover { background: var(--ivo-gold); color: #fff; transform: translateY(-5px); }

.ivo-hero-img { width: 100%; max-width: 580px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9)); animation: float 8s infinite ease-in-out; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-35px); } }
.ivo-floating-text { position: absolute; bottom: -5%; left: -5%; font-size: 20vw; font-weight: 900; opacity: 0.02; pointer-events: none; }

/* 2. GALLERY */
.ivo-gallery { padding: 120px 0; }
.ivo-sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.ivo-sub { color: var(--ivo-gold); font-weight: 800; font-size: 10px; letter-spacing: 3px; }
.ivo-sec-title { font-family: 'Syne', sans-serif; font-size: 45px; font-weight: 800; margin: 10px 0 0; }

.ivo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.ivo-card-offset { margin-top: 100px; }
.ivo-card-media { position: relative; aspect-ratio: 1/1.2; background: #0a0a0a; border: 1px solid var(--ivo-border); border-radius: 30px; overflow: hidden; }
.ivo-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 30px; opacity: 0.8; transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1); }
.ivo-card:hover img { opacity: 1; transform: scale(1.08) rotate(2deg); }
.ivo-overlay-btn { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(20px); background: #fff; color: #000; padding: 12px 30px; border-radius: 50px; font-size: 10px; font-weight: 900; opacity: 0; transition: 0.4s; text-decoration: none; }
.ivo-card:hover .ivo-overlay-btn { opacity: 1; transform: translateX(-50%) translateY(0); }
.ivo-card-info { padding: 25px 5px; }
.ivo-card-name { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.ivo-card-footer { display: flex; justify-content: space-between; align-items: center; }
.ivo-card-price { font-weight: 800; color: var(--ivo-gold); }
.ivo-card-label { font-size: 9px; color: var(--ivo-gray); letter-spacing: 1px; }

/* 3. SCROLL SLIDER (Area 3) */
.ivo-drop { padding: 120px 0; background: #000; }
.ivo-drop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.ivo-drop-title { font-family: 'Syne', sans-serif; font-size: 60px; font-weight: 800; opacity: 0.1; letter-spacing: -3px; margin: 0; }
.ivo-slider-nav { display: flex; gap: 15px; }
.ivo-slider-nav button { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--ivo-border); background: transparent; color: #fff; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ivo-slider-nav button:hover { background: #fff; color: #000; }

.ivo-slider-container { display: flex; gap: 30px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; padding-bottom: 20px; }
.ivo-slider-container::-webkit-scrollbar { display: none; }
.ivo-slide-item { min-width: 400px; background: rgba(255,255,255,0.02); border: 1px solid var(--ivo-border); border-radius: 40px; padding: 30px; }
.ivo-slide-media { height: 350px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.ivo-slide-media img { max-height: 100%; object-fit: contain; }
.ivo-plus-btn { width: 45px; height: 45px; background: #fff; color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 22px; transition: 0.3s; }
.ivo-plus-btn:hover { background: var(--ivo-gold); color: #fff; transform: rotate(90deg); }
.ivo-slide-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }

/* 4. SIGNATURE */
.ivo-signature { padding: 120px 0; }
.ivo-sig-block { display: flex; align-items: center; gap: 100px; margin-bottom: 180px; }
.ivo-reverse { flex-direction: row-reverse; }
.ivo-sig-img-wrap { width: 100%; height: 650px; border-radius: 50px; background: #080808; border: 1px solid var(--ivo-border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ivo-sig-img-wrap img { max-width: 80%; filter: grayscale(1); transition: 1s cubic-bezier(0.19, 1, 0.22, 1); }
.ivo-sig-block:hover img { filter: grayscale(0); transform: scale(1.05); }
.ivo-sig-no { font-family: 'Syne', sans-serif; font-size: 80px; font-weight: 800; opacity: 0.05; line-height: 1; display: block; }
.ivo-sig-label { color: var(--ivo-gold); font-size: 11px; letter-spacing: 5px; font-weight: 800; }
.ivo-sig-name { font-family: 'Syne', sans-serif; font-size: 55px; font-weight: 800; line-height: 1; margin: 20px 0; }
.ivo-sig-desc { color: var(--ivo-gray); line-height: 1.8; margin-bottom: 45px; max-width: 450px; }
.ivo-sig-btn { color: #fff; text-decoration: none; font-weight: 800; font-size: 12px; letter-spacing: 3px; border-bottom: 2px solid var(--ivo-gold); padding-bottom: 10px; }

/* Responsive */
@media (max-width: 1024px) {
    .ivo-hero-grid, .ivo-sig-block { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .ivo-grid { grid-template-columns: repeat(2, 1fr); }
    .ivo-slide-item { min-width: 300px; }
    .ivo-hero-desc { margin: 0 auto 35px; }
}