/*
================================================================
||
||  Providential Clover: Optimized Header Styles
||  Version: 4.0 (Mega Menu Redesign)
||
================================================================
*/

/*
==============================================
--- 1. Announcement Bar ---
==============================================
*/
.header-announcement-bar {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/*
==============================================
--- 2. Main Header Layout ---
==============================================
*/
/* CORRECTED version */
.gemini-main-header {
    background-color: var(--card-bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: height 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gemini-main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gemini-main-header.scrolled .header-content-new {
    height: 70px;
}

.header-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    transition: height 0.3s ease-in-out;
}

.header-left,
.header-right {
    flex: 1 1 0;
}

.header-center {
    flex: 2 1 0;
    text-align: center;
}

.header-right {
    text-align: right;
}

/*
==============================================
--- 3. Logo ---
==============================================
*/
.custom-header-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/*
==============================================
--- 4. Main Navigation ---
==============================================
*/
/* Around line 84 in header-styles.css */
.header-nav-main {
    display: inline-block; /* Changed from 'block' */
}

.header-nav-main > a,
.nav-item-has-megamenu > a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.header-nav-main > a::after,
.nav-item-has-megamenu > a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.header-nav-main > a:hover::after,
.header-nav-main > a.active::after {
    width: 80%;
}

/* NEW RULE: Show the underline when the Store mega menu is open */
.nav-item-has-megamenu:has(.mega-menu-container.is-open) > a::after {
    width: 80%;
}


.nav-item-has-megamenu {
    position: static;
    display: inline-block;
}
/*
================================================================
|| >> NEW MEGA MENU DESIGN (V4)
================================================================
*/

/* 1. Main Container & New 2-Column Grid Layout */
/* 1. Main Container & New 2-Column Grid Layout */
.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none; /* Add this line to make the hidden menu non-interactive */
}

/* This rule gives JavaScript full control over when the menu is visible */
.mega-menu-container.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Add this line to make the visible menu interactive */
}

/* CORRECTED version */
.mega-menu-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1.5fr 1fr;
    gap: 0;
    align-items: stretch; /* <-- ADD THIS LINE */
}
/* Styling for middle and right panes */
.mega-menu-content, .mega-menu-static-collections {
    padding: 1rem 1.5rem;
    height: 100%;
    background-color: var(--bg-color);
}

.mega-menu-static-collections {
    border-left: 1px solid var(--border-color);
    transition: border-color 0.2s ease; /* <-- ADD THIS LINE */
}
/* 2. Left Navigation Column */
.mega-menu-nav {
    border-right: 1px solid var(--border-color);
    padding: 1.5rem 0.5rem;
}

.mega-menu-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.mega-menu-nav-list {
    list-style-type: none !important;
    padding-left: 0 !important;
}
/* --- Base Link Styling --- */
.mega-menu-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary-color);
    padding: 0.8rem 1.5rem; /* Adjusted padding */
    text-decoration: none;
    border-radius: var(--border-radius-sm); /* Rounded corners for the pill */
    margin: 0.25rem 0.5rem; /* Add horizontal margin for spacing */
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.mega-menu-nav-link i {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    color: var(--text-secondary-color);
    transition: color 0.2s ease;
}

/* --- Remove the old active state bar --- */
.mega-menu-nav-link.active::before {
    display: none; /* Hides the old vertical bar */
}

/* --- New Hover State --- */
.mega-menu-nav-link:not(.active):hover {
    background-color: color-mix(in srgb, var(--text-color) 8%, transparent);
    color: var(--text-color);
}
.mega-menu-nav-link:not(.active):hover span,
.mega-menu-nav-link:not(.active):hover i {
    color: var(--text-color);
}


/* --- New Active State --- */
.mega-menu-nav-link.active {
    background-color: var(--accent-color); /* Use accent color for the pill */
    color: #fff; /* White text for contrast */
    font-weight: 600;
}

.mega-menu-nav-link.active span {
    color: #fff;
}

.mega-menu-nav-link.active i {
    color: #fff; /* White icon for contrast */
}
/* 3. Right Content ColumnscbsjkbcbskjsacasbcasbcjSACASJcjb LcALOcbjOjOSLAcjoSAc ASc jSAN cs cJSA cjsA c AScj  */
/* In header-styles.css, around line 299 */

