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

:root {
    /* Color Palette */
    --primary-dark: #3B1F14;
    --primary-brown: #4A2B1D;
    --accent-orange: #E67E22;
    --accent-glow: #F4B350;
    --accent-green: #4CAF50;
    --bg-cream: #FFF8F0;
    --bg-latte: #F7EBDD;
    --bg-white: #FFFFFF;
    --text-dark: #3B1F14;
    --text-muted: #6B5750;
    --border-light: #E8DFD8;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing & Radii */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 15px rgba(59, 31, 20, 0.05);
    --shadow-md: 0 12px 30px rgba(59, 31, 20, 0.08);
    --shadow-lg: 0 20px 40px rgba(59, 31, 20, 0.12);
    --shadow-glow: 0 10px 25px rgba(230, 126, 34, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-glow));
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border: 2px solid var(--accent-orange);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    box-shadow: var(--shadow-glow);
}

/* Topbar */
.topbar {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a:hover {
    color: var(--accent-glow);
}

/* Header & Navbar */
.main-header {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(59, 31, 20, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-middle {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 180px;
}

.logo img {
    width: 280px !important;
    max-height: 100px !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 10px rgba(59,31,20,0.15));
    transition: transform 0.3s ease;
    display: block;
}

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

.logo span {
    display: none !important;
}

/* Search + Filter System */
.search-filter-wrapper {
    flex: 1;
    max-width: 560px;
    margin: 0 40px;
    position: relative;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative;
}

.search-bar > input[type="text"] {
    flex: 1;
    padding: 13px 24px;
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 248, 240, 0.7);
    backdrop-filter: blur(5px);
    outline: none;
    color: var(--primary-dark);
}

.search-bar > input[type="text"]:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.15);
    background: var(--bg-white);
}

.filter-toggle-btn {
    padding: 13px 16px;
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-left: none;
    background: rgba(255, 248, 240, 0.7);
    color: var(--primary-brown);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.filter-toggle-btn:hover,
.filter-toggle-btn.active {
    background: var(--bg-latte);
    color: var(--accent-orange);
}

.search-submit-btn {
    padding: 13px 24px;
    border: none;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-glow));
    color: var(--primary-dark);
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.search-submit-btn:hover {
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    color: var(--bg-white);
}

/* Filter Panel */
.filter-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--accent-orange);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 15px 40px rgba(45, 24, 16, 0.15);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scaleY(0.95);
    transform-origin: top center;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
    max-height: 70vh;
    overflow-y: auto;
}

.filter-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
}

.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
}

.filter-panel-header h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-panel-header h4 i {
    color: var(--accent-orange);
}

.filter-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.filter-close-btn:hover {
    color: var(--accent-orange);
}

.filter-body {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.filter-group {
    margin-bottom: 0;
}

.filter-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Category Checkboxes */
.filter-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.filter-checkbox:hover {
    background: var(--bg-latte);
}

.filter-checkbox input[type="checkbox"] {
    accent-color: var(--accent-orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Price Range Inputs */
.filter-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-price-inputs input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-cream);
    outline: none;
    transition: border-color 0.2s;
}

.filter-price-inputs input:focus {
    border-color: var(--accent-orange);
}

.filter-price-sep {
    color: var(--text-muted);
    font-weight: 600;
}

/* Sort Select */
.filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-cream);
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: auto;
}

.filter-select:focus {
    border-color: var(--accent-orange);
}

