:root {
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --accent: #c9a962;
    --bg-light: #faf9f7;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --border: #e5e3df;
    --gold: #c9a962;
    --cream: #f5f0e8;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    
    /* Fluid spacing */
    --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1rem);
    --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    --space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --space-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
    
    /* Fluid typography */
    --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.875rem);
    --fs-sm: clamp(0.8rem, 0.75rem + 0.25vw, 1rem);
    --fs-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --fs-md: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
    --fs-lg: clamp(1.25rem, 1rem + 1.25vw, 1.75rem);
    --fs-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --fs-2xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
    
    /* Container */
    --container-max: min(1200px, 95vw);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 165px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.btn {
    display: inline-block;
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
    font-size: var(--fs-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.announcement-bar {
    background: linear-gradient(135deg, #c9a962, #b89b7a);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 999;
    animation: pulse 2s infinite;
    height: 45px;
}

.announcement-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.announcement-bar a:hover {
    text-decoration: underline;
}

@keyframes pulse {
    0%, 100% { background: linear-gradient(135deg, #c9a962, #b89b7a); }
    50% { background: linear-gradient(135deg, #d4af37, #c9a962); }
}

@media (max-width: 576px) {
    .announcement-bar {
        padding: 10px 15px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }
    
    body {
        padding-top: 130px;
    }
    
    .mobile-nav {
        top: 110px;
        height: calc(100vh - 110px);
        width: 260px;
        left: -260px;
    }
    
    .mobile-nav-overlay {
        top: 110px;
    }
    
    .cart-btn {
        font-size: 24px;
    }
    
    .admin-btn {
        font-size: 18px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

.header-top {
    background: #ffffff;
    color: #333;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-left .company-name {
    font-weight: 700;
    color: #b89b7a;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-top-left a {
    color: #333;
    transition: color 0.3s;
    font-size: 14px;
}

.header-top-left a:hover {
    color: #b89b7a;
}

.header-top-left a .fa-instagram {
    color: #E1306C;
}

.header-top-left a .fa-facebook {
    color: #1877F2;
}

.header-top-left a .fa-whatsapp {
    color: #25D366;
}

.header-top-right {
    display: flex;
    gap: 15px;
}

.header-top-right a {
    transition: color 0.3s;
}

.header-top-right a:hover {
    color: var(--gold);
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    order: 0;
}

.nav {
    order: 0;
    margin-left: 0;
}

.header-actions {
    margin-left: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Category Photos Grid */
.category-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.category-photos img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

.category-section {
    margin-bottom: 40px;
}

.category-group-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-group-title:first-of-type {
    margin-top: 0;
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.category-nav a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.category-nav a:hover {
    color: #fff;
    background: var(--gold);
    border-color: var(--gold);
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--primary);
    margin: 20px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.photo-container {
    display: flex;
    flex-direction: column;
}

.photo-nav {
    display: none;
}
.mobile-nav {
    position: fixed;
    top: 165px;
    left: -280px;
    width: 280px;
    height: calc(100vh - 165px);
    background: #fff;
    z-index: 2000;
    transition: left 0.3s;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 165px;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.mobile-nav-overlay.active {
    display: block;
}

.nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-transform: uppercase !important;
    font-weight: 600;
}

.mobile-nav-link:hover {
    color: #c9a962;
}

.mobile-category-group {
    border-bottom: 1px solid #eee;
}

.mobile-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.mobile-category-header i {
    transition: transform 0.3s;
}

.mobile-category-header.active i {
    transform: rotate(180deg);
}

.mobile-category-items {
    display: none;
    padding-left: 15px;
}

.mobile-category-items.active {
    display: block;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }
    
    .nav {
        display: none;
    }
    
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
    
    .header-logo {
        display: flex;
    }
    
    .header-main .container {
        flex-wrap: wrap;
    }
    
    /* Hero mobile */
    .hero-section {
        height: 1200px;
        min-height: 1200px;
        max-height: 1200px;
        position: relative;
        overflow: hidden;
    }
    .hero-slider {
        width: 100% !important;
        height: 1200px !important;
        min-height: 1200px !important;
        max-height: 1200px !important;
        position: relative !important;
    }
    .hero-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center center !important;
        background-color: #1a1a1a !important;
        inset: 0 !important;
    }
    .hero-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
    .hero-content {
        padding-top: 60px;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

/* Tablet hero */
@media (min-width: 577px) and (max-width: 992px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
        max-height: none;
    }
    .hero-slider {
        height: 100%;
        min-height: 400px;
    }
    .hero-slide {
        background-position: center center;
    }
}
    
    /* Sections mobile */
.section-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-lg);
}
    
    .categories {
        padding: 40px 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card h3 {
        font-size: 12px;
    }
    
    .products {
        padding: 40px 0;
    }
    
    .products-filter {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 11px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    /* About & Contact mobile */
    .about {
        padding: 40px 0;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-features li {
        font-size: 14px;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-item i {
        font-size: 24px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-col a, .footer-col p {
        font-size: 13px;
    }
    
    /* WhatsApp mobile */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
    
    /* Cart panel mobile */
    .cart-panel {
        width: 100%;
    }
    
    /* Product scroll mobile - 2 items visible */
    .product-scroll {
        padding: 10px 5px;
        gap: 8px;
    }
    
    .product-scroll .product-card {
        min-width: 45vw;
        max-width: 45vw;
    }
    
    .scroll-nav {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .scroll-nav.scroll-nav-prev {
        left: 2px;
    }
    
    .scroll-nav.scroll-nav-next {
        right: 2px;
    }
    
    /* Mobile nav adjustment */
    .mobile-nav {
        top: 130px;
        height: calc(100vh - 130px);
    }
    
    .mobile-nav-overlay {
        top: 130px;
    }
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    color: #b8934f;
}

.nav-link:hover,
.nav-link.active {
    color: #c9a962;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a962;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    background: #c9a962;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    position: relative;
    z-index: 1000;
    background: transparent;
}

/* Search Autocomplete */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 200px;
    padding: 8px 35px 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: var(--fs-sm);
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus {
    border-color: var(--gold);
    width: 240px;
    box-shadow: 0 2px 8px rgba(201,169,98,0.15);
}

.search-icon {
    position: absolute;
    right: 10px;
    color: #999;
    cursor: pointer;
    font-size: 14px;
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--cream);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-cat {
    font-size: 11px;
    color: #999;
}

.search-result-price {
    font-size: var(--fs-sm);
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}

.search-no-result {
    padding: 20px 15px;
    text-align: center;
    color: #999;
    font-size: var(--fs-sm);
}

@media (max-width: 768px) {
    .search-input {
        width: 140px;
    }
    
    .search-input:focus {
        width: 160px;
    }
    
    .search-results {
        width: 280px;
        right: -20px;
    }
}

@media (min-width: 993px) {
    .header-actions {
        margin-left: auto;
    }
    
    .nav {
        order: -1;
    }
    
.header-logo {
        order: -2;
    }
}
  
.cart-btn {
    position: relative;
    background: transparent;
    border: none;
    font-size: 40px;
    cursor: pointer;
    padding: 8px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.cart-btn i {
    color: #b8934f !important;
    transition: all 0.3s;
}

.cart-btn:hover i {
    color: #c9a962 !important;
}

.tracking-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #b8934f;
    transition: all 0.3s;
}

.tracking-btn i {
    font-size: 16px;
    color: #b8934f;
    transition: all 0.3s;
}

.tracking-btn:hover {
    color: #c9a962;
}

.tracking-btn:hover i {
    color: #c9a962;
    transform: scale(1.1);
}

.tracking-btn span {
    display: none;
}

@media (min-width: 768px) {
    .tracking-btn span {
        display: inline;
    }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #c9a962;
    color: white;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-btn {
    font-size: 18px;
    transition: color 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    pointer-events: auto;
    z-index: 1001;
    position: relative;
    margin-left: -5px;
}

.admin-btn i {
    color: #b8934f;
    transition: all 0.3s;
}

.admin-btn:hover i {
    color: #c9a962;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-login-btn {
    font-size: 22px;
    color: #b8934f;
    transition: all 0.3s;
    text-decoration: none;
    padding: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.user-login-btn:hover {
    color: #c9a962;
}

.user-login-btn span {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #b8934f;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    z-index: 10;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
    width: 100%;
    margin-top: 0;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    min-height: 700px;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: none !important;
    animation: none !important;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: none !important;
    animation: none !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: clamp(100px, 15vh, 200px);
    max-width: min(600px, 90vw);
}

.hero-content h1 {
    font-size: clamp(28px, 5vw + 1rem, 72px);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-content p {
    font-size: var(--fs-md);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Quick View Modal */
.quick-view-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quick-view {
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quick-view-image {
    aspect-ratio: 3/4;
    background: var(--cream);
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    padding: 40px 30px;
}

.quick-view-category {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.quick-view-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.quick-view-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 25px;
}

.quick-view-info .btn {
    width: 100%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }
    
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-view-image {
        aspect-ratio: 1;
    }
    
    .quick-view-info {
        padding: 25px;
    }
    
    .quick-view-info h2 {
        font-size: 20px;
    }
    
    .quick-view-price {
        font-size: 22px;
    }
}

/* Order Form Modal */
.order-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-form {
    background: white;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.order-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.order-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.order-form input,
.order-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    font-size: 14px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.order-form input:focus,
.order-form select:focus {
    outline: none;
    border-color: var(--secondary);
}

.order-form .btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 576px) {
    .order-form {
        padding: 30px 20px;
    }
    
    .order-form h3 {
        font-size: 20px;
    }
    
    .product-actions {
        gap: 6px;
    }
    
    .product-actions .btn-cart-full {
        padding: 16px 12px;
        font-size: 14px;
    }
    
    .product-actions .btn-wa-full {
        padding: 12px 10px;
        font-size: 11px;
    }
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid #b89b7a;
    color: #b89b7a;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    background: #b89b7a;
    color: #fff;
}

/* Currency Switcher */
.currency-switch select {
    background: transparent;
    border: 1px solid #b89b7a;
    color: #b89b7a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 10px;
}

.currency-switch select:focus {
    outline: none;
}

/* Tracking Modal */
.tracking-modal, .order-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.tracking-modal.active, .order-modal.active {
    display: block;
    overflow-y: auto;
}

.tracking-modal .cart-overlay, .order-modal .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.tracking-content, .order-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    max-width: 520px;
    width: calc(100% - 40px);
    position: relative;
    margin: 60px auto 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: modalSlideIn 0.3s ease;
    z-index: 2;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tracking-close, .order-form-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tracking-close:hover, .order-form-close:hover {
    background: #e5e5e5;
    transform: rotate(90deg);
}

.tracking-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 24px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-content h3 i {
    color: #c9a962;
}

.tracking-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.tracking-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.tracking-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e3df;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.tracking-field input:focus {
    border-color: #c9a962;
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.tracking-search-btn {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.tracking-search-btn:hover {
    background: #c9a962;
}

/* Tracking Result */
.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: #faf9f7;
    border-radius: 10px;
    margin-bottom: 24px;
}

.tracking-order-num {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.tracking-order-name {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.tracking-order-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.tracking-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.tracking-status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.tracking-status-badge.status-processing {
    background: #cce5ff;
    color: #004085;
}

.tracking-status-badge.status-shipped {
    background: #d4edda;
    color: #155724;
}

.tracking-status-badge.status-delivered {
    background: #d1ecf1;
    color: #0c5460;
}

.tracking-status-badge.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Timeline */
.tracking-timeline {
    position: relative;
    padding-left: 28px;
    margin-bottom: 24px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e3df;
}

.tracking-step {
    position: relative;
    padding-bottom: 20px;
}

.tracking-step:last-child {
    padding-bottom: 0;
}

.tracking-step-icon {
    position: absolute;
    left: -28px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e3df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
    z-index: 1;
}

.tracking-step.completed .tracking-step-icon {
    background: #c9a962;
    color: #fff;
}

.tracking-step.current .tracking-step-icon {
    background: #1a1a1a;
    color: #c9a962;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1);
    animation: currentPulse 2s ease-in-out infinite;
}

@keyframes currentPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1); }
    50% { box-shadow: 0 0 0 8px rgba(26, 26, 26, 0.05); }
}

.tracking-step-content {
    padding-left: 8px;
}

.tracking-step-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.tracking-step.current .tracking-step-label {
    color: #1a1a1a;
    font-weight: 600;
}

.tracking-step:not(.completed) .tracking-step-label {
    color: #999;
}

.tracking-step-current {
    display: block;
    font-size: 11px;
    color: #c9a962;
    margin-top: 2px;
}

/* Details */
.tracking-details {
    padding: 16px;
    background: #faf9f7;
    border-radius: 10px;
}

.tracking-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.tracking-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-detail-item i {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    font-size: 14px;
}

.tracking-detail-label {
    display: block;
    font-size: 11px;
    color: #999;
}

.tracking-detail-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.tracking-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #c9a962;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.tracking-link-btn:hover {
    background: #b89b7a;
    transform: translateY(-1px);
}

/* Error */
.tracking-error {
    padding: 20px;
    background: #f8d7da;
    border-radius: 10px;
    text-align: center;
    color: #721c24;
    margin-top: 16px;
}

.tracking-error i {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.tracking-error span {
    font-size: 14px;
}

@media (max-width: 768px) {
    .tracking-content, .order-form {
        margin: 20px auto;
        padding: 24px;
    }
    
    .tracking-detail-row {
        grid-template-columns: 1fr;
    }
    
    .tracking-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .tracking-status-badge {
        align-self: flex-start;
    }
}

.header-top-right {
    margin-left: auto;
}

/* Featured Gallery */
.featured-gallery {
    padding: 80px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

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

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

/* Product Card - İpek Kategorisi */
.product-card {
    position: relative;
    min-width: 150px;
    max-width: 100%;
    flex: 1 1 calc(33.333% - var(--space-md));
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.product-card img:hover {
    transform: scale(1.05);
}

.product-info {
    padding: var(--space-md);
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-name {
    font-size: var(--fs-sm);
    font-weight: 500;
    margin: 0 0 5px 0;
    color: var(--text-dark);
    transition: color 0.3s;
    cursor: zoom-in;
}

.product-name:hover {
    color: var(--gold);
}

.product-price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    overflow: hidden;
}

.product-actions .btn-cart-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.product-actions .btn-wa-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.product-actions .btn-cart-full i { font-size: 16px; }
.product-actions .btn-wa-full i { font-size: 12px; }

.product-actions .btn-cart-full {
    background: linear-gradient(135deg, #c9a962 0%, #b0894d 100%);
    color: #fff;
}

.product-actions .btn-cart-full:hover {
    background: linear-gradient(135deg, #b0894d 0%, #9a753d 100%);
    transform: translateY(-1px);
}

.product-actions .btn-wa-full {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.product-actions .btn-wa-full:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0d6e63 100%);
    transform: translateY(-1px);
}

.product-actions .btn-cart-full i,
.product-actions .btn-wa-full i {
    font-size: 16px;
}

/* Diğer kategori butonları */
.category-details button {
    background: transparent;
    border: 1px solid #25D366;
    color: #25D366;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.category-details button:hover {
    background: #25D366;
    color: #fff;
}

/* Sepet butonu */
.product-actions button:first-child {
    background: transparent;
    border: 1px solid #c9a962;
    color: #c9a962;
}

/* Category Photos - İpek için grid */
#ipek .category-photos {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-behavior: smooth;
}

#ipek .category-photos::-webkit-scrollbar {
    height: 8px;
}

#ipek .category-photos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#ipek .category-photos::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 4px;
}

#dokuma .category-photos {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
}

#dokuma .category-photos::-webkit-scrollbar {
    height: 8px;
}

#dokuma .category-photos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#dokuma .category-photos::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 4px;
}

#dokuma .product-card {
    min-width: 180px;
    max-width: 180px;
}

#fendi .product-card {
    min-width: 180px;
    max-width: 180px;
}

#fendi .category-photos {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
}

#fendi .category-photos::-webkit-scrollbar {
    height: 8px;
}

#fendi .category-photos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#fendi .category-photos::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 4px;
}

#coach .product-card {
    min-width: 180px;
    max-width: 180px;
}

#coach .category-photos {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
}

#coach .category-photos::-webkit-scrollbar {
    height: 8px;
}

#coach .category-photos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#coach .category-photos::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 4px;
}

#baharserisi2 .category-photos {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
}

#baharserisi2 .category-photos::-webkit-scrollbar {
    height: 8px;
}

#baharserisi2 .category-photos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#baharserisi2 .category-photos::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 4px;
}

#baharserisi2 .product-card {
    min-width: 180px;
    max-width: 180px;
}

#baharserisi2 .photo-row {
    margin-bottom: 10px;
}