/* In header-styles.css, around line 299 */
.mega-menu-content {
    padding: 1rem 1.5rem;
    position: relative;
    overflow: hidden;
    
    /* FINAL TWEAK: Increased the opacity delay and added padding to the transition. */
    transition: opacity 0.3s ease 0.2s, 
                transform 0.3s ease,
                padding 0.3s ease 0.1s;
}

.mega-menu-content-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0s 0.3s, transform 0.3s ease;
}

.mega-menu-content-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0s 0s, transform 0.3s ease;
}

.mega-menu-content h4 {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary-color);
}
/* Styling for the new static collections pane */
.mega-menu-static-collections {
    padding: 1rem;
    border-left: 1px solid var(--border-color);
}

.mega-menu-static-collections h4 {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary-color);
}
/* 4. Featured Products Panel Styling */
.mega-menu-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 380px; 
    overflow: hidden; /* Add this to clip the corners of the images inside */
    border-radius: var(--border-radius-lg); /* Add this for rounded corners */
}
.mega-menu-product-card {
    display: block;
    position: relative; /* This is crucial for the overlay */
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden; /* Hides the image zoom overflow */
}

.mega-menu-product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes the image fill the space without distortion */
    transition: transform 0.4s ease-out;
}
/* New styles for the text overlay */
.mega-menu-product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    transition: opacity 0.3s ease;
}

.mega-menu-product-card .product-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.3s ease-out;
}

/* Animate the text on hover for a nice effect */
.mega-menu-product-card:hover .product-card-name {
    transform: translateY(0);
    opacity: 1;
}

/* Add a zoom effect to the image on hover */
.mega-menu-product-card:hover .mega-menu-product-card-image {
    transform: scale(1.05);
}



/* 5. Collections Panel Styling (re-uses existing components) */
#mega-menu-collection-container {
    height: 100%;
}

.layered-collections-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    /* The grid-template-rows and height properties have been removed to prevent stretching */
}

.layered-collection-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layered-collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.layered-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.card-bg-image {
    width: 100%;
    height: 120px; /* Set a fixed, slim height */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.layered-collection-card:hover .card-bg-image {
    transform: scale(1.05);
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.card-content-overlay h5 {
    margin: 0;
    font-size: 1.3rem;
}

.card-content-overlay p {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 6. Big Category Card Styling */
/* 6. Big Category Card Styling */
.mega-menu-category-card {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    min-height: 380px; /* NEW: Set a matching height */
    text-decoration: none;
    color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.mega-menu-category-card:hover {
    transform: scale(1.02);
}

.mega-menu-category-card-overlay {
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 80%);
}

.mega-menu-category-card-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.mega-menu-category-card-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Styling for the new empty state message in the menu */
.mega-menu-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    color: var(--text-secondary-color);
}

.mega-menu-empty-state i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.mega-menu-empty-state span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.mega-menu-empty-state p {
    font-size: 0.9rem;
    max-width: 250px;
    margin-top: 0.5rem;
}
/*
==============================================
--- 5. Command Center & Search ---
==============================================
*/
.command-center-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    padding: 5vh 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

html[data-theme="dark"] .command-center-overlay {
    background-color: rgba(18, 18, 18, 0.7);
}

.command-center-overlay.active {
    opacity: 1;
    visibility: visible;
}

.command-center-content {
    width: 100%;
    max-width: 700px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.command-center-overlay.active .command-center-content {
    transform: translateY(0);
}

.command-center-close-btn {
    position: absolute;
    top: -10px;
    right: -40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text-color, #111);
}

.command-center-close-btn i {
    width: 32px;
    height: 32px;
}

.command-center-search-box {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.command-center-search-box i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #999;
    width: 24px;
    height: 24px;
}

#command-center-input {
    width: 100%;
    height: 60px;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px dashed var(--border-color);
    background-color: transparent;
    padding: 0 20px;
    color: var(--text-color, #111);
    /* FIX #1: This makes the default line fade out smoothly instead of jumping */
    transition: border-bottom-color 0.3s ease;
}

#command-center-input:focus {
    outline: none;
    border-bottom-color: transparent; /* This will now fade to transparent */
}

/* These are the two halves of the green animated line */
.command-center-search-box::before,
.command-center-search-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    /* FIX #2: A standard 'ease' timing often feels smoother */
    transition: width 0.4s ease;
}

.command-center-search-box::before {
    left: 50%;
}

.command-center-search-box::after {
    right: 50%;
}

/* On focus, the two halves grow to 50% width */
.command-center-search-box:focus-within::before,
.command-center-search-box:focus-within::after {
    width: 50%;
}

.command-center-results {
    max-height: 50vh;
    overflow-y: auto;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.result-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

html[data-theme="dark"] .result-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.result-item-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.result-item-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.result-item-info .price {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
}

.command-center-suggestions {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.command-center-suggestions h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary-color);
}

.command-center-suggestions a {
    display: inline-block;
    margin: 0 1rem 0.5rem 0;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

html[data-theme="dark"] .command-center-suggestions a {
    background-color: var(--card-bg-color);
}

.command-center-suggestions a:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/*
==============================================
--- 6. Header Actions & Icons ---
==============================================
*/
.header-actions-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-action-item {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.2s ease-in-out;
}

.header-action-item:hover {
    background-color: color-mix(in srgb, var(--text-color) 8%, transparent);
}

.header-action-item .feather {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}

button.header-action-item {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transform: scale(0.5);
    transition: transform 0.2s ease-out;
}

.badge.active {
    display: flex;
    transform: scale(1);
}

/*
==============================================
--- 7. User Dropdown Menu ---
==============================================
*/
.user-menu-container {
    position: relative;
}

.user-menu-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--text-color);
    width: 100%;
    height: 100%;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 420px;
    background: var(--card-bg-color);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1000;
    
}

