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

/* Scroll offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #3d3d3d;
    background: #E8ECF6;
}

.icon {
    width: 20px;
    height: 20px;
    fill: #5a5a5a;
    flex-shrink: 0;
}

.icon-white {
    fill: white;
}

.icon-brown {
    fill: #778DBF;
}

header {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(78, 95, 143, 0.12);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(167, 183, 213, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.logo img {
    height: 80px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li a {
    color: #4E5F8F;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.nav-links li a:hover {
    color: #778DBF;
    background: rgba(119, 141, 191, 0.08);
}

/* Shop Online Button - Highlighted */
.nav-links li a.nav-shop {
    background: linear-gradient(135deg, #778DBF 0%, #5a6fa8 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(119, 141, 191, 0.3);
    transition: all 0.3s ease;
}

.nav-links li a.nav-shop:hover {
    background: linear-gradient(135deg, #5a6fa8 0%, #4E5F8F 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 141, 191, 0.4);
}

/* Language Switcher Dropdown */
.lang-switcher {
    position: relative;
    margin-left: 1rem;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4E5F8F;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(119, 141, 191, 0.08);
}

.lang-current:hover {
    background: rgba(119, 141, 191, 0.15);
}

.lang-current .flag {
    font-size: 1rem;
}

.lang-current::after {
    content: '';
    border: 4px solid transparent;
    border-top-color: #4E5F8F;
    margin-left: 0.3rem;
    margin-top: 2px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0.5rem;
    min-width: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.lang-dropdown a:hover {
    background: rgba(119, 141, 191, 0.1);
    color: #4E5F8F;
}

.lang-dropdown a.active {
    color: #4E5F8F;
    font-weight: 700;
    background: rgba(119, 141, 191, 0.08);
}

.lang-dropdown .flag {
    font-size: 1.1rem;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(167, 183, 213, 0.3);
}

.mobile-lang-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8a9ab0;
    transition: all 0.3s ease;
    min-width: 50px;
}

.mobile-lang-switcher a.active {
    color: #4E5F8F;
    font-weight: 700;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4E5F8F;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4E5F8F;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 4rem;
}

.mobile-menu ul li {
    margin: 1.5rem 0;
}

.mobile-menu ul li a {
    color: #4E5F8F;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: #778DBF;
}

/* Mobile Shop Button */
.nav-shop-mobile {
    display: inline-block;
    background: linear-gradient(135deg, #778DBF 0%, #5a6fa8 100%);
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(119, 141, 191, 0.3);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background:
        linear-gradient(135deg, rgba(78, 95, 143, 0.7) 0%, rgba(119, 141, 191, 0.5) 50%, rgba(167, 183, 213, 0.3) 100%),
        url('images/product-peshtemal-towels.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 0;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(78, 95, 143, 0.2) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.15em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
    font-weight: 700;
    line-height: 1.1;
}

.hero-line {
    display: block;
    opacity: 0;
    animation: lineFade 0.5s ease forwards;
}

.hero-line.line-1,
.hero-line.line-2 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero-sep {
    display: block;
    margin: 0.15em auto;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    position: relative;
    width: 280px;
    text-align: center;
    line-height: 1;
}

.hero-sep::before,
.hero-sep::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 105px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}

.hero-sep::before {
    left: 0;
}

.hero-sep::after {
    right: 0;
}

.hero-line.line-1 {
    animation-delay: 0.2s;
}

.hero-line.line-2 {
    animation-delay: 0.6s;
}

.hero-line.line-3 {
    animation-delay: 1s;
}

.hero-content p {
    opacity: 0;
    animation: lineFade 0.5s ease forwards;
    animation-delay: 1.4s;
}

.hero-content .btn-primary {
    opacity: 0;
    animation: lineFade 0.5s ease forwards;
    animation-delay: 1.8s;
}

@keyframes lineFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #4E5F8F;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    text-decoration: none;
    background: #fff;
}

.features {
    background: linear-gradient(135deg, #A7B7D5 0%, #C2CEE3 100%);
    padding: 80px 2rem;
    margin-top: 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    z-index: 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #778DBF;
    font-family: 'Georgia', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(78, 95, 143, 0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature h3 {
    font-size: 0.975rem;
    margin-bottom: 1rem;
    color: #778DBF;
}

.feature p {
    color: #6a6a6a;
    line-height: 1.7;
}

/* Collection Section - Sidebar Layout */
.collection {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 2rem 60px;
}

/* Content Title on Right */
.content-title {
    font-size: 2rem;
    color: #4E5F8F;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.collection-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Sidebar */
.collection-sidebar {
    position: sticky;
    top: 100px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Sidebar Search - Top of Left Sidebar */
.sidebar-search {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.sidebar-search input {
    width: 100%;
    padding: 0.6rem 0.8rem 0.6rem 2.2rem;
    border: 1px solid #C2CEE3;
    border-radius: 20px;
    font-size: 0.85rem;
    background: white;
    color: #4E5F8F;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-search input:focus {
    border-color: #778DBF;
    box-shadow: 0 0 0 3px rgba(119, 141, 191, 0.1);
}

.sidebar-search input::placeholder {
    color: #a0aec0;
}

.sidebar-search svg {
    position: absolute;
    left: 0.7rem;
    top: 13px;
    width: 14px;
    height: 14px;
    fill: #a0aec0;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    border-bottom: 1px solid #E8ECF6;
    transition: background 0.2s ease;
    cursor: pointer;
}

.search-result-item:hover {
    background: #f5f7fb;
}

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

.search-result-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4E5F8F;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 0.75rem;
    color: #778DBF;
    font-weight: 500;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: #8a9ab0;
    font-size: 0.85rem;
}

/* Product Detail View */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(78, 95, 143, 0.08);
}

.product-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-desc {
    color: #5a6a8a;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4E5F8F;
}

.btn-buy-wolt {
    display: inline-block;
    background: linear-gradient(135deg, #00c2e8 0%, #009cbc 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-buy-wolt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 194, 232, 0.3);
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
}

/* Overview Intro */
.overview-intro {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(78, 95, 143, 0.08);
}

.overview-intro h2 {
    font-size: 1.8rem;
    color: #4E5F8F;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.overview-intro p {
    color: #5a6a8a;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.overview-intro p:last-child {
    margin-bottom: 0;
}

.category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.category-nav li {
    margin-bottom: 0.2rem;
}

.category-nav a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: #5a6a8a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-nav a:hover {
    color: #4E5F8F;
    background: rgba(119, 141, 191, 0.1);
    text-decoration: none;
}

.category-nav a.active {
    background: #778DBF;
    color: white;
    text-decoration: none;
}


/* Right Content Area */
.collection-content {
    min-height: 600px;
}

/* Category Panels - show/hide */
.category-panel {
    display: none;
}

.category-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Main Overview Panel - Intro Blocks */
.intro-block {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 25px rgba(78, 95, 143, 0.08);
}

.intro-block h2 {
    font-size: 1.6rem;
    color: #4E5F8F;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.intro-block > p {
    color: #6a6a6a;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.intro-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.intro-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a6a8a;
    font-size: 0.9rem;
    font-weight: 500;
}

.intro-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #778DBF 0%, #4E5F8F 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Panel Header */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E8ECF6;
}

.panel-header h2 {
    font-size: 1.6rem;
    color: #4E5F8F;
    font-weight: 700;
}

.back-link {
    color: #778DBF;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.back-link:hover {
    text-decoration: underline;
}

.back-link::before {
    content: "←";
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #778DBF 0%, #4E5F8F 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 95, 143, 0.3);
    text-decoration: none;
    color: white;
}

/* Coming Soon */
.coming-soon {
    background: linear-gradient(135deg, #E8ECF6 0%, #f5f7fb 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.coming-soon p {
    color: #5a6a8a;
    font-size: 1.1rem;
    line-height: 1.8;
}

.collection-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #778DBF 0%, #5a6fa8 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(119, 141, 191, 0.3);
}

.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(119, 141, 191, 0.4);
    text-decoration: none;
}

.btn-shop svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Products Catalog Section */
.products-catalog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.catalog-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.catalog-intro p {
    color: #6a6a6a;
    font-size: 1.1rem;
    line-height: 1.8;
}

.product-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(78, 95, 143, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E8ECF6;
}

.category-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E8ECF6 0%, #C2CEE3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h3 {
    font-size: 1.3rem;
    color: #4E5F8F;
    font-weight: 600;
    letter-spacing: 0.05em;
    flex: 1;
}

.product-count {
    font-size: 0.85rem;
    color: #778DBF;
    background: #E8ECF6;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: #f9fafc;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #E8ECF6;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(78, 95, 143, 0.15);
    border-color: #778DBF;
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #E8ECF6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1rem;
}

.product-info h4 {
    font-size: 0.95rem;
    color: #4E5F8F;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: #7a7a7a;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1rem;
    color: #778DBF;
    font-weight: 700;
}

.catalog-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive for Products Catalog */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-category {
        padding: 1.5rem;
    }

    .category-header {
        flex-wrap: wrap;
    }

    .category-header h3 {
        font-size: 1.1rem;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-info h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.about {
    background:
        linear-gradient(135deg, rgba(78, 95, 143, 0.85) 0%, rgba(119, 141, 191, 0.8) 100%),
        url('images/HEADER_COVER_BAMBAMAMBA.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-family: 'Georgia', serif;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(78, 95, 143, 0.1);
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: #778DBF;
}

.about-icon svg {
    width: 100%;
    height: 100%;
}

.about-item p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #4E5F8F 0%, #3d4d7a 100%);
    color: white;
    padding: 0;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 2rem 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
}

.footer-lang {
    margin-top: 0.5rem;
}

.footer-lang-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-lang-social .footer-social {
    margin-top: 0;
}

.footer-lang-social .footer-lang {
    margin-top: 0;
}

.footer-lang .lang-dropdown {
    min-width: auto;
}

.footer-lang .lang-current {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.footer-lang .lang-current:hover {
    background: rgba(255,255,255,0.2);
}

.footer-lang .lang-current::after {
    border-top-color: rgba(255,255,255,0.7);
}

.footer-lang .lang-dropdown {
    bottom: 100%;
    top: auto;
    transform: translateY(-10px);
}

.footer-lang:hover .lang-dropdown {
    transform: translateY(-5px);
}

.footer-map-column .footer-map {
    margin-top: 0;
    height: 180px;
}

.footer-map-column .footer-map iframe {
    height: 180px;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 1.5rem;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column .icon {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.75);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item .icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.footer-social .icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-map {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 150px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ----------------- Responsive ----------------- */

/* Tablet */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Collection sidebar layout responsive */
  .collection-layout {
    grid-template-columns: 180px 1fr;
  }

  .collection-sidebar {
    position: relative;
    top: 0;
  }

  .intro-block {
    padding: 1.5rem;
  }

  .intro-block h2 {
    font-size: 1.3rem;
  }

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

  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-right: 0;
  }

  .footer-brand img {
    margin: 0 auto 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Show hamburger, hide nav links */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero adjustments */
  .hero {
    min-height: 100vh;
    padding-top: 80px;
  }

  .hero h1 {
    letter-spacing: 0.05em;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

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

  .collection {
    padding: 20px 0.5rem;
  }

  .collection-layout {
    grid-template-columns: 70px 1fr;
    gap: 0.5rem;
  }

  .collection-sidebar {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 70px;
  }

  .sidebar-search {
    display: none;
  }

  .category-nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0;
    width: 100%;
  }

  .category-nav li {
    margin: 0;
  }

  .category-nav a {
    padding: 0.4rem 0.3rem;
    font-size: 0.65rem;
    line-height: 1.1;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
  }

  .collection-content {
    min-height: auto;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .product-card {
    font-size: 0.8rem;
  }

  .product-info {
    padding: 0.5rem;
  }

  .product-info h4 {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .product-desc {
    display: none;
  }

  .product-price {
    font-size: 0.8rem;
  }

  .overview-intro {
    padding: 1rem;
  }

  .overview-intro h2 {
    font-size: 1.1rem;
  }

  .overview-intro p {
    font-size: 0.85rem;
  }

  .panel-header h2 {
    font-size: 1rem;
  }

  .pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .pagination button {
    width: 32px;
    height: 32px;
    border: 1px solid #C2CEE3;
    background: white;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #4E5F8F;
    cursor: pointer;
  }

  .pagination button.active {
    background: #778DBF;
    color: white;
    border-color: #778DBF;
  }

  .pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .intro-block {
    padding: 1.25rem;
  }

  .intro-block h2 {
    font-size: 1.2rem;
  }

  .intro-block > p {
    font-size: 0.9rem;
  }

  .logo img {
    height: 50px;
  }

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

  .social-links {
    flex-direction: column;
    align-items: center;
  }

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

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 50px 2rem 40px;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-column ul li a {
    justify-content: center;
  }

  .footer-column ul li a:hover {
    padding-left: 0;
  }

  .footer-contact-item {
    justify-content: center;
  }

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

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

  .footer-bottom-links {
    justify-content: center;
  }
}

/* Remove default blue color from all links while keeping link functionality */
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  opacity: 0.9;
}
