/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #141414;
    --color-text: #e8e8e8;
    --color-gray: #a0a0a0;
    --color-border: #2a2a2a;
    --color-border-hover: #444444;
    --color-accent: #d4af37;
    --color-accent-dark: #b8941f;
    --color-accent-light: #f5e6c8;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--color-text);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent);
}

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

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

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

.nav-link.active {
    color: var(--color-accent);
}

/* SVG Logo */
.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 82px;
    max-width: 320px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-img {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo-img {
        height: 54px;
        max-width: 200px;
    }
    .header-container {
        padding-top: 0.1rem;
        padding-bottom: 0.1rem;
        gap: 0.1rem;
    }
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    width: 100%;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .nav-desktop .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: var(--color-bg);
    color: var(--color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
    }
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.nav-mobile.active {
    max-height: 500px;
}

@media (min-width: 768px) {
    .nav-mobile {
        display: none !important;
    }
}

.nav-mobile-links {
    list-style: none;
    padding: 1rem 0;
}

.nav-mobile-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.nav-mobile-link:hover {
    background: var(--color-bg);
    color: var(--color-accent);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-mobile-submenu {
    list-style: none;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-bg);
}

.nav-mobile-submenu.active {
    max-height: 300px;
}

.nav-mobile-sublink {
    display: block;
    padding: 0.75rem 2rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-mobile-sublink:hover {
    background: white;
    color: var(--color-accent);
}

/* Navigation */
.nav {
    border-bottom: 1px solid #f5f5f5;
    padding: 1rem 0;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gray);
}

.nav-link.active {
    font-weight: 500;
}

/* Main Content */
.main {
    flex: 1;
    padding: 3rem 0;
}

/* Hero Section - styles moved to Enhanced Hero Section */

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    border: 1px solid var(--color-border);
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: 1;
    transition: all 0.3s ease;
}

.category-card:hover::before {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.6));
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
}

.category-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.category-title {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-link {
    font-size: 0.875rem;
    color: var(--color-accent-light);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    transition: all 0.3s ease;
    background: var(--color-bg-alt);
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    background: #1a1a1a;
}

.product-image {
    aspect-ratio: 1;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-border);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
}

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

.product-image svg {
    width: 4rem;
    height: 4rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.product-volume {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #0a0a0a;
    border-color: var(--color-accent);
}

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

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-quick-order {
    background: var(--color-accent);
    color: #0a0a0a;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-quick-order:hover {
    background: var(--color-accent-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.phone-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Floating Quick Order Button */
.floating-quick-order {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-accent);
    color: #0a0a0a;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.floating-quick-order:hover {
    background: var(--color-accent-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
}

.floating-quick-order svg {
    width: 28px;
    height: 28px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
}

.scroll-to-top:hover {
    background: var(--color-accent);
    color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(201, 169, 97, 0.8);
    }
}

/* Order Form */
.order-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
}

.order-summary {
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(20, 20, 20, 0.3);
}

/* Order Product Preview */
.order-product-preview {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.order-product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.order-product-details {
    flex: 1;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 90%;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    background: rgba(20, 20, 20, 0.5);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-accent);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

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

/* Office Autocomplete */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-top: none;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid var(--color-border);
}

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

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-accent);
}

.autocomplete-item strong {
    color: var(--color-accent);
    font-weight: 500;
}

.autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: var(--color-bg);
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-hover);
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
}

.alert {
    padding: 1rem;
    border: 1px solid;
    font-size: 0.875rem;
}