.user-menu-container.active .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-main-content {
    display: flex;
}

.dropdown-column-nav {
    width: 55%;
    border-right: 1px solid var(--border-color);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
}

.dropdown-column-nav .dropdown-link-group {
    flex-grow: 1;
}

.dropdown-column-nav .dropdown-footer {
    padding: 0.5rem 0 0 0;
    margin: 1rem 1.25rem 0 1.25rem;
    border-top: 1px solid var(--border-color);
}

.dropdown-column-dynamic {
    width: 45%;
    padding: 1rem;
    background-color: var(--bg-color);
}

.dropdown-user-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
}

.dropdown-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-color);
}

.dropdown-user-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.dropdown-user-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary-color);
}

.user-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-link-group li a,
.dropdown-footer a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-link-group li a:hover,
.dropdown-footer a:hover {
    background-color: color-mix(in srgb, var(--text-color) 8%, transparent);
}

.dropdown-link-group li a .feather {
    width: 18px;
    height: 18px;
    color: var(--text-secondary-color);
}

.dropdown-footer a {
    color: var(--danger-color);
}

.dropdown-footer a .feather {
    color: var(--danger-color);
}

.dropdown-footer a:hover {
    background-color: color-mix(in srgb, var(--danger-color) 10%, transparent);
}

.dropdown-column-dynamic .quick-status-widget {
    margin: 0 0 1rem 0;
    border-radius: 8px;
}

#recently-viewed-list .dropdown-item-thumb {
    width: 30px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

#recently-viewed-list li a {
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.dropdown-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0.5rem 0;
}

.quick-status-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background-color: #f8f9fa;
    border-left: 3px solid var(--accent-color, #111);
    margin: 0 0.5rem;
    border-radius: 0 4px 4px 0;
}

.quick-status-widget .feather {
    color: var(--accent-color, #111);
    width: 20px;
    height: 20px;
}

.quick-status-info span {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.quick-status-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

/*
==============================================
--- 8. Mini Cart ---
==============================================
*/
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--card-bg-color);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mini-cart-panel.active {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.mini-cart-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.mini-cart-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px;
}

.mini-cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.mini-cart-empty-message {
    text-align: center;
    padding: 4rem 1rem;
}

.mini-cart-item {
    display: flex;
    gap: 1rem;
}

.mini-cart-item + .mini-cart-item {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color, #e9ecef);
}

.mini-cart-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.mini-cart-item-details {
    flex-grow: 1;
}

.mini-cart-item-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.mini-cart-item-details .item-meta {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    margin-bottom: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color, #e9ecef);
    border-radius: 50px;
    width: fit-content;
}

.quantity-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.quantity-display {
    padding: 0 0.5rem;
    font-weight: 500;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary-color);
    padding: 5px;
    flex-shrink: 0;
}