#baharserisi2 .photo-row .category-photos {
    display: flex !important;
    gap: 10px;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 10px;
    scroll-behavior: smooth;
    white-space: nowrap;
}

#baharserisi2 .photo-row .category-photos::-webkit-scrollbar {
    height: 6px;
}

#baharserisi2 .photo-row .category-photos::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#baharserisi2 .photo-row .category-photos::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 3px;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-item {
    width: clamp(280px, 30vw, 350px);
    height: clamp(480px, 50vw, 600px);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .featured-gallery,
    .video-section,
    .instagram-feed {
        padding: 15px 0;
    }

    .instagram-feed .section-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .insta-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        max-width: 60%;
        margin: 0 auto;
    }

    .insta-item {
        aspect-ratio: 1/1;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        height: 80px;
    }

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: 4px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .featured-gallery {
        padding: 30px 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: 5px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    .featured-gallery {
        padding: 30px 0;
    }
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .featured-gallery,
    .video-section,
.instagram-feed {
        padding: 15px 0;
    }

    .instagram-feed .section-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .insta-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        max-width: 60%;
        margin: 0 auto;
    }

    .insta-item {
        aspect-ratio: 1/1;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        height: 80px;
    }

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .insta-item:hover img {
        transform: none;
    }

    .insta-username {
        font-size: 11px;
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) {
    .instagram-feed .container {
        max-width: 1200px;
    }

    .insta-grid {
        max-width: 250%;
        gap: 15px;
    }

    .insta-item {
        height: 300px;
    }

    .instagram-feed {
        padding: 50px 0;
    }

    .instagram-feed .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

    .instagram-feed .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .insta-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .insta-item {
        aspect-ratio: 1/1;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
    }

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .insta-item:hover img {
        transform: scale(1.05);
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .gallery-item {
        aspect-ratio: 3/4;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
    }

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

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

    .featured-gallery {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .featured-gallery {
        padding: 30px 0;
    }

    .featured-gallery .section-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: 5px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-section,
    .instagram-feed,
    .products,
    .categories {
        padding: 20px 0;
    }

    .video-section .section-title,
    .instagram-feed .section-title,
    .products .section-title,
    .categories .section-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .video-item video,
    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .insta-username {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .category-section {
        padding: 8px;
    }

    .category-photos {
        display: flex;
        gap: 3px;
        overflow-x: auto;
    }

    .category-photos img {
        width: 70px;
        height: 70px;
    }

    .products-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
    }

    .product-card {
        width: calc(33.33% - 2px);
    }
}
    
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: clamp(28px, 5vw, 40px);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: #b89b7a;
    background: rgba(255,255,255,0.2);
}

/* Campaign Popup */
.campaign-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.campaign-popup.active {
    display: flex;
}

.campaign-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.campaign-modal {
    position: relative;
    background: #fff;
    max-width: 450px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: campaignSlideIn 0.4s ease;
}

@keyframes campaignSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.campaign-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.campaign-close:hover {
    background: rgba(0,0,0,0.8);
}

.campaign-content {
    text-align: center;
}

.campaign-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #c9a962, #b89b7a);
}

