/* ===================================================
   Rukiye'nin Gezen Mutfağı - Main Stylesheet
   =================================================== */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary - Terracotta (CTA butonlar) */
    --terra: #C9856A;
    --terra-dark: #a86a52;
    --terra-light: #e0a08a;
    --terra-pale: rgba(201,133,106,0.12);

    /* Secondary - Green (Belirgin vurgular, siyahtan sonra en dominant) */
    --green: #3FB434;
    --green-dark: #2d9a27;
    --green-light: #5cd44f;
    --green-pale: rgba(63,180,52,0.12);

    /* Accent - Gold (SADECE küçük dekoratif detaylar: yıldızlar, ince çizgiler) */
    --gold: #C9A84C;
    --gold-light: #e8c96d;
    --gold-dark: #a88930;

    /* Neutrals */
    --black: #0d0d0d;
    --black-2: #1a1a1a;
    --black-3: #252525;
    --white: #ffffff;
    --white-2: #f5f5f5;
    --grey: #888888;
    --grey-light: #cccccc;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --nav-height: 80px;
    --transition: all 0.35s ease;
    --shadow: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-terra: 0 8px 30px rgba(201,133,106,0.3);
    --shadow-green: 0 8px 30px rgba(63,180,52,0.25);
    --shadow-gold: 0 4px 16px rgba(201,168,76,0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ===== UTILITY CLASSES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-blue { color: var(--green); }
.text-center { text-align: center; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 12px;
}
.section-title span { color: var(--green); }

.section-subtitle {
    font-size: 0.95rem;
    color: var(--grey);
    max-width: 560px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    margin: 14px auto 20px;
    border-radius: 2px;
}
.gold-line.left { margin: 14px 0 20px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terra), var(--terra-dark));
    color: var(--white);
    box-shadow: var(--shadow-terra);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--terra-light), var(--terra));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,133,106,0.45);
}

.btn-gold {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: var(--shadow-green);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(63,180,52,0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}
.btn-outline-gold:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0 20px;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,133,106,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green);
    box-shadow: 0 0 12px rgba(63,180,52,0.35);
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nav-logo-text span:first-child {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}
.nav-logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--green);
    transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    padding: 10px 22px !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}
.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .social-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.mobile-nav .social-row a {
    font-size: 1.4rem;
    color: var(--grey);
}
.mobile-nav .social-row a:hover { color: var(--green); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,133,106,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 30% 80%, rgba(63,180,52,0.04) 0%, transparent 50%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63,180,52,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63,180,52,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    z-index: 2;
}

.hero-content {}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,133,106,0.15);
    border: 1px solid rgba(201,133,106,0.4);
    color: var(--terra-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-badge i { font-size: 0.75rem; }

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-title .highlight {
    color: var(--green);
    display: block;
}
.hero-title .blue-text { color: var(--blue-light); }

.hero-desc {
    font-size: 1rem;
    color: var(--grey-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
}
.hero-stat {}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-ring {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--terra), var(--green-light), var(--terra-light));
    animation: spin 8s linear infinite;
}
.hero-image-ring::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--black);
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-image-ring img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 60px rgba(63,180,52,0.2);
}

.hero-float-badge {
    position: absolute;
    background: var(--black-2);
    border: 1px solid rgba(63,180,52,0.3);
    border-radius: var(--radius);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}
.hero-float-badge.badge-1 { bottom: 30px; left: -20px; animation-delay: 0s; }
.hero-float-badge.badge-2 { top: 40px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-float-badge i {
    font-size: 1.4rem;
    color: var(--green);
}
.hero-float-badge-text span:first-child {
    display: block;
    font-size: 0.7rem;
    color: var(--grey);
}
.hero-float-badge-text span:last-child {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}
.hero-scroll i { font-size: 1.1rem; color: var(--green); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--black-2);
    border-top: 1px solid rgba(63,180,52,0.2);
    border-bottom: 1px solid rgba(63,180,52,0.2);
    padding: 40px 0;
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-item {
    text-align: center;
    padding: 10px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT TEASER ===== */
.about-section { background: var(--black); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-wrap { position: relative; }
.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image-frame img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image-frame:hover img { transform: scale(1.04); }

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 60%; height: 60%;
    border-top: 3px solid var(--green);
    border-left: 3px solid var(--green);
    border-radius: 8px 0 0 0;
    z-index: 1;
    pointer-events: none;
}
.about-image-frame::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 60%; height: 60%;
    border-bottom: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    border-radius: 0 0 8px 0;
    z-index: 1;
    pointer-events: none;
}

.about-exp-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}
.about-exp-badge .exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.about-exp-badge .exp-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content { padding-left: 10px; }
.about-content .section-title { text-align: left; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 30px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--grey-light);
    transition: var(--transition);
}
.about-feature:hover {
    border-color: rgba(63,180,52,0.3);
    color: var(--white);
}
.about-feature i { color: var(--green); font-size: 1rem; }