/* Quick Filter Chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-cream);
    color: var(--text-muted);
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
}

.filter-chip input[type="radio"] {
    display: none;
}

/* Filter Panel Footer */
.filter-panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-cream);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.filter-clear-btn {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.filter-clear-btn:hover {
    color: var(--accent-orange);
}

.filter-apply-btn {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--accent-orange), #D35400);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-apply-btn:hover {
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .search-filter-wrapper {
        margin: 0;
        max-width: 100%;
    }
    
    .filter-body {
        grid-template-columns: 1fr;
    }
    
    .filter-checkboxes {
        grid-template-columns: 1fr;
    }
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-icon {
    position: relative;
    font-size: 1.4rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.action-icon span.label {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.action-icon:hover {
    color: var(--accent-orange);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-orange);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
}

/* Navigation Menu */
.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Categories Wrapper & Dropdown */
.categories-wrapper {
    position: relative;
    flex-shrink: 0;
}

.categories-btn {
    background-color: var(--accent-orange);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.categories-btn:hover {
    background-color: #D35400;
}

/* The dropdown panel */
.cat-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 270px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--accent-orange);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 12px 30px rgba(45, 24, 16, 0.15);
    padding: 6px 0;
    z-index: 2000;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
}

/* Show on HOVER (desktop) */
.categories-wrapper:hover .cat-dropdown,
/* Show on JS click toggle (mobile / fallback) */
.cat-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Individual category links */
.cat-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.cat-dropdown a:last-child {
    border-bottom: none;
}

.cat-dropdown a i {
    width: 22px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.cat-dropdown a:hover {
    background-color: var(--bg-latte);
    color: var(--accent-orange);
    padding-left: 28px;
}

.cat-dropdown a:hover i {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-glow));
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Main Layout Structure */
.layout-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* Sidebar */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.category-menu {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    border: 1px solid var(--border-light);
}

.category-menu li {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.category-menu li i {
    font-size: 1.2rem;
    color: var(--text-muted);
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.category-menu li span {
    font-weight: 600;
    color: var(--primary-dark);
}

.category-menu li:hover {
    background-color: var(--bg-latte);
    border-left-color: var(--accent-orange);
}

.category-menu li:hover i, .category-menu li:hover span {
    color: var(--accent-orange);
}

/* Main Content Area */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Hero Section */
.hero-slider {
    background: linear-gradient(135deg, var(--bg-latte) 0%, var(--bg-cream) 100%);
    border-radius: var(--radius-xl);
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244,179,80,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero-subtitle {
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    margin-top: 50px;
}

.section-title {
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* Premium Product Card */
.product-card {
    background: linear-gradient(160deg, #ffffff 0%, #F7EBDD 200%);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--bg-white);
    box-shadow: 0 10px 30px rgba(59, 31, 20, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(230, 126, 34, 0.15);
    border-color: rgba(244, 179, 80, 0.4);
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.product-badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-organic {
    background-color: var(--accent-green);
    color: white;
}

.badge-discount {
    background-color: var(--accent-orange);
    color: white;
}

.product-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--accent-orange);
    color: var(--bg-white);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.product-rating {
    color: #F1C40F;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    gap: 2px;
    align-items: center;
}

.product-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 5px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
    font-family: var(--font-heading);
}

.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.add-cart-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-latte), #F0E0CE);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(59, 31, 20, 0.05);
}

.product-card:hover .add-cart-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-glow));
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

/* Promotional Banners */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 50px 0;
}

.promo-banner {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(45,24,16,0.85) 0%, rgba(45,24,16,0.2) 100%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 60%;
}

.promo-tag {
    background-color: var(--accent-orange);
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.promo-title {
    color: var(--bg-white);
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    font-weight: 600;
    margin-top: 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.promo-btn:hover {
    color: var(--accent-glow);
}

/* Features Section */
.features-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    margin: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

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

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background-color: var(--bg-cream);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--accent-orange);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-latte);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-orange);
    color: var(--bg-white);
}

.feature-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    background-image: radial-gradient(circle at 100% 0%, #4A2B1D 0%, #3B1F14 100%);
    color: var(--bg-cream);
    padding: 100px 0 40px;
    margin-top: 80px;
    position: relative;
}

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

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-orange);
}

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 280px !important;
    max-height: 110px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 6px 15px rgba(0,0,0,0.4)) brightness(1.15);
    transition: transform 0.3s ease;
}

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

.footer-logo span, .footer-logo i {
    display: none !important;
}

.footer-about {
    color: #A0938D;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #A0938D;
}

.contact-info i {
    color: var(--accent-orange);
    margin-top: 4px;
}

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