.campaign-body {
    padding: 30px 25px;
}

.campaign-badge {
    display: inline-block;
    background: #c9a962;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.campaign-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.campaign-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.campaign-code-box {
    background: #f9f9f9;
    border: 2px dashed #c9a962;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.campaign-code-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.campaign-code {
    font-size: 24px;
    font-weight: 700;
    color: #c9a962;
    letter-spacing: 2px;
}

.campaign-copy-btn {
    background: #c9a962;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 10px;
}

.campaign-countdown {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.campaign-countdown span {
    color: #c9a962;
    font-weight: 600;
}

.campaign-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.campaign-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
}

.campaign-btn-primary {
    background: #c9a962;
    color: #fff;
}

.campaign-btn-primary:hover {
    background: #b89b7a;
}

.campaign-btn-secondary {
    background: transparent;
    border: 2px solid #ddd;
    color: #666;
}

.campaign-btn-secondary:hover {
    border-color: #c9a962;
    color: #c9a962;
}

.campaign-dont-show {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}

.campaign-dont-show label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.campaign-dont-show input {
    width: auto;
}

/* Special Day Video Background */
.hero-special-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Şeffaf Yazı Overlay */
.hero-special-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
}

.hero-special-text-overlay .hero-special-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.95);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-special-title-transparent {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.6);
    font-weight: 600;
    line-height: 1.2;
}