.about-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    background: var(--black-2);
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn.instagram:hover { background: #e1306c; border-color: #e1306c; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }

/* ===== THERMOMIX SECTION ===== */
.thermomix-section {
    background: var(--black-2);
    position: relative;
    overflow: hidden;
}
.thermomix-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(201,133,106,0.07) 0%, transparent 70%);
}

.thermomix-header { text-align: center; margin-bottom: 60px; }

.thermomix-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Feature card with image thumb */
.feature-card-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.feature-card:hover .feature-card-thumb { transform: scale(1.04); }
.feature-card.has-thumb { padding-top: 0; }
.feature-card.has-thumb .feature-thumb-wrap {
    margin: -1px -1px 24px -1px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    position: relative;
}
.feature-card.has-thumb .feature-thumb-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--black-3), transparent);
}

/* Product image card */
.product-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,133,106,0.2);
    position: relative;
}
.product-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.product-img-card:hover img { transform: scale(1.03); }
.product-img-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light));
    z-index: 1;
}

/* Image section backgrounds */
.section-bg-img {
    position: relative;
    overflow: hidden;
}
.section-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.82);
    z-index: 1;
}
.section-bg-img > * { position: relative; z-index: 2; }
.section-bg-img img.bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.feature-card {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(201,133,106,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201,133,106,0.1);
    border: 2px solid rgba(201,133,106,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.feature-icon i {
    font-size: 1.6rem;
    color: var(--terra);
}
.feature-card:hover .feature-icon {
    background: var(--terra);
    border-color: var(--terra);
}
.feature-card:hover .feature-icon i { color: var(--white); }

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--white);
}
.feature-card p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.7;
}

.thermomix-cta {
    text-align: center;
    background: var(--black-3);
    border: 1px solid rgba(63,180,52,0.15);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.thermomix-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(63,180,52,0.04) 0%, transparent 70%);
}
.thermomix-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.thermomix-cta p {
    color: var(--grey);
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}
.thermomix-cta .btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== YOUTUBE SECTION ===== */
.youtube-section { background: var(--black); }
.youtube-header { text-align: center; margin-bottom: 50px; }

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.video-card:hover {
    border-color: rgba(255,0,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--black-3);
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.play-overlay i {
    font-size: 3.5rem;
    color: #ff0000;
    filter: drop-shadow(0 0 12px rgba(255,0,0,0.6));
}
.video-card:hover .play-overlay { opacity: 1; }

.video-info { padding: 18px 20px; }
.video-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-meta {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--grey);
}
.video-meta i { color: var(--green); }

.youtube-footer { text-align: center; }

/* Loading state for videos */
.video-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--grey);
}
.video-loading i { font-size: 2rem; color: #ff0000; display: block; margin-bottom: 12px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--black-2);
    position: relative;
    overflow: hidden;
}
.instagram-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(225,48,108,0.05) 0%, transparent 70%);
}

