/* Announcement Bar - Global */
.announcement-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FFB800 50%, #FF6B35 100%);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement-text {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.announcement-highlight {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFB800;
    background: rgba(255, 184, 0, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 184, 0, 0.4);
}

.announcement-offer {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.announcement-detail {
    font-size: 0.95rem;
    font-weight: 400;
    color: #d0d0d0;
}

.announcement-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1a1a1a;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.announcement-btn:hover {
    background: #FFB800;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 184, 0, 0.4);
}

.announcement-btn svg {
    transition: transform 0.3s ease;
}

.announcement-btn:hover svg {
    transform: translateX(4px);
}

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

:root {
    --primary: #14a8c4;
    --black: #000000;
    --white: #FFFFFF;
    --orange: #f76432;
    --green: #2f9a5b;
    --text: #333333;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* Sticky header wrapper */
#headerContainer {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 80px;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10000;
    border-bottom: 1px solid rgba(20, 168, 196, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    transition: color 0.3s;
}

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

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    padding: 12px 24px !important;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    color: white !important;
    box-shadow: 0 4px 12px rgba(20, 168, 196, 0.25);
    transition: all 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 168, 196, 0.35);
    color: white !important;
}

/* Header Black Bar Icons (shown on scroll) */
.header-black-bar-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Header account dropdown container */
.header-account-dropdown {
    position: relative;
}

#headerContainer.scrolled .header-black-bar-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-account-icon,
.header-basket-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-account-icon:hover,
.header-basket-icon:hover {
    background: rgba(20, 168, 196, 0.1);
}

/* Highlight account icon when dropdown is active */
.account-dropdown-menu.active ~ .header-account-icon,
#headerContainer.scrolled .account-dropdown-menu.active + .header-account-icon {
    background: rgba(20, 168, 196, 0.15);
}

.header-account-icon svg,
.header-basket-icon svg {
    stroke: var(--text);
}

.header-basket-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.header-basket-count:empty {
    display: none;
}

/* Enhanced header shadow when scrolled */
#headerContainer.scrolled .header {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 10002;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--black);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.language-btn:hover {
    background: #f5f5f5;
    border-color: var(--primary);
}

.language-btn .flag-icon {
    font-size: 1.3rem;
    line-height: 1;
    margin-right: 6px;
}

.language-btn #currentLang {
    text-transform: uppercase;
    font-weight: 600;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10003;
    pointer-events: none;
    display: block;
}

.language-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.language-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
    transition: background 0.2s ease;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option.active {
    background: #e8f8fa;
    color: var(--primary);
    font-weight: 600;
}

/* Black Bar */
.black-bar {
    background: var(--black);
    padding: 12px 0;
    position: relative;
    z-index: 9999;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    overflow: visible;
}

/* Hide black bar when scrolled */
#headerContainer.scrolled .black-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none; /* Prevent interaction with hidden black bar */
}

/* Re-enable pointer events for dropdown when active */
#headerContainer.scrolled .black-bar .account-dropdown-menu.active {
    pointer-events: auto;
}

.black-bar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
    z-index: 10001;
}

.account-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
    transition: opacity 0.3s;
}

.account-icon:hover {
    opacity: 0.8;
}

.account-icon svg {
    transition: transform 0.3s;
}

.account-icon:hover svg {
    transform: scale(1.1);
}

.account-text {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 480px) {
    .account-text {
        display: none;
    }
}

/* Account Dropdown Menu */
.account-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10000;
}

.account-dropdown-menu.active,
.account-dropdown.logged-in:hover .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure dropdown has high z-index when positioned by JS */
.account-dropdown-menu[style*="position: fixed"] {
    z-index: 10000 !important;
}

/* Dropdown arrow */
.account-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
    position: relative;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
    padding-top: 14px;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
    padding-bottom: 14px;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.dropdown-item.logout {
    color: #e74c3c;
}

.dropdown-item.logout svg {
    color: #e74c3c;
}

.dropdown-item.logout:hover {
    background: #fee;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

/* Dropdown Login Form */
.dropdown-login-form {
    padding: 15px 20px;
}

.dropdown-login-form h4 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.dropdown-login-form .form-group {
    margin-bottom: 12px;
}

.dropdown-login-form input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.dropdown-login-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.dropdown-login-form .btn-full {
    width: 100%;
    margin-top: 5px;
}

.dropdown-login-form .dropdown-links {
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.dropdown-login-form .dropdown-links a {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
}

.dropdown-login-form .dropdown-links a:hover {
    text-decoration: underline;
}

.dropdown-message {
    font-size: 13px;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: none;
}

.dropdown-message.error {
    background: #fee;
    color: #e74c3c;
    display: block;
}

.dropdown-message.success {
    background: #efe;
    color: #27ae60;
    display: block;
}

.basket-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: fit-content;
    position: relative;
}

.basket-icon svg {
    transition: transform 0.3s;
}

.basket-icon:hover svg {
    transform: scale(1.1);
}

.basket-count {
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Cart Backdrop */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Cart */
.sidebar-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.sidebar-cart.active {
    transform: translateX(0);
}

.sidebar-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid #eee;
    background: var(--white);
}

.sidebar-cart-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 700;
}