.alert-success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.alert-error {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

/* Footer */
.footer {
    border-top: 1px solid var(--color-border);
    padding: 3rem 0;
    margin-top: auto;
    background: var(--color-bg-alt);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.footer-title {
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-text {
    color: var(--color-gray);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Footer Links */
.footer-links {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    padding-left: 0 !important;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.5rem;
    list-style: none !important;
    list-style-type: none !important;
}

.footer-links li::marker {
    content: none !important;
    display: none !important;
}

.footer-links li::before {
    content: none !important;
    display: none !important;
}

.footer-link {
    color: var(--color-gray);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

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

/* Courier Logos */
.courier-logos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.courier-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.courier-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-accent);
}

/* Testimonials Section */
.testimonials {
    background: var(--color-bg-alt);
    padding: 4rem 0;
    margin: 4rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(20, 20, 20, 0.5);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--color-border);
    box-shadow: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--color-accent);
}

.testimonial-rating {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.testimonial-product {
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

/* Social Media Brand Colors */
.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    border-color: #DD2A7B;
}

.social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.social-link.viber:hover {
    background: #7360F2;
    border-color: #7360F2;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-link {
    color: var(--color-gray);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-gray);
    font-size: 0.875rem;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-text {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 0.75rem 0;
    color: #666;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

.about-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

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

.contact-social-section {
    margin-top: 1rem;
}

.contact-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    max-width: 180px;
}

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.5);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    background: rgba(20, 20, 20, 0.5);
    color: var(--color-text);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.btn-full {
    width: 100%;
}

/* Responsive */
@media (min-width: 768px) {
    .footer-grid {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .courier-item {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.5rem;
    }

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

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Enhanced Hero Section Styles */
.hero {
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Background image wrapper */
.hero-bg-wrapper {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) brightness(0.5);
    opacity: 0.65;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.hero-bg-image-no-blur {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    opacity: 0.85;
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Gradient overlay for depth */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero>*:not(.hero-bg-wrapper) {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-accent-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
    border: 2px solid var(--color-accent);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    color: #0a0a0a;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0 1rem;
    margin: 1rem 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.trust-badge span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-accent-light);
    letter-spacing: 0.05em;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: var(--color-bg-alt);
    width: 100%;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 0;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--color-accent);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-accent);
    stroke-width: 2;
}

.why-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.why-description {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-badge.new {
    background: #10b981;
}

.product-badge.bestseller {
    background: #f59e0b;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.product-stars {
    color: #fbbf24;
}

.product-reviews {
    color: var(--color-gray);
    font-size: 0.85rem;
}

/* Testimonials Background */
.testimonials {
    background: var(--color-bg-alt);
    padding: 5rem 0;
}

/* Alternating Backgrounds */
.main .container>*:nth-child(even) {
    background: var(--color-bg-alt);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Parallax Effect */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -20px);
    }
}

/* Enhanced Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: 60vh;
    }

    .hero-bg-image {
        filter: blur(5px) brightness(0.45);
        opacity: 0.65;
    }

    .hero-bg-image-no-blur {
        filter: brightness(0.6);
        opacity: 0.85;
        object-position: left center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0 1rem;
        margin: 1rem 0;
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-form {
        max-width: 95%;
    }

    .order-container {
        padding: 0 0.5rem;
    }
}

/* Product Card Hover Effect */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card img {
    transition: transform 0.5s ease;
}

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

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover::after {
    opacity: 1;
}

/* Ensure product card children are above overlay */
.product-card>* {
    position: relative;
    z-index: 1;
}

/* Category Card Gradient Overlay */
.category-card {
    position: relative;
}

.category-card .category-bg {
    transition: transform 0.5s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.category-content {
    position: relative;
    z-index: 2;
}

/* Order Back Button */
.order-back {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.back-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: transparent;
    color: var(--color-accent);
    margin-right: 0.5rem;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.back-arrow svg {
    width: 28px;
    height: 28px;
    display: block;
}

.back-arrow:hover {
    background: var(--color-accent);
    color: #0a0a0a;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    border-color: var(--color-accent);
}

.back-arrow:hover svg path {
    stroke: #0a0a0a;
}

.back-arrow:active {
    transform: translateY(-2px);
}

.order-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.order-title-row .back-arrow {
    margin-right: 0.5rem;
}

.order-title-row .page-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Diagonal Split Unisex Category Image */
.unisex-category-card {
    position: relative;
    overflow: hidden;
}

.unisex-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.unisex-men,
.unisex-women {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
}

.unisex-men {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

.unisex-women {
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 3;
}

.unisex-category-card .category-content {
    position: relative;
    z-index: 4;
}