.hero-special-message-transparent {
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-weight: 400;
}

.hero-special-text-overlay .btn {
    margin-top: 15px;
    padding: 14px 35px;
    font-size: 15px;
}

/* Eski overlay styles - kaldırıldı yerine yeni şeffaf */
.hero-special-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-special-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-special-badge {
    display: inline-block;
    background: #c9a962;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-special-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-special-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-special-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Şeffaf Yazı Overlay */
.hero-special-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
    padding: 20px;
}

.hero-special-text-overlay .hero-special-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.9);
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-special-title-transparent {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-weight: 600;
}

.hero-special-message-transparent {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-special-text-overlay .btn {
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f0ebe3;
}

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

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

.cta-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.cta-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.cta-label span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
}

.cta-testimonial blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.3;
    color: #1c1c1c;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .cta-testimonial blockquote {
        font-size: 22px;
    }
}

.cta-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.cta-name {
    font-weight: 500;
    font-size: 14px;
    color: #1c1c1c;
}

.cta-title {
    color: #8a8078;
    font-size: 12px;
}

.cta-discount {
    position: relative;
}

.cta-discount-box {
    background: #1c1c1c;
    padding: 50px;
    text-align: center;
}

.cta-percent {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .cta-percent {
        font-size: 56px;
    }
}

