/* ===== KEWANJIA - Luxury Diamond Jewelry ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700;900&display=swap');

/* --- Reset & Base --- */
.site-body, .site-body *, .site-body *::before, .site-body *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b8860b;
    --dark: #1a1a1a;
    --light-bg: #fdf8ef;
    --accent: #d4a843;
    --white: #ffffff;
    --text: #333333;
    --text-light: #777777;
    --border: rgba(184, 134, 11, 0.2);
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

.site-body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.base-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--dark);
}

.base-link {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.base-link:hover {
    color: var(--accent);
}

.base-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.base-list {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-diamond {
    width: 60px;
    height: 60px;
    position: relative;
    animation: diamondSpin 2s ease-in-out infinite;
}

.preloader-diamond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 20px solid var(--accent);
}

.preloader-diamond::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid var(--primary);
}

.preloader-text {
    margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--accent);
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes diamondSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* --- Ad Disclosure Banner --- */
.ad-disclosure {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(184,134,11,0.3);
}

.ad-disclosure a {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Header / Navigation --- */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img,
.logo svg {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 0;
    letter-spacing: 2px !important;
    font-size: 0.8rem !important;
    transition: var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--dark);
    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);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 50%, var(--dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?w=1920&q=80') center/cover no-repeat;
    opacity: 0.25;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 8px 20px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--accent);
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    line-height: 1.8;
    max-width: 550px;
}

.hero-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 36px;
}

.hero-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 4px;
    font-family: 'Lato', sans-serif;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184,134,11,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #333;
    color: var(--white);
    transform: translateY(-2px);
}

/* Decorative diamond sparkle on hero */
.hero-decoration {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
    opacity: 0.08;
}

.hero-decoration svg {
    width: 100%;
    height: 100%;
}

/* --- Section Styling --- */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-dark {
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .overline {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--primary);
    margin: 20px auto;
}

/* --- Gallery / Product Showcase --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-item .overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.gallery-item.featured {
    grid-row: span 2;
}

/* --- Features --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Specs Table --- */
.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.specs-image {
    position: relative;
    border: 1px solid var(--border);
    overflow: hidden;
}

.specs-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table td {
    padding: 16px 0;
    font-size: 0.95rem;
}

.specs-table td:first-child {
    font-weight: 700;
    color: var(--dark);
    width: 45%;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.specs-table td:last-child {
    color: var(--text-light);
}

/* --- Pros / Cons --- */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pros-card, .cons-card {
    padding: 40px;
    border: 1px solid var(--border);
    background: var(--white);
}

.pros-card h3, .cons-card h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pros-card h3::before {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cons-card h3::before {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    flex-shrink: 0;
}

.pros-card li, .cons-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pros-card li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.cons-card li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --- Trust Badges --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-badge {
    text-align: center;
    padding: 32px 20px;
}

.trust-badge .badge-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.trust-badge h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.trust-badge p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-banner .btn:hover {
    background: var(--dark);
    color: var(--white);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
}
.footer .base-heading,
.footer .base-link { color: inherit; }
.footer .base-link:hover { color: var(--accent); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img,
.footer-brand .logo svg {
    height: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer h5 {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* --- Detail Page --- */
.detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: start;
}

.detail-gallery {
    position: relative;
}

.detail-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.detail-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.detail-thumbnails img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.detail-thumbnails img:hover,
.detail-thumbnails img.active {
    opacity: 1;
    border-color: var(--primary);
}

.detail-sidebar {
    position: sticky;
    top: 120px;
}

.detail-sidebar .overline {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.detail-sidebar h1 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.detail-sidebar .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.detail-sidebar .price small {
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.detail-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.detail-meta {
    margin-bottom: 32px;
}

.detail-meta li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.9rem;
}

.detail-meta li .meta-icon {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.detail-cta-box {
    background: var(--light-bg);
    padding: 32px;
    border: 1px solid var(--border);
    text-align: center;
}

.detail-cta-box .btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 18px 40px;
}

.detail-cta-box p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Contact / Legal Pages --- */
.page-hero {
    background: var(--dark);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 400;
}

.page-hero .breadcrumb {
    margin-top: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.page-hero .breadcrumb a {
    color: var(--accent);
}

.page-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content ul li, .page-content ol li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: var(--light-bg);
    border: 1px solid var(--border);
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-item h5 {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 24px 32px;
    z-index: 9998;
    display: none;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

.cookie-popup.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Lato', sans-serif;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--accent);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .specs-wrapper { grid-template-columns: 1fr; }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.2rem; }
    .hero-price { font-size: 1.8rem; }
    .section-header h2 { font-size: 2rem; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.4s ease;
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.featured { grid-row: auto; }
    .pros-cons { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }

    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .detail-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 3px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Gold text */
.gold { color: var(--primary); }

/* Animate on scroll utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
