/* Container */
.custom-utility-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px; /* Reduced gap between menu items */
}

/* Individual Menu Items */
.custom-utility-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6b7280; /* Default Gray */
    font-size: 10px; /* Reduced font size */
    font-weight: 500;
    gap: 4px; /* Reduced gap between icon and text */
    padding: 6px 10px; /* Added padding to create the background shape */
    border-radius: 8px; /* Rounded corners for the hover effect */
    transition: all 0.2s ease;
}

/* The New Hover Effect (Matches your screenshot) */
.custom-utility-menu .menu-item:hover {
    background-color: #EDFAEC; /* 50 - Background */
    color: #3AB534; /* 500 - Vibrant */
}

/* Icons */
.custom-utility-menu .menu-item i {
    font-size: 18px; /* Reduced icon size */
    color: #3D4454;
    transition: color 0.2s ease;
}

/* Cart Badge Styling */
.custom-utility-menu .cart-icon-wrapper {
    position: relative;
    display: flex; /* Changed from inline-block to fix the alignment */
    align-items: center;
    justify-content: center;
}

.custom-utility-menu .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #3AB534; /* 500 - Vibrant */
    color: #ffffff;
    font-size: 10px; /* Reduced badge font size */
    font-weight: 700;
    height: 16px; /* Reduced badge height */
    min-width: 16px; /* Reduced badge width */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Vertical Divider */
.custom-utility-menu .menu-divider {
    width: 1px;
    height: 30px; /* Reduced divider height */
    background-color: #e5e7eb;
    margin: 0 5px;
}

/* Green Action Button */
.custom-utility-menu .register-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: red !important; /* 500 - Vibrant */
    color: #ffffff;
    text-decoration: none;
    padding: 8px 18px; /* Increased side padding for slightly more width */
    border-radius: 6px;
    font-weight: bold; /* Made sure the text is bold */
    font-size: 12px; /* Reduced font size slightly */
    white-space: nowrap; /* This prevents the text from wrapping to a second line */
    transition: background-color 0.2s ease;
}

.custom-utility-menu .register-button:hover {
    background-color: #2A7238; /* 700 - Logo */
    color: #ffffff;
    transform: translateY(-3px);
}

.custom-utility-menu .register-button i {
    font-size: 14px; 
}

/* Search Edits */

/* 1. Kill FiboSearch's invisible overlays that block clicks */
.dgwt-wcas-preloader,
.dgwt-wcas-voice-search {
    pointer-events: none !important;
    display: none !important; 
}

/* 2. Main Search Wrapper */
.dgwt-wcas-search-wrapp {
    width: 100%;
    max-width: 100% !important;
    margin-top: 6px !important; /* Adjust this number up or down to perfectly align it with your icons */
    margin-bottom: 6px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 3. The Inner Container (Turns the whole wrapper into the visual search bar) */
.dgwt-wcas-sf-wrapp {
    display: flex !important;
    align-items: center !important;
    background-color: #ffffff !important;
    border: 1px solid #d1d5db !important; /* Thin gray border */
    border-radius: 8px !important; /* Soft corners from your image */
    padding: 4px !important; /* Space around the inner button */
    height: 44px !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* 4. The Fake Magnifying Glass (Left side) */
.dgwt-wcas-sf-wrapp::before {
    content: "" !important;
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 10px 0 12px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%239ca3af" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    flex-shrink: 0 !important;
}

/* 5. The Input Field */
.dgwt-wcas-search-input {
    flex-grow: 1 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: 100% !important;
    font-size: 15px !important;
    color: #4b5563 !important;
    min-width: 0 !important; /* Prevents flexbox blowout */
}

.dgwt-wcas-search-input::placeholder {
    color: #9ca3af !important;
}

/* 6. Hide the original SVG inside the button */
.dgwt-wcas-search-submit svg {
    display: none !important;
}

/* 7. The Submit Button (Right side) */
.dgwt-wcas-search-submit {
    all: unset !important; /* Completely nukes FiboSearch styling */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #1e3a8b !important; /* Blue */
    color: #ffffff !important;
    border-radius: 6px !important;
    height: 100% !important; /* Matches inner height of wrapper */
    padding: 0 20px !important;
    cursor: pointer !important;
    pointer-events: auto !important; /* Forces clickability */
    transition: background-color 0.2s ease !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.dgwt-wcas-search-submit:hover {
    background-color: #0F2059 !important; /* 700 - Logo */
}

/* 8. Inject the "Search" Text into the Button */
.dgwt-wcas-search-submit::after {
    content: "Search" !important;
    font-size: 14px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* menu hover */

/* 1. Force white background, and green text/icon on hover */
#quadmenu.quadmenu-default_theme .quadmenu-navbar-nav > li:not(.quadmenu-item-type-button).quadmenu-has-link:hover > a,
#quadmenu.quadmenu-default_theme .quadmenu-navbar-nav > li:not(.quadmenu-item-type-button).quadmenu-has-link:hover > a .quadmenu-caret {
    background-color: #3AB534 !important; /* Kills the black background */
    color: #EDFAEC !important; /* Makes text light green */
}

/* 2. Prepare the link element to hold the underline */
#quadmenu.quadmenu-default_theme .quadmenu-navbar-nav > li:not(.quadmenu-item-type-button).quadmenu-has-link > a {
    position: relative !important;
}

/* 3. Safely draw the green underline at the very bottom of the link area */
#quadmenu.quadmenu-default_theme .quadmenu-navbar-nav > li:not(.quadmenu-item-type-button).quadmenu-has-link:hover > a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #EDFAEC !important;
    display: block !important;
}

.quadmenu-item-31526.quadmenu-item-open > a {
    background-color: red !important; /* This is likely the culprit */
}

#quadmenu.quadmenu-default_theme .quadmenu-navbar-nav > li:not(.quadmenu-item-type-button).quadmenu-has-link:hover, 
#quadmenu.quadmenu-default_theme .quadmenu-navbar-nav > li:not(.quadmenu-item-type-button).quadmenu-has-link.open {
    background-color: transparent !important; 
}