.cta-discount-box h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-discount-box p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 10px;
    max-width: 350px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 16px;
    font-size: 14px;
    color: #fff;
    outline: none;
}

.cta-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.cta-form input:focus {
    border-color: var(--gold);
}

.cta-form button {
    background: var(--gold);
    color: #1c1c1c;
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-form button:hover {
    background: #d4b87a;
}

.cta-corner-top {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(201,169,98,0.3);
    z-index: -1;
}

.cta-corner-bottom {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(201,169,98,0.3);
    z-index: -1;
}

/* CTA Success */
.cta-success {
    display: none;
    text-align: center;
    padding: 20px;
}

.cta-success.show {
    display: block;
}

.cta-success i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.cta-success p {
    color: #fff;
    font-size: 16px;
}

/* Newsletter Section */
.newsletter-section {
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.newsletter-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-content > p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 20px;
    font-size: 14px;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    background: var(--gold);
    color: #1c1c1c;
    padding: 14px 30px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #d4b87a;
}

.newsletter-success {
    display: none;
    text-align: center;
    padding: 20px;
}

.newsletter-success.show {
    display: block;
}

.newsletter-success i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.newsletter-success p {
    color: #fff;
    font-size: 16px;
}

@media (max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-rating-big {
    font-size: 48px;
    font-weight: 700;
    color: #1c1c1c;
    font-family: 'Playfair Display', serif;
}

.reviews-stars-big {
    font-size: 24px;
    color: #c9a962;
    margin: 5px 0;
}

.reviews-count {
    color: #999;
    font-size: 14px;
}

.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-rating {
    display: inline-block;
    text-align: center;
}

.rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 600;
    color: #1c1c1c;
    display: block;
}

.rating-stars {
    margin: 10px 0;
}

.rating-stars i {
    color: #ddd;
    font-size: 20px;
    margin: 0 2px;
}

.rating-stars i.filled {
    color: #c9a96e;
}

.rating-count {
    color: #666;
    font-size: 14px;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background: #fff;
    padding: var(--space-md);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.review-avatar {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    background: #1c1c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-md);
}

.review-info h4 {
    font-size: 15px;
    color: #1c1c1c;
    margin-bottom: 4px;
}

.review-info span {
    font-size: 12px;
    color: #999;
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars i {
    color: #ddd;
    font-size: 14px;
}

.review-stars i.filled {
    color: #c9a96e;
}

.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-product {
    font-size: 12px;
    color: #c9a96e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-image {
    margin-top: 15px;
}

.review-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
}

.reviews-empty {
    text-align: center;
    padding: 40px;
    color: #999;
}

/* Stock Badge */
.stock-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stock-badge.stock-ok {
    background: #d4edda;
    color: #155724;
}

.stock-badge.stock-low {
    background: #ffc107;
    color: #000;
}

.stock-badge.stock-out {
    background: #dc3545;
    color: #fff;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
}
.cart-modal.active {
    display: block;
}
.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.cart-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 380px;
    max-width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}
.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-empty {
    text-align: center;
    color: #999;
    padding: 40px 0;
}
.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}
.cart-total {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.cart-footer .btn {
    width: 100%;
}

/* Order Modal */
.order-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 6000;
}
.order-modal.active {
    display: block;
}
.order-form {
    position: relative;
    background: #fff;
    max-width: 450px;
    width: 90%;
    margin: 50px auto;
    padding: 40px;
    border-radius: 12px;
}
.order-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.order-form h3 {
    text-align: center;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e3df;
    border-radius: 6px;
    font-size: 14px;
}
.form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a962;
}