.mini-cart-item-remove:hover {
    color: var(--hub-danger);
}

.mini-cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subtotal-line {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
}

.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent-color);
    color: #fff;
    padding: 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.checkout-btn:hover {
    background-color: var(--accent-hover-color);
}

/*
==============================================
--- 9. Responsive Styles ---
==============================================
*/
@media (max-width: 1024px) {
    .mega-menu-wrapper {
        grid-template-columns: 220px 1fr; /* Adjust for smaller screens */
    }
}

@media (max-width: 768px) {
    .header-nav-main {
        display: none;
    }
}

/*
================================================================
--- 10. GLOBAL OVERLAY & SCROLL LOCK ---
================================================================
*/
html {
    scrollbar-gutter: stable;
}

body.body-scroll-locked {
    overflow: hidden;
}

body.command-center-is-active .gemini-main-header {
    z-index: 9998;
}

/*
==============================================
--- 11. DROPDOWN DISCOVERY PLACEHOLDER (V3 - FINAL) ---
==============================================
*/
@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.dropdown-placeholder {
    text-align: center;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.dropdown-placeholder svg {
    width: 28px;
    height: 28px;
    color: var(--text-secondary-color);
    margin-bottom: 1rem;
    opacity: 0.6;
    animation: breathe 4s ease-in-out infinite;
}

.dropdown-placeholder h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.dropdown-placeholder p {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
    max-width: 180px;
}

/* --- 11. DROPDOWN DISCOVERY PLACEHOLDER (V3 - FINAL) --- */
/* (You can find this section in your header-styles.css file) */

/* Add or replace with this keyframe animation */
@keyframes text-shimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}


/* Use these styles for the placeholder CTA button */
.dropdown-placeholder-cta {
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 50px;
    
    /* Key properties for the shimmer effect */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        var(--accent-color) 0%,
        #fff 50%, 
        var(--accent-color) 100%
    );

    /* Apply the animation */
    animation: text-shimmer 4s linear infinite;
    transition: transform 0.3s ease;
}

.dropdown-placeholder-cta:hover {
    transform: scale(1.05);
    background-color: transparent;
    border-color: transparent;
}

/*
================================================================
--- 12. Search Icon Border - FINAL v2 (Universal) ---
================================================================
*/
#btn-search-open.header-action-item {
    background-color: transparent !important;
    box-shadow: none !important;
    border: 2px solid #e0e0e0 !important;
    transition: border-color 0.3s ease-in-out;
}

html[data-theme="dark"] #btn-search-open.header-action-item {
    border-color: #000000 !important;
}

#btn-search-open.header-action-item:hover {
    border-color: var(--accent-color) !important;
}

html[data-theme="dark"] #btn-search-open.header-action-item:hover {
    border-color: var(--accent-color) !important;
}