.instagram-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.instagram-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(220,39,67,0.3);
}
.instagram-icon i { font-size: 2.4rem; color: #fff; }

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.instagram-handle span { color: var(--green); }

.instagram-section .section-subtitle {
    margin-bottom: 36px;
}

/* ===== CONTACT SECTION (iletisim) ===== */
.contact-section { background: var(--black); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info { }
.contact-info .section-title { text-align: left; }

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.contact-card:hover {
    border-color: rgba(63,180,52,0.3);
    transform: translateX(6px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(63,180,52,0.1);
    border: 1px solid rgba(63,180,52,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card-icon i { font-size: 1.1rem; color: var(--green); }
.contact-card-info span:first-child {
    display: block;
    font-size: 0.72rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-card-info span:last-child {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 3px;
}

.contact-social { margin-top: 32px; }
.contact-social p {
    font-size: 0.8rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.contact-social-links {
    display: flex;
    gap: 12px;
}
.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--grey-light);
    transition: var(--transition);
}
.contact-social-links a:hover { transform: translateY(-3px); }
.contact-social-links a.instagram:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.contact-social-links a.youtube:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.contact-social-links a.facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.contact-social-links a.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

/* ===== FORM ===== */
.contact-form-wrap {
    background: var(--black-2);
    border: 1px solid rgba(63,180,52,0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 6px;
}
.contact-form-wrap p {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(63,180,52,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 0.88rem;
    display: none;
}
.form-alert.success {
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25d366;
    display: block;
}
.form-alert.error {
    background: rgba(220,53,69,0.12);
    border: 1px solid rgba(220,53,69,0.3);
    color: #dc3545;
    display: block;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    min-height: 380px;
    display: flex;
    align-items: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(51,122,183,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(63,180,52,0.06) 0%, transparent 50%);
}
.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63,180,52,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63,180,52,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 600px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--green); }
.breadcrumb i { font-size: 0.7rem; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: var(--grey); font-size: 1rem; max-width: 480px; }

/* ===== THERMOMIX PAGE ===== */
.thermomix-intro {
    background: var(--black);
    padding: 80px 0;
}
.thermomix-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.thermomix-intro-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 16px;
}
.thermomix-intro-content p {
    color: var(--grey-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 20px;
}
.thermomix-intro-image {
    background: var(--black-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(63,180,52,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 340px;
}
.thermomix-intro-image i {
    font-size: 8rem;
    color: var(--green);
    opacity: 0.4;
}

.features-full {
    background: var(--black-2);
    padding: 80px 0;
}
.features-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefits-section {
    background: var(--black);
    padding: 80px 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.benefit-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.benefit-item:hover { border-color: rgba(63,180,52,0.25); }
.benefit-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(63,180,52,0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 50px;
}
.benefit-text h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}
.benefit-text p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.7;
}

/* ===== ABOUT PAGE ===== */
.about-full {
    background: var(--black);
    padding: 80px 0;
}
.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}
.about-full-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 20px;
}
.about-full-content p {
    color: var(--grey-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 20px;
}
.about-full-content p:last-child { margin-bottom: 0; }

.timeline {
    background: var(--black-2);
    padding: 80px 0;
}
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.timeline-grid::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--terra), var(--green));
}
.timeline-item {
    display: flex;
    gap: 28px;
    padding: 0 0 40px 54px;
    position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: 12px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--black-2);
    box-shadow: 0 0 12px rgba(63,180,52,0.4);
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    min-width: 60px;
}
.timeline-content h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #080808;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}
.footer-logo-text {}
.footer-logo-text span:first-child {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
}
.footer-logo-text span:last-child {
    display: block;
    font-size: 0.72rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 280px;
}
.footer-social-links {
    display: flex;
    gap: 10px;
}
.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--grey);
    transition: var(--transition);
}
.footer-social-links a:hover { transform: translateY(-3px); }
.footer-social-links a.instagram:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.footer-social-links a.youtube:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social-links a.facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-social-links a.whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--grey);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a::before {
    content: '›';
    color: var(--green);
    font-size: 1.1rem;
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--grey);
}
.footer-bottom a { color: var(--green); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
    color: #fff;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(37,211,102,0.25);
    animation: wa-pulse 2s ease-out infinite;
}
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: rgba(37,211,102,0.12);
    animation: wa-pulse 2s ease-out infinite 0.5s;
}
@keyframes wa-pulse {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201,133,106,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(201,133,106,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--terra); transform: translateY(-3px); }

/* ===== AOS OVERRIDES ===== */
[data-aos] { transition-duration: 700ms !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-content { order: 2; }
    .hero-image-wrap { order: 1; }
    .hero-desc { max-width: 100%; margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-ring, .hero-image-ring img { width: 300px; height: 300px; }

    .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }

    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { max-width: 420px; margin: 0 auto; }
    .about-exp-badge { right: 10px; }

    .thermomix-features { grid-template-columns: repeat(2, 1fr); }

    .videos-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; }

    .about-full-grid { grid-template-columns: 1fr; }
    .thermomix-intro-grid { grid-template-columns: 1fr; }
    .features-full-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 70px; }
    .section-pad { padding: 60px 0; }

    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero-float-badge.badge-1,
    .hero-float-badge.badge-2 { display: none; }

    .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .about-features { grid-template-columns: 1fr; }
    .about-social { flex-wrap: wrap; }

    .thermomix-features { grid-template-columns: 1fr; }

    .videos-grid { grid-template-columns: 1fr; }

    .features-full-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .contact-form-wrap { padding: 28px 22px; }

    .thermomix-cta { padding: 36px 22px; }

    .hero-image-ring, .hero-image-ring img { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }

    .stats-bar .container { grid-template-columns: 1fr 1fr; }

    .about-grid, .contact-grid { gap: 40px; }

    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
    .back-to-top { right: 82px; bottom: 20px; }
}

/* ===================================================
   PRODUCT SHOWCASE - Homepage Sales Sections
   =================================================== */

