/*
 * Sinkon Frontend CSS
 * Light Luxury Theme
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --color-bg: #ffffff;
    --color-bg-dark: #f5f5f5;
    --color-bg-light: #fafafa;
    --color-surface: #ffffff;
    --color-border: rgba(0, 0, 0, 0.08);

    /* Gold Accent */
    --color-primary: #b8942f;
    --color-primary-light: #c9a54a;
    --color-primary-dark: #9a7a20;

    /* Text */
    --color-text: #1a1a1a;
    --color-text-muted: rgba(0, 0, 0, 0.6);
    --color-text-dim: rgba(0, 0, 0, 0.4);

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-accent: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 148, 47, 0.3) 20%,
        rgba(184, 148, 47, 0.5) 50%,
        rgba(184, 148, 47, 0.3) 80%,
        transparent 100%
    );
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    overflow: visible;
}

/* Logo */
.logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Logo Wrapper with Animated Words */
.logo-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    min-width: max-content;
}

.logo-animated-word {
    position: absolute;
    left: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-left: 10px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.logo-animated-word.visible {
    opacity: 1;
    transform: translateX(0);
}

.logo-animated-word.changing {
    opacity: 0;
    transform: translateX(-8px);
}

.logo-animated-word.hiding {
    opacity: 0;
    transform: translateX(-15px);
}

/* Transparent header - animated word white */
.site-header.header-transparent .logo-animated-word {
    color: #ffffff;
}

/* Scrolled state - animated word matches primary */
.site-header.scrolled .logo-animated-word {
    color: var(--color-primary-dark);
}

/* Hide animated word on mobile */
@media (max-width: 991.98px) {
    .logo-animated-word {
        display: none !important;
    }
}

/* Navigation */
.main-nav .nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.main-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.dropdown-menu a:hover {
    background: rgba(201, 169, 98, 0.1);
    color: var(--color-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.lang-switcher a {
    color: rgba(0, 0, 0, 0.6);
}

.lang-switcher a.active {
    color: var(--color-primary);
}

.search-toggle,
.mobile-toggle {
    background: none;
    border: none;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    transition: var(--transition);
}

/* Transparent header on hero - white text */
.site-header.header-transparent .main-nav .nav-link {
    color: #ffffff;
}

.site-header.header-transparent .logo {
    color: #ffffff;
}

.site-header.header-transparent .logo-img {
    filter: brightness(0) invert(1);
}

.site-header.header-transparent .search-toggle,
.site-header.header-transparent .mobile-toggle {
    color: #ffffff;
}

.site-header.header-transparent .mobile-toggle span {
    background: #ffffff;
}

.site-header.header-transparent .lang-switcher a {
    color: rgba(255, 255, 255, 0.6);
}

.site-header.header-transparent .lang-switcher a.active {
    color: var(--color-primary);
}

/* Scrolled state - dark text for white background (overrides transparent) */
.site-header.scrolled .main-nav .nav-link {
    color: #1a1a1a;
}

.site-header.scrolled .logo {
    color: var(--color-primary-dark);
}

.site-header.scrolled .logo-img {
    filter: none;
}

.site-header.scrolled .search-toggle,
.site-header.scrolled .mobile-toggle {
    color: #1a1a1a;
}

.site-header.scrolled .mobile-toggle span {
    background: #1a1a1a;
}

.site-header.scrolled .lang-switcher a {
    color: rgba(0, 0, 0, 0.6);
}

.site-header.scrolled .lang-switcher a.active {
    color: var(--color-primary-dark);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 600px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
}

.search-container form {
    display: flex;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-right: none;
    color: var(--color-text);
    font-size: 1.125rem;
}

.search-btn {
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    border: none;
    color: #000;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-about p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.footer-col ul a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-bg);
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

iframe.slide-video {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8rem;
}

.slide-content {
    max-width: 900px;
    text-align: center;
}

.slide-content[style*="center"],
.slide-content[style*="left"],
.slide-content[style*="right"] {
    margin: 0 auto;
    text-align: center;
}

.slide-title {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.slide-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-content .btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.slide-content .btn:hover {
    background: #fff;
    color: #000;
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-nav button:hover {
    background: var(--color-primary);
    color: #000;
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--color-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    font-style: italic;
    color: var(--color-primary);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--color-primary-light);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES BENTO GRID (NEW DESIGN)
   ============================================ */
.section-categories-new {
    background: var(--color-bg);
    padding: 5rem 8rem;
}

.section-title-uppercase {
    font-family: var(--font-accent);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.categories-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
    gap: 1rem;
}

/* First item - large, spans full height of 2 rows */
.category-box-1 {
    grid-row: span 2;
}

/* Second item - normal */
.category-box-2 {
    grid-row: span 1;
}

/* Third item - normal */
.category-box-3 {
    grid-row: span 1;
}

/* Fourth and beyond - alternate sizes */
.category-box-4,
.category-box-5 {
    grid-row: span 1;
}

.category-box {
    position: relative;
    overflow: hidden;
    display: block;
}

.category-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-box:hover img {
    transform: scale(1.08);
}

.category-box-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.category-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
    transition: background 0.3s ease;
}

.category-box:hover .category-box-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.category-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.category-box-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.category-box-1 .category-box-content h3 {
    font-size: 2rem;
}

.category-box-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   CATEGORY CARDS (LEGACY - KEPT FOR CATEGORY PAGES)
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-surface);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.category-card .btn {
    padding: 0;
    color: #c9a962;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

/* ============================================
   PRODUCT CARDS - Modern Homepage Design
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.product-card-image {
    aspect-ratio: 1;
    position: relative;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.product-card-content {
    padding: 1.5rem;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #667eea;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    transition: all 0.3s ease;
}

.product-card-link i {
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-link {
    color: #667eea;
}

.product-card:hover .product-card-link i {
    transform: translateX(4px);
}

/* ============================================
   SECTION PRODUCTS
   ============================================ */
.section-products {
    background: var(--color-bg-light);
}

.section-products .text-center {
    margin-top: 3rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.about-list li:last-child {
    margin-bottom: 0;
}

.about-list i {
    color: var(--color-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
    background: linear-gradient(135deg, #d4b84a 0%, #e8cf7d 100%);
    text-align: center;
}

.section-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.section-cta p {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-dark {
    background: #000;
    color: #fff;
}

.btn-dark:hover {
    background: #222;
    color: #fff;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-bento-grid {
        grid-auto-rows: 240px;
    }

    .category-box-1 {
        grid-row: span 2;
    }
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 9998;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .main-nav.active {
        visibility: visible;
        opacity: 1;
    }

    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
        width: 100%;
        padding: 0 2rem;
    }

    .main-nav .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav .nav-list li:last-child {
        border-bottom: none;
    }

    .main-nav .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        color: #1a1a1a !important;
    }

    .main-nav .nav-link::after {
        display: none;
    }

    .main-nav .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        min-width: auto;
        padding: 0 0 0.5rem;
        background: transparent;
    }

    .main-nav .dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 0.875rem;
        color: #666;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 9999;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-toggle.active span {
        background: #1a1a1a !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-categories-new {
        padding: 4rem 1rem;
    }

    .categories-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .category-box-1 {
        grid-row: span 1;
    }

    .category-box-content {
        padding: 1.5rem;
    }

    .category-box-content h3,
    .category-box-1 .category-box-content h3 {
        font-size: 1.25rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide .container {
        padding-bottom: 5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-title {
        font-size: 1.25rem;
    }

    .slide-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .slide-content .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 1rem;
    }

    .slider-next {
        right: 1rem;
    }

    .slider-dots {
        bottom: 1.5rem;
    }

    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .section-title[style*="left"] {
        text-align: center !important;
    }
}