.quadmenu-text {
    font-family: 'Inter' !important;
    text-transform: capitalize;
}

/*category home page slider*/

/* --- CONTAINER & HEADER --- */
.bs-container {
    padding: 20px 0;
    font-family: sans-serif;
}

.bs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}

.bs-badge-top {
    font-size: 11px;
    font-weight: 800;
    color: #3AB534; /* 500 - Vibrant */
    letter-spacing: 1px;
}

.bs-main-title {
    font-size: 32px;
    font-weight: 700;
    margin: 5px 0 0 0;
    color: #1A4D26; /* 900 - Depths */
}

.bs-view-all {
    color: #3AB534; /* 500 - Vibrant */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* --- TABS NAVIGATION --- */
.bs-nav-scroll {
    overflow-x: auto;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.bs-tabs-nav {
    display: flex;
    gap: 25px;
    white-space: nowrap;
}

.bs-tab-btn {
    all: unset;
    cursor: pointer;
    padding: 12px 0;
    font-size: 15px;
    color: #888;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}

.bs-tab-btn:hover {
    color: #3AB534; /* 500 - Vibrant */
}

.bs-tab-btn.is-active {
    color: #3AB534; /* 500 - Vibrant */
    border-bottom-color: #3AB534; /* 500 - Vibrant */
    font-weight: 700;
}

/* --- GRID & PANELS --- */
.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.bs-panel { display: none; }
.bs-panel.is-active { display: block; animation: bsFade 0.3s ease; }

@keyframes bsFade { from { opacity: 0; } to { opacity: 1; } }

/* --- PRODUCT CARD --- */
.bs-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bs-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Card Top / Image Area */
.bs-card-top {
    background-color: #EDFAEC; /* 50 - Background */
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bs-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #3AB534; /* 500 - Vibrant */
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.bs-card-top img {
    max-height: 100%;
    width: auto;
    mix-blend-mode: multiply; /* Makes white backgrounds transparent */
}

/* --- CARD BODY --- */
.bs-card-body {
    padding: 15px 20px;
    flex-grow: 1;
}

.bs-card-title {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #1A4D26; /* 900 - Depths */
    font-weight: 700;
    line-height: 1.3;
}

/* Price & Box Info */
.bs-price-row {
    margin-bottom: 12px;
    font-size: 14px;
}

.bs-price {
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}

.bs-box-qty {
    color: #777;
    font-size: 13px;
}

/* --- VARIATION CHIPS --- */
.ppc-selection-wrapper {
    margin-top: 8px;
}

.ppc-attr-row {
    margin-bottom: 4px; /* Tight vertical gap */
    display: flex;
}

.ppc-attr-scroll-box {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.ppc-variant {
    all: unset; /* Kill any theme interference */
    background: #444; /* Dark grey from screenshot */
    color: #fff !important;
    padding: 1px 4px !important; /* Extremely tight padding */
    font-size: 10px !important; /* Small font size */
    font-weight: 700 !important;
    line-height: 1.2 !important;
    border-radius: 1px !important; /* Subtle sharp corners */
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.ppc-variant.active {
    background: #E09100 !important; /* Active state is darker/black */
}

/* Ensure the scrollbox doesn't add extra height */
.ppc-variations-container {
    min-height: auto !important;
}

/* --- CARD FOOTER / PURCHASE COMPLEX --- */
.bs-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #f5f5f5;
}

.ppc-purchase-complex {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.bs-cart-btn {
    background: #3AB534; /* 500 - Vibrant */
    color: #fff;
    border: none;
    padding: 12px 0;
    flex: 1; /* Button takes up remaining space */
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

.bs-cart-btn:hover {
    background: #2A7238; /* 700 - Logo */
}

/* Points Section */
.ppc-purchase-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 45px;
}

.ppc-star-icon {
    margin-bottom: 4px;
    display: block;
}

.ppc-points-val {
    color: #3AB534; /* 500 - Vibrant */
    font-weight: 800;
    font-size: 10px;
}

.ppc-points-label {
    font-size: 10px;
    color: #888;
    font-weight: 400;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .bs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .bs-grid { grid-template-columns: 1fr; }
    .bs-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/*bags featured*/
.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Column */
.feature-image-side {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #BEC3C8; /* Fallback */
    background: linear-gradient(180deg, #BEC3C8 0%, #A4ABB2 100%);
}

.feature-image-side img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.feature-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}

.label-prefix {
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #F5A623; /* Amber 500 */
    margin-bottom: 5px;
}

.label-title {
    color: #23262B;
    font-size: 24px;
    font-weight: 800;
}

/* Right Column Cards */
.feature-buttons-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #D8D8DE; /* Grey 100 */
    transition: all 0.3s ease;
}

/* Hover state using the softest green */
.feature-card:hover:not(.active) {
    background: #EDFAEC; /* 50 - Background */
    border-color: #7DD674; /* 300 - Light */
}

.feature-card.active {
    background: #16181D; /* Grey 900 */
    color: #fff;
    border-color: #16181D;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #F2F3F4; /* Grey 50 */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    transition: background 0.3s ease;
}

.feature-card.active .card-icon {
    background: #F5A623; /* Amber 500 */
    color: #fff;
}

.card-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.card-text p {
    font-size: 14px;
    margin: 5px 0 0;
    opacity: 0.7;
}

.card-arrow {
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card.active .card-arrow {
    opacity: 1;
    color: #F5A623; /* Amber 500 */
}

@media (max-width: 768px) {
    .feature-container { grid-template-columns: 1fr; }
}
/* Force the title text to be white when the card is active */
.feature-card.active .card-text h3 {
    color: #FFFFFF !important;
}

/* Also ensure the description stays bright enough to read */
.feature-card.active .card-text p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/*menu mobile utitlity*/

/* Container - Forced row and 100% width for right alignment */
.mobile-utility-menu {
    display: flex !important; /* Overrides aggressive theme styles */
    flex-direction: row !important; /* Forces them side-by-side */
    flex-wrap: nowrap; /* Prevents them from dropping to a new line */
    align-items: center;
    justify-content: flex-end; /* Aligns everything to the right */
    width: 100%; /* Required so 'flex-end' has space to push across */
    gap: 20px; 
}

/* Sign In Link - Forced row for icon and text */
.mobile-utility-menu .mobile-login-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px; 
    font-weight: 500;
    white-space: nowrap; /* Prevents "Sign" and "In" from stacking */
    transition: color 0.2s ease;
}

.mobile-utility-menu .mobile-login-link:hover {
    color: #3AB534; /* 500 - Vibrant */
}

.mobile-utility-menu .mobile-login-link i {
    font-size: 18px;
}

/* Cart Link */
.mobile-utility-menu .mobile-cart-link {
    display: inline-flex;
    text-decoration: none;
    color: #6b7280;
    transition: color 0.2s ease;
}

.mobile-utility-menu .mobile-cart-link:hover {
    color: #3AB534; /* 500 - Vibrant */
}

/* Cart Icon Wrapper */
.mobile-utility-menu .mobile-cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-utility-menu .mobile-cart-icon-wrapper i {
    font-size: 22px; 
}

/* Cart Badge */
.mobile-utility-menu .mobile-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #3AB534; /* 500 - Vibrant */
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #ffffff; 
}

/*amazon menu*/

/* Burger Trigger */
.amazon-burger-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

/* Full Screen Dark Overlay */
.amazon-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.amazon-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* The Slide-Out Panel */
.amazon-slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.amazon-slide-menu.is-open {
    transform: translateX(0);
}

/* Top Dark Header - Just the close button aligned right */
.amazon-slide-top-bar {
    background-color: #1A4D26; /* 900 - Depths */
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end; /* Pushes the X to the right */
    align-items: center;
    flex-shrink: 0;
}
.amazon-close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

/* Scrollable Body */
.amazon-menu-body {
    overflow-y: auto;
    flex-grow: 1;
    padding-bottom: 30px;
}

/* Google Sheets Generated HTML Styling */
.amazon-menu-section {
    padding: 8px 0; /* Reduced from 15px */
}

.amazon-menu-section-header {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    padding: 6px 20px; /* Reduced from 10px */
}

.amazon-menu-item-link {
    display: block;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    padding: 8px 20px; /* Reduced from 12px */
    transition: background-color 0.2s ease;
    line-height: 1.2; /* Ensures the text itself isn't adding extra invisible height */
}

.amazon-menu-item-link:hover {
    background-color: #f3f4f6;
    color: #111111;
}

.amazon-menu-divider {
    height: 4px;
    background-color: #eaeded;
    width: 100%;
}

/* =========================================
   FEATURE BLOCK V2 (RESPONSIVE SEPARATE)
========================================= */

.fbv2-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Left Column (Display) --- */
.fbv2-image-side {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #BEC3C8;
    background: linear-gradient(180deg, #BEC3C8 0%, #A4ABB2 100%);
}

.fbv2-main-display {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.fbv2-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}

.fbv2-label-prefix {
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #F5A623;
    margin-bottom: 5px;
}

.fbv2-label-title {
    color: #23262B;
    font-size: 24px;
    font-weight: 800;
}

/* Hide mobile info on desktop */
.fbv2-mobile-info {
    display: none;
}

/* --- Right Column (Cards) --- */
.fbv2-buttons-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Changed to button reset styling */
.fbv2-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid #D8D8DE;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.fbv2-card:hover:not(.active),
.fbv2-card:focus-within:not(.active) {
    background: #EDFAEC; /* 50 - Background */
    border-color: #7DD674; /* 300 - Light */
}

.fbv2-card.active {
    background: #16181D;
    color: #fff;
    border-color: #16181D;
}

.fbv2-card-icon {
    width: 50px;
    height: 50px;
    background: #F2F3F4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.fbv2-card.active .fbv2-card-icon {
    background: #F5A623;
    color: #fff;
}

.fbv2-card-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.fbv2-card-text p {
    font-size: 14px;
    margin: 5px 0 0;
    opacity: 0.7;
    transition: color 0.3s ease;
}

/* Specificity overrides instead of !important */
.fbv2-container .fbv2-card.active .fbv2-card-text h3 {
    color: #FFFFFF;
}

.fbv2-container .fbv2-card.active .fbv2-card-text p {
    color: rgba(255, 255, 255, 0.8);
}

.fbv2-card-arrow {
    margin-left: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.fbv2-card.active .fbv2-card-arrow {
    opacity: 1;
    pointer-events: auto;
    color: #F5A623;
}

/* =========================================
   MOBILE RESPONSIVE STYLES
========================================= */

@media (max-width: 768px) {
    .fbv2-container { 
        display: flex; 
        flex-direction: column;
        gap: 20px;
    }

    /* Move buttons to the top and create 4 squares */
    .fbv2-buttons-side {
        order: -1; 
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    /* Turn the cards into squares and center the icon */
    .fbv2-card {
        padding: 10px;
        aspect-ratio: 1 / 1;
        justify-content: center;
        text-align: center;
    }

    .fbv2-card-icon {
        margin: 0;
    }

    /* Hide the text and arrow inside the squares */
    .fbv2-card-text, 
    .fbv2-card-arrow {
        display: none;
    }

    /* Show the new mobile description/link below the main image */
    .fbv2-mobile-info {
        display: flex;
        flex-direction: column;
        padding: 15px 5px 0;
    }

    .fbv2-active-desc {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
        margin: 0 0 15px 0;
    }

    .fbv2-active-link {
        color: #F5A623;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

/* =========================================
   NUCLEAR OPTION: OVERRIDE THEME BLUE
========================================= */

/* 1. Menu Items Hover */
body header .custom-utility-menu .menu-item:hover,
body .et_pb_section .custom-utility-menu .menu-item:hover {
    background-color: #EDFAEC !important; /* 50 - Background */
    color: #3AB534 !important; /* 500 - Vibrant */
}

/* 2. Cart Badge */
body header .custom-utility-menu .cart-badge,
body .et_pb_section .custom-utility-menu .cart-badge {
    background-color: #3AB534 !important; /* 500 - Vibrant */
    color: #ffffff !important;
}

/* 3. Register Button Base State */
body header .custom-utility-menu a.register-button,
body .et_pb_section .custom-utility-menu a.register-button {
    background-color: #1c3b85 !important; /* 500 - Vibrant */
    color: #ffffff !important;
}

/* 4. Register Button Hover State */
body header .custom-utility-menu a.register-button:hover,
body .et_pb_section .custom-utility-menu a.register-button:hover {
    background-color: #0F2059 !important; /* 700 - Logo */
    color: #ffffff !important;
}