/* ===== PRODUCT HERO BANNER ===== */
.product-hero-banner {
    background: var(--black-2);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.product-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,133,106,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(63,180,52,0.04) 0%, transparent 50%);
}
.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terra-pale);
    border: 1px solid rgba(201,133,106,0.35);
    color: var(--terra-light);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.product-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.product-headline .highlight { color: var(--terra); }
.product-desc {
    font-size: 0.95rem;
    color: var(--grey-light);
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 32px;
}
.product-spec-row {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.product-spec-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}
.product-spec-pill i { color: var(--terra); font-size: 0.9rem; }
.product-spec-pill:hover { border-color: rgba(201,133,106,0.3); }

.product-price-box {
    background: var(--black-3);
    border: 1px solid rgba(201,133,106,0.2);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.price-label {
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--terra);
}
.price-note {
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 2px;
}
.price-badge {
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25d366;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.product-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-device-card {
    background: var(--black-3);
    border: 1px solid rgba(201,133,106,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.product-device-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terra), var(--terra-light));
}
.product-device-icon {
    font-size: 5.5rem;
    color: var(--terra);
    opacity: 0.8;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(201,133,106,0.3));
}
.product-device-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
}
.product-device-sub {
    font-size: 0.82rem;
    color: var(--terra-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-mini-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.product-mini-spec {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.product-mini-spec:hover { border-color: rgba(201,133,106,0.25); }
.product-mini-spec i { color: var(--terra); font-size: 1rem; flex-shrink: 0; }
.product-mini-spec-text {}
.product-mini-spec-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
}
.product-mini-spec-text span {
    font-size: 0.72rem;
    color: var(--grey);
}

/* ===== PRODUCT FEATURES STRIP ===== */
.features-strip {
    background: var(--black-3);
    border-top: 1px solid rgba(201,133,106,0.15);
    border-bottom: 1px solid rgba(201,133,106,0.15);
    padding: 28px 0;
}
.features-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.strip-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.strip-feature i {
    font-size: 1.6rem;
    color: var(--terra);
}
.strip-feature-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
}
.strip-feature-text span {
    font-size: 0.75rem;
    color: var(--grey);
}
.strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    background: var(--black);
    padding: 90px 0;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.why-us-image {
    position: relative;
}
.why-us-image-card {
    background: var(--black-2);
    border: 1px solid rgba(201,133,106,0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.why-us-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13,13,13,0.8) 100%);
    z-index: 1;
}
.why-us-image-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.why-us-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    z-index: 2;
}
.why-us-image-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 4px;
}
.why-us-image-overlay span {
    font-size: 0.8rem;
    color: var(--terra-light);
}

.why-us-content {}
.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}
.why-us-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}
.why-us-item:hover {
    border-color: rgba(201,133,106,0.25);
    transform: translateX(4px);
}
.why-us-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--terra-pale);
    border: 1px solid rgba(201,133,106,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-us-icon i { color: var(--terra); font-size: 1.1rem; }
.why-us-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.why-us-text p {
    font-size: 0.83rem;
    color: var(--grey);
    line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--black-2);
    padding: 90px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.testimonial-card {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    border-color: rgba(201,133,106,0.25);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(201,133,106,0.15);
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.testimonial-stars i { color: var(--gold); font-size: 0.8rem; }
.testimonial-text {
    font-size: 0.88rem;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--terra-pale);
    border: 2px solid rgba(201,133,106,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--terra);
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
}
.testimonial-author-info span {
    font-size: 0.75rem;
    color: var(--grey);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--black);
    padding: 90px 0;
}
.faq-list {
    max-width: 780px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: rgba(201,133,106,0.3);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    user-select: none;
}
.faq-question i {
    color: var(--terra);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    font-size: 0.87rem;
    color: var(--grey-light);
    line-height: 1.8;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ===== URGENT CTA BANNER ===== */
.urgent-cta {
    background: linear-gradient(135deg, var(--terra-dark), var(--terra), #d4967c);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.urgent-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.urgent-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.urgent-cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 8px;
}
.urgent-cta-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.urgent-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-white {
    background: var(--white);
    color: var(--terra-dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.btn-white:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white-solid {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.btn-outline-white-solid:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE: new sections ===== */
@media (max-width: 1024px) {
    .product-hero-grid { grid-template-columns: 1fr; }
    .product-desc { max-width: 100%; }
    .why-us-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .strip-divider { display: none; }
}
@media (max-width: 768px) {
    .product-spec-row { gap: 10px; }
    .product-price-box { flex-direction: column; align-items: flex-start; }
    .product-mini-specs { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .urgent-cta .container { flex-direction: column; text-align: center; }
    .urgent-cta-actions { justify-content: center; }
}
@media (max-width: 480px) {
    .features-strip .container { flex-direction: column; gap: 16px; }
}
