@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Color Palette */
    --primary: #0C2F29;       /* Deep Forest Green */
    --primary-light: #16483F; /* Elegant Emerald Green */
    --primary-rgb: 12, 47, 41;
    --accent: #D4A437;        /* Luxury Gold */
    --accent-hover: #E8B94D;  /* Rich Gold */
    --accent-light: #FBF7ED;  /* Soft Warm Gold Wash */
    --bg-cream: #FAF8F5;      /* Silk Warm White */
    --bg-dark: #071D1A;       /* Ultra Dark Forest */
    --text-main: #202826;     /* Dark Charcoal */
    --text-muted: #5A6562;    /* Soft Grayish Green */
    --white: #ffffff;
    --border-color: rgba(12, 47, 41, 0.08);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 8px 30px rgba(12, 47, 41, 0.05);
    --shadow-lg: 0 20px 50px rgba(12, 47, 41, 0.1);
    --transition-smooth: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg-cream);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Scroll Animations CSS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-zoom.reveal-left {
    transform: translateX(-40px);
}

.reveal-zoom.reveal-right {
    transform: translateX(40px);
}

.reveal-zoom.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Infinite Ticker (Top Bar Rebuild) */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(212, 164, 55, 0.2);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
    padding-left: 100%;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    color: var(--white);
}

.ticker-item span {
    color: var(--accent);
    margin-right: 5px;
}

@keyframes tickerMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Navbar */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

nav.scrolled {
    padding: 10px 8%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.links {
    display: flex;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 35px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

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

.links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 164, 55, 0.08) 0%, rgba(250, 248, 245, 1) 70%);
    position: relative;
    gap: 50px;
}

.hero-text {
    flex: 1.2;
    z-index: 10;
}

.hero-tagline {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-light);
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 164, 55, 0.2);
}

.hero-text h1 {
    font-size: 68px;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 35px;
}

.hero-text a {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(12, 47, 41, 0.15);
    transition: var(--transition-smooth);
    border: 2px solid var(--primary);
}

.hero-text a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(212, 164, 55, 0.3);
    transform: translateY(-3px);
}

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

.hero-image-bg {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(212, 164, 55, 0.18) 0%, rgba(31, 91, 79, 0.05) 60%, transparent 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 10s infinite alternate ease-in-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floatImage 6s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.92); opacity: 0.7; }
    100% { transform: scale(1.08); opacity: 1; }
}

@keyframes floatImage {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Category Selection Bar */
.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--primary);
    padding: 20px 8%;
    flex-wrap: wrap;
    z-index: 100;
    position: relative;
    box-shadow: var(--shadow-md);
}

.categories > .dropdown > a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 8px;
}

.categories > .dropdown > a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

/* Three-column Dropdown Megamenu Rebuild */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px) scale(0.95);
    width: 650px;
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 24px;
    column-count: 3;
    column-gap: 20px;
    overscroll-behavior: contain;
    border: 1px solid var(--border-color);
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.35s;
}

.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 20px;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    margin-bottom: 6px;
    color: var(--text-main);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    break-inside: avoid;
    transition: var(--transition-smooth);
}

.dropdown-content a:hover {
    background: var(--accent-light);
    color: var(--primary-light);
    padding-left: 18px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Section Templates */
section {
    padding: 100px 8%;
}

h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 44px;
    position: relative;
    text-align: center;
    display: block;
    margin: 0 auto;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    text-align: center;
    background: var(--white);
    position: relative;
}

.about p {
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: var(--bg-cream);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-box h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Customer Favorites Section */
.favorites {
    background: var(--bg-cream);
}

.fav-text {
    text-align: center;
    color: var(--text-muted);
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 16px;
}

.favorite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.favorite-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.favorite-card::before {
    content: 'Top Seller';
    position: absolute;
    top: 15px;
    left: -35px;
    background: var(--accent);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 35px;
    transform: rotate(-45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.favorite-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 164, 55, 0.3);
}

.favorite-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.favorite-card:hover img {
    transform: scale(1.06) rotate(1deg);
}

.favorite-card h3 {
    margin-top: 25px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.favorite-card .fav-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-light);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.favorite-card .fav-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Products Collection Section */
#products {
    background: var(--white);
}

/* Products Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background: var(--bg-cream);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(12, 47, 41, 0.15);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Rebuilt Premium Cards */
.card {
    position: relative;
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    scroll-margin-top: 180px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 164, 55, 0.2);
}