.footer-links a {
    color: #A0938D;
    display: inline-block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form p {
    color: #A0938D;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.input-group {
    display: flex;
    background-color: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: var(--bg-white);
    outline: none;
}

.input-group button {
    background-color: var(--accent-orange);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.input-group button:hover {
    background-color: #D35400;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

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

.social-links a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #A0938D;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 24px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .layout-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        display: none; /* Hide on mobile, would add toggle */
    }
    
    .hero-slider {
        padding: 40px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image {
        width: 350px;
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 200px !important;
        max-height: 80px !important;
    }

    .footer-logo img {
        width: 220px !important;
        max-height: 90px !important;
    }

    .header-middle {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-bar {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        display: none; /* Mobile menu needed */
    }
    
    .hero-slider {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background-color: var(--primary-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Active Nav States */
.nav-links a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* =========================================
   WISHLIST PAGE
   ========================================= */

.wishlist-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.wishlist-item {
    display: grid;
    grid-template-columns: 110px 1fr auto auto auto;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.wishlist-item:hover {
    box-shadow: 0 8px 25px rgba(45, 24, 16, 0.1);
    transform: translateY(-2px);
}

/* Image */
.wishlist-item-image {
    width: 110px;
    height: 90px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.wishlist-item-image:hover img {
    transform: scale(1.08);
}

/* Info */
.wishlist-item-info {
    min-width: 0;
}

.wishlist-item-category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 4px;
}

.wishlist-item-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.wishlist-item-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.wishlist-item-title a:hover {
    color: var(--accent-orange);
}

.wishlist-item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.8rem;
    color: #F4A460;
}

.wishlist-item-rating span {
    color: var(--text-muted);
    margin-left: 4px;
}

/* Price */
.wishlist-item-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 90px;
}

.wishlist-item-price .price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.wishlist-item-price .price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.wishlist-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: #e74c3c;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Stock Status */
.wishlist-item-stock {
    min-width: 100px;
    text-align: center;
}

.stock-in {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stock-out {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Actions */
.wishlist-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-orange), #D35400);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.wishlist-cart-btn:hover {
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transform: translateY(-1px);
}

.wishlist-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-muted);
    background: var(--bg-cream);
    text-decoration: none;
    transition: var(--transition);
}

.wishlist-remove-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Empty Wishlist */
.wishlist-empty {
    text-align: center;
    padding: 80px 20px;
}

.wishlist-empty-icon {
    font-size: 5rem;
    color: var(--border-light);
    margin-bottom: 20px;
    animation: pulse-heart 2s infinite;
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.wishlist-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.wishlist-empty p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-orange), #D35400);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Wishlist Responsive */
@media (max-width: 900px) {
    .wishlist-item {
        grid-template-columns: 90px 1fr;
        gap: 14px;
    }

    .wishlist-item-price,
    .wishlist-item-stock,
    .wishlist-item-actions {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .wishlist-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wishlist-item-image {
        width: 100%;
        height: 160px;
    }

    .wishlist-item-actions {
        justify-content: center;
    }

    .wishlist-item-price {
        flex-direction: row;
        justify-content: center;
    }

    .wishlist-item-stock {
        justify-content: center;
        display: flex;
    }

    .stock-in, .stock-out {
        justify-content: center;
    }
}

/* =========================================
   MERCHANT / STORE PARTNER STYLES
   ========================================= */

/* Banner Section */
.merchant-banner {
    background: linear-gradient(135deg, rgba(74, 43, 29, 0.04) 0%, rgba(230, 126, 34, 0.04) 100%);
    border: 1px solid rgba(74, 43, 29, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.merchant-banner-content {
    max-width: 60%;
}

.merchant-banner-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.merchant-banner-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.merchant-banner-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.merchant-stat-badge {
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.merchant-stat-badge i {
    font-size: 1.4rem;
    color: var(--accent-orange);
}

.merchant-stat-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.merchant-stat-text strong {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 700;
}

/* Grid Layout */
.merchant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Merchant Card */
.merchant-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(45, 24, 16, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.merchant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-brown), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.3s;
}

.merchant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(45, 24, 16, 0.12);
    border-color: rgba(74, 43, 29, 0.15);
}

.merchant-card:hover::before {
    opacity: 1;
}

/* Logo Circular Avatar */
.merchant-logo-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--bg-latte);
    border: 4px solid var(--bg-cream);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
}

.merchant-card:hover .merchant-logo-wrapper {
    transform: scale(1.08);
}

.merchant-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title and Badges */
.merchant-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.merchant-card:hover .merchant-card-title {
    color: var(--accent-orange);
}

.merchant-certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.merchant-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Contact / Location Meta */
.merchant-card-meta {
    width: 100%;
    border-top: 1px dashed var(--border-light);
    padding-top: 15px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.merchant-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.merchant-meta-item i {
    color: var(--primary-brown);
    width: 14px;
}

/* Enter Button */
.merchant-enter-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-cream);
    color: var(--primary-dark);
    border: 1.5px solid var(--border-light);
    border-radius: 30px;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.merchant-card:hover .merchant-enter-btn {
    background: linear-gradient(135deg, var(--accent-orange), #D35400);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
}

.merchant-enter-btn i {
    transition: transform 0.25s ease;
}

.merchant-card:hover .merchant-enter-btn i {
    transform: translateX(4px);
}

/* Merchant Header (Single View) */
.single-merchant-header {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 45px;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.single-merchant-details {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.single-merchant-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--bg-latte);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.single-merchant-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-merchant-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin: 0 0 10px;
    font-weight: 700;
}

.single-merchant-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 0 15px;
    line-height: 1.5;
}

.single-merchant-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.single-merchant-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.single-merchant-badge.certified {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1.5px solid rgba(46, 204, 113, 0.18);
}

.single-merchant-badge.organic {
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
    border: 1.5px solid rgba(46, 125, 50, 0.15);
}

.single-merchant-meta {
    border-left: 1px dashed var(--border-light);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
}

.single-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.single-meta-row i {
    color: var(--primary-brown);
    margin-top: 3px;
}

.single-meta-row span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

.single-meta-row strong {
    font-weight: 600;
    line-height: 1.4;
}

/* Back Link Button */
.back-merchants-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-brown);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.back-merchants-btn:hover {
    color: var(--accent-orange);
    transform: translateX(-4px);
}

/* Responsive Single Merchant Header */
@media (max-width: 900px) {
    .single-merchant-header {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 30px;
    }

    .single-merchant-meta {
        border-left: none;
        border-top: 1px dashed var(--border-light);
        padding-left: 0;
        padding-top: 25px;
    }
}

@media (max-width: 600px) {
    .single-merchant-details {
        flex-direction: column;
        text-align: center;
    }

    .single-merchant-badges {
        justify-content: center;
    }

    .merchant-banner {
        flex-direction: column;
        padding: 25px;
        text-align: center;
    }

    .merchant-banner-content {
        max-width: 100%;
    }

    .merchant-banner-stats {
        justify-content: center;
        width: 100%;
    }

    .merchant-stat-badge {
        flex: 1;
        justify-content: center;
    }
}

/* Mobile Responsive Styling Tweaks for Header Actions, Logo & Hamburger Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.45rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-right: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: rgba(74, 43, 29, 0.06);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: inline-flex !important;
    }

    .header-middle {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 10px 0 !important;
    }
    
    .logo {
        order: 1 !important;
        flex: 1 !important;
        min-width: unset !important;
    }
    
    .logo img {
        width: 135px !important;
        max-height: 55px !important;
    }
    
    .header-actions {
        order: 2 !important;
        gap: 12px !important;
    }

    .header-actions .btn-primary {
        display: none !important; /* Hide portals inside header-actions, they are accessible inside drawers */
    }
    
    .search-filter-wrapper {
        order: 3 !important;
        flex: 1 1 100% !important;
        width: 100% !important;
        margin: 5px 0 0 0 !important;
    }
}