.sidebar-cart-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s;
    border-radius: 50%;
}

.sidebar-cart-close:hover {
    color: var(--orange);
    background: #f5f5f5;
}

.sidebar-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.sidebar-cart-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text);
}

.sidebar-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text);
    font-size: 1rem;
}

.sidebar-cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.sidebar-cart-item:hover {
    background: #f9f9f9;
}

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

.sidebar-cart-item-image {
    width: 70px;
    height: 70px;
    background: #f0f0f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-cart-item-details {
    flex: 1;
    min-width: 0;
}

.sidebar-cart-item-name {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.sidebar-cart-item-meta {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
}

.sidebar-cart-item-price {
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
    font-size: 1rem;
}

.sidebar-cart-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    border-radius: 50%;
}

.sidebar-cart-item-remove:hover {
    color: #e74c3c;
    background: #fee;
}

.sidebar-cart-footer {
    border-top: 2px solid #eee;
    padding: 25px 20px;
    background: var(--white);
}

.sidebar-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.sidebar-cart-total span:first-child {
    color: var(--text);
    font-weight: 500;
}

.sidebar-cart-total-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.sidebar-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sidebar-cart-actions .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #1190a8;
}

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

.btn-orange:hover {
    background: #e55525;
}

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

.btn-green:hover {
    background: #278049;
}

/* Hero Section */
.hero {
    background: #E1E6EF;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.hero-text {
    padding-right: 20px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--black);
}

.promo-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text);
    line-height: 1.8;
}

.promo-text strong {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.4rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.hero-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: var(--white);
}

.product-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--black);
}

.product-container {
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

.product-description p {
    margin-bottom: 15px;
}

.product-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.product-description li {
    margin-bottom: 10px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: background 0.3s;
}

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

.quantity-input {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
}

.add-to-cart-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #e55525;
    transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.loading {
    text-align: center;
    padding: 40px;
    color: var(--text);
    font-size: 1.1rem;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.success-message {
    background: #efe;
    color: var(--green);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-info p {
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
/* Mobile Header Icons */
.mobile-header-icons {
    display: none;
}

@media (max-width: 768px) {
    /* Announcement Bar Mobile */
    .announcement-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 16px;
        gap: 14px;
    }

    .announcement-text {
        justify-content: center;
        gap: 8px;
    }

    .announcement-highlight {
        font-size: 0.9rem;
        padding: 5px 12px;
    }

    .announcement-offer {
        font-size: 1.1rem;
    }

    .announcement-detail {
        font-size: 0.85rem;
    }

    .announcement-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .mobile-header-icons {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
        margin-right: 12px;
    }

    .mobile-language-switcher {
        position: relative;
    }

    .mobile-language-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .mobile-language-btn:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .mobile-language-btn .flag-icon {
        font-size: 1.5rem;
    }

    .mobile-language-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 8px;
        min-width: 180px;
        z-index: 10003;
        display: none;
    }

    .mobile-language-dropdown.active {
        display: block;
    }

    .mobile-cart-icon {
        position: relative;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cart-icon:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .mobile-cart-icon svg {
        stroke: var(--text);
    }

    .mobile-cart-count {
        position: absolute;
        top: 2px;
        right: 2px;
        background: var(--primary);
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav ul li {
        width: 100%;
        text-align: center;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    /* Hide header black bar icons on mobile - use black bar instead */
    .header-black-bar-icons {
        display: none !important;
    }

    .language-switcher {
        width: 100%;
        margin: 0;
    }

    .language-btn {
        width: 100%;
        justify-content: center;
    }

    .language-dropdown {
        left: 0;
        right: 0;
        width: 100%;
    }

    .header-cta {
        width: 100%;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .promo-text {
        font-size: 1.1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-height: 350px;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .promo-text {
        font-size: 1rem;
    }

    .promo-text strong {
        font-size: 1.2rem;
    }

    .hero-image img {
        max-height: 250px;
        max-width: 100%;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    }

    .features {
        padding: 40px 0;
    }
}
