@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary: #FF6F7D;
    --primary-hover: #E85B69;
    --primary-light: rgba(255, 111, 125, 0.1);
    --navy-darkest: #F1F5F9;
    --navy-dark: #FFFFFF;
    --navy-medium: #F8FAFC;
    --navy-light: #E2E8F0;
    --text-light: #0F172A;
    --text-muted: #475569;
    --text-dark: #0F172A;
    --white: #FFFFFF;
    --gold: #F59E0B;
    --green: #10B981;
    --border-light: rgba(15, 23, 42, 0.08);
    --border-medium: rgba(15, 23, 42, 0.15);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Layout & Spacing */
    --container-width: 1280px;
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--navy-darkest);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--navy-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 5px;
    border: 2px solid var(--navy-darkest);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Helper Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* Stars Rating */
.stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 125, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background-color: rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

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

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--navy-darkest);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.announcement-bar .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0.6rem 2rem;
    flex-wrap: wrap;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.announcement-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.announcement-item span {
    color: var(--text-dark);
}

/* Main Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 2rem;
}

.logo-link img {
    height: 42px;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0.5rem 0;
}

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

/* Dropdown styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    list-style: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.dropdown-item a:hover {
    color: var(--text-light);
    background-color: var(--primary-light);
}

/* Header Right Utilities */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-bar {
    position: relative;
    width: 240px;
}

.search-input {
    width: 100%;
    background-color: var(--navy-medium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--primary);
    outline: none;
    background-color: var(--navy-light);
}

.search-bar svg {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    pointer-events: none;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    color: var(--primary);
}

.action-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background-color: var(--text-light);
    width: 100%;
    transition: var(--transition-fast);
}

/* Footer Section */
.main-footer {
    background-color: var(--navy-medium);
    border-top: 1px solid var(--border-light);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    height: 38px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

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

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 3px;
}

.footer-world p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.world-map-container {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-light);
}

.world-map-svg {
    width: 100%;
    height: auto;
    display: block;
    background: var(--navy-darkest);
}

.world-map-svg path {
    stroke: rgba(15, 23, 42, 0.15) !important;
}

.world-map-svg text {
    fill: var(--text-muted) !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--text-light);
}

.payment-methods {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.payment-icon {
    height: 24px;
    width: auto;
}

/* Dropdown for Language/Currency */
.currency-selector {
    position: relative;
}

.selector-btn {
    background-color: var(--navy-dark);
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selector-btn:hover {
    border-color: var(--white);
    color: var(--text-light);
}

/* Breadcrumbs Section */
.breadcrumbs {
    padding: 2rem 0 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--navy-darkest);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        transition: var(--transition-normal);
        z-index: 999;
        border-top: 1px solid var(--border-light);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-container {
        grid-template-columns: auto 1fr;
        justify-content: space-between;
    }
    
    .search-bar {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .section-padding {
        padding: 2.2rem 0;
    }
}