@media (max-width: 576px) {
    .cart-panel {
        width: 100%;
    }
    .order-form {
        padding: 25px 20px;
        margin: 20px auto;
    }
}

/* Product Scroll Container */
.product-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 30px;
    position: relative;
}

.product-scroll::-webkit-scrollbar {
    height: 8px;
}

.product-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.product-scroll::-webkit-scrollbar-thumb {
    background: #c9a962;
    border-radius: 4px;
}

.product-card {
    min-width: 200px;
    flex-shrink: 0;
    position: relative;
}

/* Scroll Navigation Buttons */
.scroll-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-nav.scroll-nav-prev {
    left: 5px;
}

.scroll-nav.scroll-nav-next {
    right: 5px;
}

.photo-container {
    position: relative;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.reviews-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 10px 20px;
    scroll-behavior: smooth;
}
    
    .review-card-scroll {
        min-width: 260px;
        max-width: 280px;
    }
    
    .reviews-summary {
        margin-bottom: 25px;
    }
    
    .reviews-rating-big {
        font-size: 36px;
    }
    
    .reviews-stars-big {
        font-size: 20px;
    }
}

.reviews-scroll::-webkit-scrollbar {
    display: none;
}

.review-card-scroll {
    min-width: 320px;
    flex-shrink: 0;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-card-scroll .review-stars {
    color: #c9a962;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card-scroll .review-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card-scroll .review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card-scroll .review-avatar {
    width: 50px;
    height: 50px;
    background: #c9a962;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

.review-card-scroll .review-name {
    font-weight: bold;
    margin: 0;
}

.review-card-scroll .review-location {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* Reviews Scroll */
.reviews-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 10px 20px;
    scroll-behavior: smooth;
}

.reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    color: #1c1c1c;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.reviews-nav.reviews-nav-prev {
    left: -20px;
}

.reviews-nav.reviews-nav-next {
    right: -20px;
}

/* UGC Gallery */
.ugc-section {

/* Review Form - Premium */
.review-form-section {
    padding: 100px 0;
    background: #fff;
}

.review-form-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.review-form-left {
    position: sticky;
    top: 100px;
}

.rf-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c9a962;
    margin-bottom: 20px;
}

.rf-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.rf-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #6b6b6b;
    margin-bottom: 40px;
}