.card img {
    width: 100%;
    height: 335px; /* Leaves 85px at the bottom for collapsed state */
    object-fit: contain;
    padding: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover img {
    transform: scale(1.08);
}

/* Elegant Hover Overlay Rebuild */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85px; /* Height of header footer */
    background: var(--white);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s, color 0.4s;
    z-index: 5;
    overflow: hidden;
}

.overlay h3 {
    color: var(--primary);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
    transition: color 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overlay p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    margin-bottom: 15px;
}

.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
    text-align: left;
}

.sizes span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--bg-cream);
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.card:hover .overlay {
    height: 100%;
    background: rgba(12, 47, 41, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top-color: transparent;
}

.card:hover .overlay h3 {
    color: var(--accent);
    white-space: normal;
}

.card:hover .overlay p,
.card:hover .sizes {
    opacity: 1;
    transform: translateY(0);
}

/* Card Target Highlight Styles */
.card:target {
    border: 3px solid var(--accent);
    box-shadow: 0 0 30px rgba(212, 164, 55, 0.4);
    animation: highlightCard 3.5s ease;
}

.card:target img {
    transform: scale(1.08);
}

@keyframes highlightCard {
    0% { transform: scale(1.04); }
    15% { transform: scale(1.04); box-shadow: 0 0 35px rgba(212, 164, 55, 0.6); }
    100% { transform: scale(1); }
}

/* Add to Inquiry Button in Card */
.add-to-inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    margin-top: auto;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s, background 0.3s, color 0.3s;
}

.add-to-inquiry-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.card:hover .add-to-inquiry-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-inquiry-btn:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212, 164, 55, 0.4);
}

/* Contact & Info Section Rebuild */
.contact-section-wrapper {
    background: var(--bg-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-info-panel {
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 164, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h3 {
    color: var(--accent);
    font-size: 32px;
    margin-bottom: 25px;
}

.contact-info-panel p.intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 164, 55, 0.2);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-text-wrapper h5 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
}

.contact-socials {
    margin-top: 50px;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form-panel {
    padding: 60px;
}

.contact-form-panel h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(12, 47, 41, 0.05);
}

textarea.form-control {
    resize: none;
}

.submit-form-btn {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.submit-form-btn:hover {
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(212, 164, 55, 0.3);
}

/* Floating Actions & Inquiry Cart Layout */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-cart {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-whatsapp svg, .btn-cart svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 800;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Inquiry Drawer Styles */
.inquiry-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 29, 26, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.inquiry-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.inquiry-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.inquiry-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 24px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent);
}

.drawer-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0;
}

.drawer-header h3::after {
    display: none;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.drawer-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 50px;
}

.empty-cart-message span {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--bg-cream);
    padding: 6px;
}

.drawer-item-details {
    flex: 1;
}

.drawer-item-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 4px;
}

.drawer-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

.qty-val {
    font-weight: 700;
    font-size: 14px;
    width: 40px;
    text-align: center;
}

.drawer-item-remove {
    background: transparent;
    border: none;
    color: #cc3333;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-smooth);
}

.drawer-item-remove:hover {
    color: #ff3333;
    transform: scale(1.1);
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-cream);
}

.submit-inquiry-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 164, 55, 0.3);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-inquiry-btn:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(12, 47, 41, 0.3);
}

.submit-inquiry-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Section */
footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 8% 30px;
    border-top: 2px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom span {
    color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    nav {
        padding: 15px 5%;
    }
    
    .hero {
        padding: 60px 5% 80px;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 52px;
    }
    
    .dropdown-content {
        width: 500px;
        column-count: 2;
    }
}

@media (max-width: 900px) {
    .burger-menu {
        display: flex;
    }
    
    .links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        z-index: 1050;
        transition: var(--transition-smooth);
        padding: 40px;
    }
    
    .links.open {
        right: 0;
    }
    
    .links a {
        margin-left: 0;
        font-size: 18px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-text h1 {
        font-size: 46px;
    }
    
    .hero-text p {
        margin: 20px auto 30px;
    }
    
    .hero-image img {
        max-height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel, .contact-form-panel {
        padding: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .categories {
        gap: 15px;
        padding: 15px 5%;
    }
    
    .dropdown-content {
        width: 90vw;
        column-count: 1;
        left: 0;
        transform: none;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .inquiry-drawer {
        max-width: 100%;
        right: -100%;
    }
}
.social-link svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    display: block;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}