.admin-edit-btn-inline {
    background: #e6007e;
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    opacity: 0.7;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.admin-edit-btn-inline:hover {
    opacity: 1;
    transform: scale(1.1);
}

/*
==============================================
--- 13. DARK MODE HEADER OVERRIDES ---
==============================================
*/
html[data-theme="dark"] .gemini-main-header {
    background-color: var(--card-bg-color);
    border-bottom-color: var(--border-color);
}

html[data-theme="dark"] .header-nav-main a,
html[data-theme="dark"] .mega-menu-nav-link {
    color: var(--text-secondary-color);
}

html[data-theme="dark"] .header-nav-main a:hover,
html[data-theme="dark"] .header-nav-main a.active,
html[data-theme="dark"] .mega-menu-nav-link:hover {
    color: var(--text-color);
}

html[data-theme="dark"] .mega-menu-nav-link.active {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

html[data-theme="dark"] .header-nav-main a:hover::after,
html[data-theme="dark"] .header-nav-main a.active::after {
    background-color: var(--accent-color);
}

html[data-theme="dark"] .header-action-item,
html[data-theme="dark"] .user-menu-trigger {
    color: var(--text-secondary-color);
}

html[data-theme="dark"] .header-action-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

html[data-theme="dark"] .user-dropdown {
    background: var(--card-bg-color);
    border-color: var(--border-color);
}

html[data-theme="dark"] .dropdown-user-info h4,
html[data-theme="dark"] .dropdown-user-info p,
html[data-theme="dark"] .quick-status-info span,
html[data-theme="dark"] .quick-status-info strong,
html[data-theme="dark"] .dropdown-link-group li a {
    color: var(--text-color);
}

html[data-theme="dark"] .quick-status-widget,
html[data-theme="dark"] .mega-menu-product-card:hover {
    background-color: var(--bg-color);
}

html[data-theme="dark"] .dropdown-link-group li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
/*
================================================================
|| >> NEW: Animations & Skeleton Styles (V5)
================================================================
*/

/* 1. Animation Keyframes */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


/* 2. Applying Entrance Animations */
/* 2. Applying Entrance Animations */
.mega-menu-container.is-open .mega-menu-column {
    animation: fade-in-up 0.4s ease-out both;
}
/* Stagger the animation for each column */
.mega-menu-container.is-open .mega-menu-content {
    animation-delay: 0.05s;
}
.mega-menu-container.is-open .mega-menu-static-collections {
    animation-delay: 0.1s;
}
/* Apply fade-in to the content inside the active panel */
.mega-menu-content-panel.active > * {
    animation: fade-in-up 0.3s ease-out both;
}


/* 3. Skeleton Loader Styles */
.skeleton-loader-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    width: 100%;
}
.skeleton-product-card, .skeleton-collection-card {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; /* Use the new pulse animation */
    border-radius: var(--border-radius-sm);
}
html[data-theme="dark"] .skeleton-product-card, 
html[data-theme="dark"] .skeleton-collection-card {
    background-color: #3a475a;
    background-image: linear-gradient(to right, #3a475a 0%, #4a5568 20%, #3a475a 40%, #3a475a 100%);
}

.skeleton-product-card .skeleton-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--border-radius-sm);
    background-color: var(--card-bg-color);
    margin-bottom: 0.75rem;
}
.skeleton-product-card .skeleton-line {
    height: 14px;
    width: 75%;
    border-radius: 4px;
    background-color: var(--card-bg-color);
}
.skeleton-collection-card {
    width: 100%;
    min-height: 400px;
}


/* 4. Enhanced Card Hover Effects */
.mega-menu-product-card-image,
.layered-collection-card {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, opacity 0.3s ease-out;
}
.mega-menu-product-card:hover .mega-menu-product-card-image {
    transform: scale(1.05);
    opacity: 1; /* Override previous opacity rule */
}

.layered-collection-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
/* Hide the title in the "Featured" panel */
/*
================================================================
--- 14. DYNAMIC ANNOUNCEMENT BAR ---
================================================================
*/
.header-announcement-bar a {
    text-decoration: none;
    color: inherit;
    display: block; /* Ensures the link fills the entire bar */
}
/*
================================================================
--- 15. DYNAMIC ACTION BUTTON ---
================================================================
*/
@keyframes pulse-anim {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(var(--accent-color-rgb), 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0); }
}

@keyframes glow-anim {
    0%, 100% { box-shadow: 0 0 5px var(--accent-color); }
    50% { box-shadow: 0 0 20px var(--accent-color); }
}

@keyframes shimmer-anim {
    0%{ background-position: -500% 0; }
    100%{ background-position: 500% 0; }
}

.dynamic-action-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 1.5rem; /* Space between it and Collections */
}

/* Color Schemes */
.dynamic-action-btn.color-default {
    background-color: var(--accent-color);
    color: white;
}
.dynamic-action-btn.color-special {
    background: linear-gradient(90deg, #e6007e, #ff6b6b);
    color: white;
}
.dynamic-action-btn.color-dark {
    background-color: #111;
    color: white;
    border: 1px solid #333;
}

/* Animations */
.dynamic-action-btn.anim-pulse {
    animation: pulse-anim 2s infinite;
}
.dynamic-action-btn.anim-glow {
    animation: glow-anim 3s infinite ease-in-out;
}
.dynamic-action-btn.anim-shimmer {
    background-size: 200% auto;
    animation: shimmer-anim 3s linear infinite;
}
/*
================================================================
|| >> FINAL HEADER FIXES (JULY 2025)
================================================================
*/


/* 2. Fixes Mega Menu getting trapped by the parent theme's container */
#page-container {
    overflow: visible !important;
}
/*
================================================================
|| >> FINAL MEGA MENU BACKGROUND FIX (JULY 2025)
================================================================
*/
.mega-menu-content,
.mega-menu-static-collections {
    background-color: var(--card-bg-color);
}
/*
================================================================
|| >> COLLECTIONS MEGA MENU STYLES (NEW)
================================================================
*/