.rf-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rf-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.rf-trust-item i {
    width: 32px;
    height: 32px;
    background: #faf9f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    font-size: 14px;
}

/* Form */
.rf-form {
    background: #faf9f7;
    padding: 40px;
    border-radius: 12px;
}

.rf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.rf-field {
    position: relative;
    margin-bottom: 24px;
}

.rf-field input,
.rf-field textarea {
    width: 100%;
    padding: 16px 14px;
    background: #fff;
    border: 1px solid #e5e3df;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    transition: all 0.2s;
}

.rf-field input:focus,
.rf-field textarea:focus {
    border-color: #c9a962;
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.08);
}

.rf-field label {
    position: absolute;
    left: 14px;
    top: 16px;
    font-size: 14px;
    color: #999;
    pointer-events: none;
    transition: all 0.2s;
    background: transparent;
    padding: 0 4px;
}

.rf-field input:focus ~ label,
.rf-field input:not(:placeholder-shown) ~ label,
.rf-field textarea:focus ~ label,
.rf-field textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 11px;
    color: #c9a962;
    background: #faf9f7;
}

.rf-field textarea {
    min-height: 120px;
    resize: vertical;
}

.rf-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Rating */
.rf-rating-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rf-rating-field > label {
    position: static !important;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.rf-stars {
    display: flex;
    gap: 6px;
    font-size: 22px;
}

.rf-stars i {
    color: #e5e3df;
    cursor: pointer;
    transition: all 0.2s;
}

.rf-stars i.active {
    color: #c9a962;
    transform: scale(1.1);
}

.rf-stars i:hover {
    transform: scale(1.2);
}

.rf-rating-text {
    font-size: 13px;
    color: #c9a962;
    font-weight: 500;
    min-height: 18px;
}

/* Upload */
.rf-upload-field {
    margin-bottom: 30px;
}

.rf-upload {
    width: 100px;
    height: 100px;
    border: 2px dashed #d5d3cf;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.rf-upload:hover {
    border-color: #c9a962;
    background: rgba(201, 169, 98, 0.03);
}

.rf-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 6px;
}

.rf-upload-content i {
    font-size: 20px;
    color: #c9a962;
}

.rf-upload-content span {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.rf-preview {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e3df;
}

.rf-preview img {
    max-height: 100px;
    width: auto;
    display: block;
}

.rf-preview button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

/* Submit */
.rf-submit-btn {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.rf-submit-btn:hover {
    background: #c9a962;
}

.rf-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rf-success {
    margin-top: 24px;
    padding: 32px;
    background: #fff;
    border: 1px solid #e5e3df;
    border-radius: 12px;
    text-align: center;
}

.rf-success-icon {
    width: 56px;
    height: 56px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: successPop 0.4s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.rf-success-icon i {
    font-size: 24px;
    color: #28a745;
}

.rf-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.rf-success-desc {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.6;
    margin: 0 0 20px;
}

.rf-success-cta {
    padding-top: 20px;
    border-top: 1px solid #e5e3df;
}

.rf-back-link {
    color: #c9a962;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.rf-back-link:hover {
    color: #1a1a1a;
}

/* Pending Notice */
.rf-pending-notice {
    margin-top: 20px;
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    position: relative;
}

.rf-pending-icon {
    width: 48px;
    height: 48px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    animation: pendingPulse 2s ease-in-out infinite;
}

.rf-pending-icon i {
    font-size: 20px;
    color: #fff;
}

@keyframes pendingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rf-pending-notice h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #856404;
    margin: 0 0 6px;
    text-align: center;
}

.rf-pending-notice p {
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.rf-pending-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    color: #856404;
    cursor: pointer;
}

/* Character Counter */
.rf-char-counter {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    color: #999;
    pointer-events: none;
}

/* Validation Errors */
.rf-field-error input,
.rf-field-error textarea {
    border-color: #dc3545;
    background: #fff8f8;
}

.rf-field-error input:focus,
.rf-field-error textarea:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08);
}

.rf-hint.rf-error {
    color: #dc3545;
    font-style: normal;
    font-weight: 500;
}

/* Star Animation */
.rf-stars i {
    animation: starFadeIn 0.3s ease both;
}