/* 1. Main Container & Wrapper */
.collections-mega-menu .mega-menu-wrapper {
    max-width: 900px; /* A bit narrower than the store menu */
    grid-template-columns: 220px 1fr; /* 2-column layout */
    gap: 2rem;
    padding: 1.5rem;
}

/* 2. Left Column: Featured Collections List */
.collections-mega-menu .featured-collections-nav {
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.collections-mega-menu .featured-collections-nav h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary-color);
}

.collections-mega-menu .featured-collections-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.collections-mega-menu .featured-collection-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.collections-mega-menu .featured-collection-link:hover {
    background-color: var(--bg-color);
}

.collections-mega-menu .featured-collection-link img {
    width: 40px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* 3. Right Column: Main Promotional Card */
.collections-mega-menu .promo-pane {
    display: flex;
    height: 100%;
}

/* We can reuse the existing category card styles for the promo pane */
.collections-mega-menu .mega-menu-category-card {
    min-height: 250px;
}

/* 4. Underline animation for the "Collections" link */
#collections-nav-item:has(.collections-mega-menu.is-open) > a::after {
    width: 80%;
}
/*
================================================================
|| >> ASYMMETRICAL COLLECTIONS GRID (IDEA 3)
================================================================
*/

/* --- 1. General Transitions (Kept from previous idea) --- */
/* Replace with this rule */
.mega-menu-wrapper {
    transition: grid-template-columns 0.35s ease-out;
}

.mega-menu-column.mega-menu-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* --- 2. Active "Takeover" State (Kept from previous idea) --- */
/* --- CORRECTED: Active "Takeover" State --- */
.mega-menu-wrapper.collections-view-active {
    grid-template-columns: 260px 0fr 2.5fr; /* This remains the same */
    gap: 0; /* Explicitly remove gap */
}

/* In header-styles.css, around line 1502 */

/* In header-styles.css, around line 1502 */
.mega-menu-wrapper.collections-view-active .mega-menu-content {
    opacity: 0;
    transform: translateX(-15px);
    pointer-events: none;
    visibility: hidden;
    padding-left: 0;
    padding-right: 0;
    margin: 0; /* Keep margin reset */

    
    transition: opacity 0.2s ease, 
                transform 0.2s ease, 
                padding 0.2s ease;
}

/* --- Hides the center border during collections takeover --- */
.mega-menu-wrapper.collections-view-active .mega-menu-static-collections {
    border-left-color: transparent;
}

/* --- Hides the center border during collections takeover --- */
.mega-menu-wrapper.collections-view-active .mega-menu-static-collections {
    border-left-color: transparent;
}

/* --- 3. New Asymmetrical Grid Layout --- */
/* --- 3. New Asymmetrical Grid Layout --- */
.collections-asymmetrical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    height: 100%;
    min-height: 380px; /* CHANGED: Was 300px */
}

.asymm-grid-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asymm-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* --- 4. Grid Item Sizing & Specifics --- */
.asymm-grid-item--primary {
    grid-column: 1 / 2;
    grid-row: 1 / 3; /* Take up two rows */
}

.asymm-grid-item--secondary {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.asymm-grid-item--cta {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background-color: var(--bg-color);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

/* --- 5. Grid Item Content & Hover Effects --- */
.asymm-grid-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
}

.asymm-grid-item:hover .asymm-grid-item-bg {
    transform: scale(1.05);
}

.asymm-grid-item-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 80%);
}

.asymm-grid-item-overlay h5 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.asymm-grid-item-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.asymm-grid-item--cta h5 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.asymm-grid-item--cta p {
    color: var(--text-secondary-color);
    margin: 0;
}
/* --- 6. DYNAMIC CTA Card Styles (V8: Final Polish & Animations) --- */
@keyframes breathing-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes text-shimmer {
    from { background-position: 0% center; }
    to   { background-position: -200% center; }
}

.asymm-grid-item--cta {
    position: relative;
    background-color: var(--bg-color);
    padding: 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

/* Container for the two states */
.cta-placeholder,
.cta-interactive-buttons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* --- Placeholder (Static) State with new animations --- */
.cta-placeholder {
    flex-direction: column;
    gap: 0.5rem;
    opacity: 1;
    transform: translateY(0);
}
.asymm-grid-item--cta.is-active .cta-placeholder {
    opacity: 0;
    transform: translateY(-15px);
}
.cta-placeholder i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5px;
    color: var(--text-secondary-color);
    animation: breathing-icon 4s ease-in-out infinite;
    transition: opacity 0.3s, transform 0.3s;
}
/* CORRECTED RULE */
.cta-placeholder h5 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 700;
    /* This new gradient creates a seamless, repeatable pattern */
    background-image: repeating-linear-gradient(
        -60deg,
        var(--accent-color),
        var(--accent-color) 20px,
        #fff 30px,
        #fff 40px,
        var(--accent-color) 50px
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: text-shimmer 8s linear infinite; /* Adjusted speed for a better effect */
    transition: opacity 0.3s, transform 0.3s;
}



/* --- Interactive Button State (Text Cascade Animation) --- */
.cta-interactive-buttons {
    flex-direction: row;
    gap: 0;
    padding: 0;
    opacity: 0;
}
.asymm-grid-item--cta.is-active .cta-interactive-buttons {
    opacity: 1;
}

.asymm-grid-item--cta .cta-button {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    height: 100% !important;
    width: 50% !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
    padding: 1rem !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}
.cta-button span {
    display: inline-block;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.asymm-grid-item--cta.is-active .cta-button span {
    opacity: 1;
    transform: translateY(0);
}
.asymm-grid-item--cta .cta-button--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.asymm-grid-item--cta.is-active .cta-button--primary::before {
    transform: scaleX(1);
    transition-delay: 0.1s;
}
.asymm-grid-item--cta.is-active .cta-button--primary span {
    transition-delay: 0.3s;
}
.asymm-grid-item--cta .cta-button--primary {
    background-color: transparent;
    color: #fff;
    border: none !important;
    box-shadow: none !important;
}
.asymm-grid-item--cta .cta-button--primary:hover {
    background-color: var(--accent-hover-color);
}

.asymm-grid-item--cta .cta-button--secondary {
    background-color: transparent;
    color: var(--text-secondary-color);
    border: none !important;
    box-shadow: none !important;
}
.asymm-grid-item--cta .cta-button--secondary:hover {
    background-color: var(--card-bg-color);
    color: var(--text-color);
}
.asymm-grid-item--cta.is-active .cta-button--secondary span {
    transition-delay: 0.4s;
}
/*
================================================================
--- [Final] Header Stacking Override for Divi ---
================================================================
*/

/*
 * This forces the Divi builder's main content area to a lower
 * stacking layer, allowing the sticky header to sit on top.
*/
#et-main-area {
    position: relative;
    z-index: 1;
}
/*
================================================================
|| >> COMMAND CENTER V2 STYLES
================================================================
*/

.result-category-header {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary-color);
    padding: 1.5rem 0 0.5rem 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.result-category-header:first-of-type {
    padding-top: 0;
}

/* Style for page results that don't have an image */
.page-result-item i {
    width: 60px;
    height: 80px; /* Match image height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-secondary-color);
}
/*
================================================================
|| >> COMMAND CENTER SUGGESTIONS PANEL POLISH
================================================================
*/

/* Target only the result items within the initial suggestions panel */
#command-center-suggestions .result-item {
    background-color: transparent !important;
    border-bottom: none;
    padding: 0.6rem 0.25rem; /* Tweak padding for a cleaner list */
}

/* Add a more subtle hover effect for the suggestion links */
#command-center-suggestions .result-item:hover .result-item-info h4 {
    color: var(--accent-color);
}

/* Make the icons in the suggestions panel transparent */
#command-center-suggestions .page-result-item i {
    background-color: transparent;
}

/* Clean up spacing on the category headers within the suggestions panel */
#command-center-suggestions .result-category-header {
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1rem;
}

#command-center-suggestions .result-category-header:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
/*
================================================================
|| >> DARK MODE OVERRIDES (Mega Menu CTA)
================================================================
*/
html[data-theme="dark"] .asymm-grid-item--cta {
    background-color: var(--bg-color);
}

html[data-theme="dark"] .asymm-grid-item--cta h5 {
    color: var(--text-color);
}

html[data-theme="dark"] .asymm-grid-item--cta p {
    color: var(--text-secondary-color);
}