@keyframes starFadeIn {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1.1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Button Loading */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Upload Field Hint */
.rf-upload-field .rf-upload .rf-hint {
    margin-top: 8px;
    text-align: center;
    font-size: 11px;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .review-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .review-form-left {
        position: static;
        text-align: center;
    }
    
    .rf-trust {
        flex-direction: column;
        align-items: center;
    }
    
    .rf-title {
        font-size: 28px;
    }
    
    .rf-form {
        padding: 24px;
    }
    
    .rf-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .rf-pending-notice {
        margin-top: 16px;
        padding: 16px;
    }
}

/* UGC Gallery */
.ugc-section {
    padding: var(--space-xl) 0;
    background: var(--bg-light);
}

.ugc-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.ugc-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-xl);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ugc-header p {
    color: var(--text-muted);
    font-size: var(--fs-sm);
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.ugc-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ugc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ugc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ugc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 10px 10px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ugc-item:hover .ugc-overlay {
    opacity: 1;
}

.ugc-name {
    display: block;
    font-weight: 600;
    font-size: var(--fs-sm);
}

.ugc-caption {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .ugc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .ugc-overlay {
        opacity: 1;
    }
    
    .ugc-name {
        font-size: 12px;
    }
    
    .ugc-caption {
        display: none;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #dcdcdc 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: #c9a962;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.newsletter-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1c1c1c;
    margin-bottom: 15px;
    font-weight: 600;
}

.newsletter-section > p {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
}

.newsletter-form-inline {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form-inline input {
    flex: 1;
    min-width: 280px;
    padding: 18px 25px;
    border: 2px solid #c9a962;
    background: #fff;
    color: #1c1c1c;
    border-radius: 50px;
    font-size: 15px;
}

.newsletter-form-inline button {
    background: #1c1c1c;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.newsletter-form-inline button:hover {
    background: #333;
}

.newsletter-note {
    color: #888;
    margin-top: 20px;
    font-size: 13px;
}

/* Footer */
.footer {
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #fff;
    padding: 90px 20px 0;
    position: relative;
    border-top: 3px solid #c9a962;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), transparent);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(40px, 6vw, 70px);
    margin-bottom: clamp(40px, 6vw, 60px);
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #c9a962, #e6c87a, #c9a962);
}

.footer-col h4 {
    font-size: 13px;
    color: #c9a962;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.footer-col p {
    color: #888;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a962;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(201, 169, 98, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c9a962 0%, #e6c87a 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.footer-social a:hover {
    border-color: #c9a962;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social a:hover i {
    position: relative;
    z-index: 1;
    color: #0a0a0a;
}

.footer-social a i {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding-left: 18px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c9a962;
    font-size: 10px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #c9a962;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact p {
    color: #888;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.7;
}

.footer-contact i {
    color: #c9a962;
    width: 18px;
    font-size: 14px;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #222;
    color: #888;
    font-size: 14px;
}

/* CTA Discount Box */
.cta-discount-box.cta-discount-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b6914 100%);
    padding: 55px 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-discount-box.cta-discount-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-discount-box.cta-discount-gradient::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-discount-box.cta-discount-gradient .cta-percent {
    font-size: 80px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    letter-spacing: 2px;
    line-height: 1;
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-discount-box.cta-discount-gradient h3 {
    color: #fff;
    font-size: 28px;
    margin: 15px 0 8px;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
    position: relative;
    letter-spacing: 0.5px;
}

.cta-discount-box.cta-discount-gradient p {
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
    font-size: 15px;
    position: relative;
    font-weight: 400;
}

.cta-form-inline {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: relative;
    align-items: center;
}

.cta-form-inline input {
    padding: 16px 24px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    width: 260px;
    background: rgba(255,255,255,0.95);
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-form-inline input::placeholder {
    color: #999;
    font-weight: 400;
}

.cta-form-inline input:focus {
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.4), 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.cta-form-inline button {
    background: #1a1a1a;
    color: #d4af37;
    border: 2px solid transparent;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-form-inline button:hover {
    background: #fff;
    color: #8b6914;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .reviews-nav {
        display: none;
    }

    .newsletter-section h3 {
        font-size: 28px;
    }

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

    .cta-form-inline {
        flex-direction: column;
        align-items: center;
    }

    .cta-form-inline input {
        width: 100%;
    }
}

/* ============================================
   SPECIAL DAY OVERLAY
   ============================================ */
.special-day-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    background: transparent;
}

.special-day-content {
    text-align: center;
    padding: 30px 20px;
}

.special-day-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.special-day-message {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.special-day-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .special-day-icon {
        font-size: 40px;
    }
    .special-day-message {
        font-size: 22px;
        padding: 0 10px;
    }
    .special-day-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .special-day-content {
        padding: 20px 15px;
    }
    .special-day-icon {
        font-size: 36px;
    }
    .special-day-message {
        font-size: 18px;
    }
    .special-day-name {
        font-size: 11px;
        letter-spacing: 2px;
    }
}