/* ============================================
   SIHIPAK STOREFRONT CSS
   ============================================ */

:root {
    --primary: #c44d16;
    --primary-dark: #a83d0c;
    --primary-light: #fbeae1;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --bg-body: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #372f2a;
    --bg-darker: #2d2621;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --accent-red: #ef4444;
    --accent-green: #22c55e;
    --accent-yellow: #f59e0b;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    --transition: all 0.2s ease;
    
    --container-width: 1280px;
}

/* Animated category button (dropdown removed site-wide) */
.nav-categories-wrapper {
    overflow: visible;
}

button.nav-categories-dropdown {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 0;
    font-family: inherit;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(232, 93, 4, 0.22);
    animation: categoryButtonPulse 2.8s ease-in-out infinite;
}

button.nav-categories-dropdown::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: -70%;
    left: -35%;
    width: 28%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: rotate(18deg) translateX(-220%);
    animation: categoryButtonShine 3.2s ease-in-out infinite;
}

button.nav-categories-dropdown svg {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

button.nav-categories-dropdown span {
    position: relative;
    z-index: 1;
}

button.nav-categories-dropdown:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 10px 24px rgba(232, 93, 4, 0.3);
}

button.nav-categories-dropdown:hover svg {
    transform: rotate(90deg);
}

button.nav-categories-dropdown:active {
    transform: translateY(0) scale(0.985);
}

button.nav-categories-dropdown:focus-visible {
    outline: 3px solid rgba(232, 93, 4, 0.28);
    outline-offset: 3px;
}

@keyframes categoryButtonPulse {
    0%, 100% {
        box-shadow: 0 6px 18px rgba(232, 93, 4, 0.2);
    }
    50% {
        box-shadow: 0 8px 24px rgba(232, 93, 4, 0.36);
    }
}

@keyframes categoryButtonShine {
    0%, 48% {
        transform: rotate(18deg) translateX(-220%);
    }
    68%, 100% {
        transform: rotate(18deg) translateX(650%);
    }
}

@media (prefers-reduced-motion: reduce) {
    button.nav-categories-dropdown,
    button.nav-categories-dropdown::after {
        animation: none;
    }
}

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

html, body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: #43332a;
    color: #e2dcd7;
    font-size: 11px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-item, .top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link {
    transition: var(--transition);
}

.top-bar-link:hover {
    color: white;
}

.top-bar-icon {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

.top-bar-divider {
    color: rgba(255,255,255,0.2);
    font-size: 10px;
}

@media (max-width: 992px) {
    .top-bar {
        display: block !important;
        padding: 8px 0 !important;
    }
    .top-bar-left {
        display: none !important; /* Hides Delivering Across India, Bulk Orders, and GST Invoice text on small screens */
    }
    .top-bar-inner {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 16px !important;
    }
    .top-bar-right {
        display: flex !important;
        width: 100% !important;
        justify-content: flex-start !important;
        align-items: center !important;
        margin: 0 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .top-bar-right::-webkit-scrollbar {
        display: none;
    }
    .call-us-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 6px 22px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 24px !important;
        width: auto !important;
        min-width: 230px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
        text-decoration: none !important;
        flex-shrink: 0 !important;
        animation: marquee-scroll 8s linear infinite alternate !important;
    }

    @keyframes marquee-scroll {
        0%, 15% { transform: translateX(0); }
        85%, 100% { transform: translateX(-190px); }
    }
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }
    .main-header-inner {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }
    .main-header-inner {
        gap: 12px;
    }
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon-wrapper {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    line-height: 1;
    font-family: 'Outfit', 'Montserrat', 'Inter', sans-serif;
}

.logo-subtitle {
    font-size: 9px;
    font-weight: 700;
    color: #9c6644;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 2px;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 850px;
    display: flex;
    align-items: center;
    border: 1.5px solid #e85d04 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    height: 44px !important;
    overflow: visible !important;
    box-shadow: 0 2px 8px rgba(232, 93, 4, 0.08) !important;
}

@media (max-width: 768px) {
    .header-search {
        max-width: 100%;
        height: 40px !important;
    }
    .search-input {
        font-size: 12px !important;
    }
    .search-btn {
        font-size: 13px !important;
        padding: 0 16px !important;
    }
}

@media (max-width: 480px) {
    .header-search {
        height: 36px !important;
    }
    .search-category {
        padding: 0 12px;
        font-size: 12px;
    }
    .search-input {
        font-size: 11px !important;
        padding: 0 12px !important;
    }
    .search-btn {
        font-size: 12px !important;
        padding: 0 12px !important;
    }
}

.search-category {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    border-right: 1px solid #e85d04;
    height: 100%;
    cursor: pointer;
    background: var(--bg-gray);
    white-space: nowrap;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.search-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 16px !important;
    font-size: 13.5px !important;
    color: #1e293b !important;
    height: 100% !important;
    border-radius: 0 !important;
}

.search-btn {
    background: #e85d04 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 0 20px !important;
    border: none !important;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

.search-btn i, .search-btn svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
    fill: none !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.search-btn:hover {
    background: #dc2f02 !important;
}

.search-btn:hover i, .search-btn:hover svg {
    transform: scale(1.15) rotate(5deg) !important;
}

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

@media (max-width: 768px) {
    .header-actions {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 12px;
    }
    .header-action-card {
        padding: 6px 12px;
        height: 40px;
    }
    .header-action-card .card-icon {
        width: 18px;
        height: 18px;
    }
    .header-action-card .card-title {
        font-size: 11px;
    }
    .header-action-card .card-subtitle {
        font-size: 10px;
    }
}

.header-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.action-text {
    display: flex;
    flex-direction: column;
}

.action-top {
    font-size: 11px;
    color: var(--text-muted);
}

.action-bottom {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.main-nav {
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.main-nav-inner {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-right: 24px !important;
}

.nav-categories-wrapper {
    position: relative;
    height: 100%;
}

.nav-categories-dropdown {
    display: flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    min-width: 240px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-categories-dropdown:hover {
    background: #dc2f02;
}

.categories-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 240px;
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 999;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.categories-submenu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.categories-submenu li a:hover {
    background: #fdf3ed;
    color: var(--primary);
}

.categories-submenu li a .submenu-icon {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.categories-submenu li a:hover .submenu-icon {
    color: var(--primary);
}

.nav-categories-wrapper:hover .categories-submenu {
    display: block;
}

.nav-horizontal-links {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.nav-horizontal-links > li {
    position: relative; /* For dropdown positioning */
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-horizontal-links > li > a,
.nav-pack-size-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 14px 0;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
}

.nav-horizontal-links > li > a:hover,
.nav-pack-size-dropdown:hover {
    color: var(--primary);
}

.nav-horizontal-links .nav-icon {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-horizontal-links > li > a:hover .nav-icon,
.nav-pack-size-dropdown:hover .nav-icon {
    color: var(--primary);
}

/* Pack Size Dropdown Specific Styles */
.nav-pack-size-li:hover .pack-size-submenu {
    display: block;
}

.pack-size-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 998; /* Slightly lower than categories-submenu if they overlap */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    min-width: 160px; /* Adjust as needed */
}

.pack-size-submenu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pack-size-submenu li a:hover {
    background: #fdf3ed;
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 14px 0;
    display: inline-block;
    transition: var(--transition);
}

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

.nav-deals {
    color: var(--accent-red) !important;
    display: flex;
    align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    margin-top: 60px;
    position: relative;
}

/* Footer BG Image Wrapper */
.footer-bg-wrapper {
    background-image: url('../images/footer%20banner%20image2.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1536 / 1024;
    padding: 6% 40px 0; /* Reduced top padding to move text higher up */
    position: relative;
    display: flex;
    align-items: flex-start; /* Ensure content sits at the top, leaving bottom image visible */
}

/* Footer Content Grid */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.2fr 1.2fr;
    gap: 32px;
    position: relative;
    z-index: 2;
}

/* Footer Brand Column */
.footer-brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-mandala-logo {
    flex-shrink: 0;
}

.footer-logo-divider {
    font-size: 10px;
    color: #c9a87c;
    letter-spacing: 1px;
    line-height: 1;
}

.footer-about {
    font-size: 15px;
    color: #6b5243;
    line-height: 1.7;
    max-width: 260px;
}

.footer-heading-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 4px;
}
.footer-heading-divider::before,
.footer-heading-divider::after {
    content: '';
    display: block;
    height: 1px;
    width: 20px;
    background-color: #e85d04;
}
.footer-heading-divider span {
    color: #e85d04;
    font-size: 8px;
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #4a2f1d !important;
    letter-spacing: 0.5px;
}

/* Footer Menu Links */
.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    font-size: 15px;
    color: #6b5243;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-menu a:hover {
    color: #e85d04;
    transform: translateX(3px);
}

.footer-link-icon {
    width: 14px;
    height: 14px;
    color: #e85d04;
    transition: var(--transition);
}

.footer-menu a:hover .footer-link-icon {
    color: #e85d04;
}

/* View All Categories Link */
.footer-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #e85d04;
    padding: 8px 16px;
    border: 1px solid #e85d04;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-view-all:hover {
    background: #fdf5ec;
    color: #dc2f02;
    border-color: #dc2f02;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 15px;
    color: #6b5243;
    line-height: 1.5;
}

.footer-contact i {
    width: 20px;
    height: 20px;
    color: #e85d04;
    margin-top: 2px;
    flex-shrink: 0;
    border: 1px solid #e85d04;
    border-radius: 50%;
    padding: 4px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #4a2f1d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: #e85d04;
    transform: translateY(-2px);
}

.social-links i {
    width: 15px;
    height: 15px;
}

/* Footer Subscribe */
.footer-subscribe-box {
    display: flex;
    border: 1px solid #e85d04 !important;
    border-radius: 8px;
    overflow: hidden;
    height: 42px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-subscribe-input {
    flex: 1;
    border: none;
    padding: 0 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    outline: none;
    background: #ffffff !important;
    color: #222222 !important;
}

.footer-subscribe-input::placeholder {
    color: #888888 !important;
}

.footer-subscribe-btn {
    background: #e85d04 !important;
    color: #ffffff !important;
    border: none;
    width: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-subscribe-btn:hover {
    background: #dc2f02 !important;
}

/* GST Invoice Badge */
.footer-gst-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(232, 93, 4, 0.06);
    border: 1px solid rgba(232, 93, 4, 0.15);
    border-radius: 8px;
}

.footer-gst-badge strong {
    font-size: 15px;
    color: #4a2f1d;
    display: block;
}

.footer-gst-badge span {
    font-size: 13px;
    color: #8a7060;
}

/* ============================================
   FOOTER TRUST BAR
   ============================================ */
.footer-trust-bar {
    position: absolute;
    bottom: 21.5%; /* Centered precisely in the middle of the cream band */
    left: 0;
    width: 100%;
    height: 10%; /* Height of the cream band */
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.footer-trust-inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    text-align: left;
}

.footer-trust-item:not(:last-child)::after {
    display: none; /* The vertical lines are already in the background image */
}

.footer-trust-item div {
    display: flex;
    flex-direction: column;
}

.footer-trust-item strong {
    font-size: 18px;
    color: #4a2f1d;
}

.footer-trust-item span {
    font-size: 15px;
    color: #6b5243;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */
/* Footer Bottom */
.footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Nudged up slightly by increasing height of flex container */
    background: transparent;
    color: #e0d0c1;
    padding: 0 40px; /* Add some horizontal padding */
    display: flex;
    align-items: center; /* This perfectly centers the text with the chariot */
}

.footer-bottom-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    flex: 1;
}

.footer-bottom-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 14px;
}

.footer-bottom-center .footer-heading-divider::before,
.footer-bottom-center .footer-heading-divider::after {
    background-color: #6b5243;
}

.footer-bottom-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    align-items: center;
}

.footer-pay-group, .footer-ssl-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-pay-label {
    font-size: 14px;
    color: #e0d0c1;
    font-weight: 600;
}

.footer-pay-icons {
    display: flex;
    gap: 8px;
}

.pay-badge {
    background: white;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.pay-badge.mc {
    background: #ff5f00;
    color: white;
}

.pay-badge.rupay {
    background: #0073ce;
    color: white;
}

.pay-badge.upi {
    background: #5f2b8e;
    color: white;
}

.footer-ssl {
    text-align: right;
}

.footer-ssl span {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 2px;
}

.ssl-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #4ade80;
    font-weight: 700;
}

/* Global Trust Bar */
.global-trust-bar {
    background: #fffaf6;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 24px 0;
    margin-top: 30px;
    margin-bottom: 45px;
}
.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}
.trust-bar-item i {
    width: 28px;
    height: 28px;
    color: #a83d0c;
    flex-shrink: 0;
}
.trust-bar-text {
    display: flex;
    flex-direction: column;
}
.trust-bar-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #4a2f1d;
    margin-bottom: 2px;
    line-height: 1.2;
}
.trust-bar-text p {
    font-size: 11px;
    color: #888;
    line-height: 1.3;
    margin: 0;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES (Cleaned & Corrected)
   ========================================================================== */

/* Action Cards */
.header-action-card {
    background: #fdf7f4;
    border: 1px solid #f9ebe5;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    height: 44px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.header-action-card:hover {
    background: #fbeee8;
    border-color: #f6ded5;
    transform: translateY(-1px);
}
.header-action-card .card-icon {
    color: #e85d04;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-action-card .card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-action-card .card-title {
    font-size: 13px;
    font-weight: 700;
    color: #4a2f1d;
    line-height: 1.2;
}
.header-action-card .card-subtitle {
    font-size: 11px;
    color: #8c7667;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 2px;
}

.cart-card-icon-wrapper {
    position: relative;
}
.cart-card-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d62222;
    color: white;
    font-size: 9px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    padding: 0 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Horizontal links next to dropdown */
.nav-horizontal-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
    margin-left: 20px;
}
.nav-horizontal-links li {
    display: flex;
    align-items: center;
    position: relative;
}
.nav-horizontal-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #4a2f1d;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.nav-horizontal-links a:hover {
    background: #fdf5f0;
    color: #e85d04;
}
.nav-horizontal-links .nav-icon {
    width: 16px;
    height: 16px;
    color: #8c7667;
    transition: color 0.2s ease;
}
.nav-horizontal-links a:hover .nav-icon {
    color: #e85d04;
}

/* ============================================
   ANIMATED OFFERS SLIDING TICKER
   ============================================ */
.nav-offers-ticker-wrapper {
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
    margin-left: 20px;
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 4px 0;
    box-sizing: border-box;
}

.nav-offers-ticker-wrapper::before,
.nav-offers-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35px;
    z-index: 3;
    pointer-events: none;
}
.nav-offers-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.nav-offers-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.nav-offers-ticker {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.offers-track {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    animation: slowSlideTrack 32s linear infinite;
    will-change: transform;
    height: 100%;
}

.offers-track:hover {
    animation-play-state: paused;
}

@keyframes slowSlideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Offer Pill Cards - Ultra-Clean UI */
.offer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 34px;
    padding: 0 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    box-sizing: border-box;
    vertical-align: middle;
}

.offer-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.offer-pill-shipping {
    background: #eefbf1;
    border: 1px solid #bbf2c9;
    color: #10b981;
}

.offer-pill-b2b {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    color: #d97706;
}

.offer-pill-sparkle {
    background: #faf0ff;
    border: 1px solid #ebd0ff;
    color: #a855f7;
}

.offer-pill-hot {
    background: #fff0f0;
    border: 1px solid #ffc9c9;
    color: #ef4444;
}

.offer-pill-gift {
    background: #f0f7ff;
    border: 1px solid #bae0ff;
    color: #3b82f6;
}

.offer-code {
    background: rgba(0, 0, 0, 0.06);
    color: inherit;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    font-family: inherit;
    font-weight: 800;
    font-size: 11px;
    margin-left: 4px;
}

/* Animated Icons */
.offer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.anim-pulse-flame {
    animation: pulseFlame 1.5s infinite ease-in-out;
}
@keyframes pulseFlame {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.anim-bounce-gift {
    animation: bounceGift 2s infinite ease-in-out;
}
@keyframes bounceGift {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-3px) rotate(-6deg); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-1px) rotate(6deg); }
}

.anim-drive-truck {
    animation: driveTruck 2.2s infinite ease-in-out;
}
@keyframes driveTruck {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.anim-flash-zap {
    animation: flashZap 1.2s infinite ease-in-out;
}
@keyframes flashZap {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.anim-spin-sparkle {
    animation: spinSparkle 4s infinite linear;
}
@keyframes spinSparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Deals Highlight item */
.nav-deals-li {
    position: relative;
}
.nav-deals-btn {
    background: #fbe6e8 !important;
    color: #e54d60 !important;
    border-radius: 20px !important;
    padding: 6px 16px !important;
}
.nav-deals-btn:hover {
    background: #fad4d8 !important;
    color: #dc2f43 !important;
}
.nav-deals-btn .deals-icon {
    color: #e54d60 !important;
    width: 14px;
    height: 14px;
}
.deals-badge {
    position: absolute;
    top: -9px;
    right: 12px;
    background: #d62222;
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dropdown override */
.nav-categories-dropdown {
    background: #e85d04 !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    min-width: 200px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}
.nav-categories-dropdown:hover {
    background: #dc2f02 !important;
}

/* Responsiveness overrides */
@media (max-width: 1024px) {
    .nav-horizontal-links {
        gap: 8px;
        margin-left: 10px;
    }
    .nav-horizontal-links a {
        padding: 8px 6px;
        font-size: 12px;
    }
}
@media (max-width: 992px) {
    .nav-horizontal-links {
        display: none !important;
    }
    
    /* Main header flex wrap so logo and buttons sit cleanly on top row, search bar drops to full-width second row */
    .main-header {
        padding: 12px 0 !important;
    }
    .main-header-inner {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 12px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* Significantly enlarge brand logo on mobile and remove desktop negative margins */
    .logo-link {
        order: 1 !important;
        margin: 0 8px 0 0 !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    .logo-link img {
        height: 42px !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
        margin: 0 !important;
        object-fit: contain !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        order: 2 !important;
        margin: 0 !important;
        margin-left: 0 !important;
    }
    .header-action-card {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        background: #fff6f0 !important;
        border: 1px solid #f5ddce !important;
        gap: 0 !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }
    .header-action-card .card-icon {
        width: 20px !important;
        height: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        color: #e85d04 !important;
    }
    .header-action-card .card-text {
        display: none !important; /* Keep text hidden on small viewports so icons stand out crisply */
    }
    
    /* Format Mobile Get a Quote button compactly */
    .mobile-quote-btn {
        order: 3 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px 14px !important;
        font-size: 13px !important;
        height: 40px !important;
        border-radius: 8px !important;
        margin: 0 !important;
        gap: 6px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    /* Prevent duplicate Get a Quote button from desktop header-actions */
    #header-order-now-btn, .header-actions .order-now-btn {
        display: none !important;
    }
    
    /* Prevent search bar from cutting off: drop to 2nd row, hide bulky All Categories dropdown, ensure full width */
    .header-search {
        order: 4 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 4px 0 0 0 !important;
        flex: none !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        height: 44px !important;
    }
    .search-category {
        display: none !important; /* Removes 'All Categories' inside search box on mobile to free up space for text and search button */
    }
    .search-input {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 16px !important;
        font-size: 14px !important;
        box-sizing: border-box !important;
    }
    .search-btn {
        flex-shrink: 0 !important;
        min-width: 85px !important;
        width: auto !important;
        padding: 0 16px !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        font-size: 13.5px !important;
    }
    
    /* Align Navigation Bar (Shop by Category + Offers Ticker) cleanly by stacking vertically */
    .main-nav {
        padding: 8px 0 !important;
    }
    .main-nav-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    .nav-categories-wrapper {
        width: 100% !important;
        margin: 0 !important;
    }
    .nav-categories-dropdown {
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
        padding: 10px 16px !important;
        border-radius: 8px !important;
    }
    .nav-offers-ticker-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
        border-radius: 8px !important;
    }
    .nav-offers-ticker-wrapper::before,
    .nav-offers-ticker-wrapper::after {
        display: none !important;
    }
    .nav-offers-ticker {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-offers-ticker::-webkit-scrollbar {
        display: none;
    }
    .offers-track {
        animation: none !important;
        padding-bottom: 4px;
    }
}

/* Place Order Submenu styles */
.place-order-wrapper {
    position: relative;
    display: inline-block;
}
.place-order-wrapper:hover .place-order-submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.place-order-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: white;
    border: 1px solid #f0e6dc;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 8px 0;
    margin: 4px 0 0 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.place-order-submenu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.place-order-submenu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #4a2f1d;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: left;
}
.place-order-submenu li a:hover {
    background-color: #fdf7f4;
    color: #e85d04;
}
.place-order-submenu .submenu-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.place-order-submenu .whatsapp-color {
    color: #25d366;
}
.place-order-submenu .call-color {
    color: #007bff;
}
.place-order-submenu .email-color {
    color: #ea4335;
}
.place-order-submenu .register-color {
    color: #e85d04;
}

.place-order-wrapper:hover .trigger-card .card-subtitle i {
    transform: rotate(180deg);
}
.trigger-card .card-subtitle i {
    transition: transform 0.2s ease;
}

/* Full-width container alignments */
.top-bar-inner,
.main-header-inner {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.main-nav-inner {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
}

@media (max-width: 768px) {
    .top-bar-inner,
    .main-header-inner,
    .main-nav-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}



.search-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    min-width: 110px !important;
    justify-content: center !important;
}

@media (min-width: 992px) {
    .mobile-quote-btn {
        display: none !important;
    }
    .header-search {
        flex-grow: 1 !important;
        max-width: 750px !important;
        width: auto !important;
    }
}

.order-now-btn {
    background: #e85d04;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.15);
    flex-shrink: 0;
    white-space: nowrap;
}

.order-now-btn:hover {
    background: #dc2f02;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(220, 47, 2, 0.25);
}

.order-now-btn i {
    transition: transform 0.2s ease;
}

.order-now-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .order-now-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}



/* ============================================
   ORNATE TITLE COMPONENT
   ============================================ */
.ornate-title-container {
    display: flex;
    justify-content: center;
    margin: 60px 0 40px 0;
}

.ornate-title-box {
    position: relative;
    padding: 20px 40px;
    text-align: center;
    display: inline-block;
}

.ornate-inner-line {
    position: absolute;
    left: 10px; /* Reduced to bring lines slightly closer to the text bounds horizontally */
    right: 10px;
    height: 1px;
    background: #f2e2d0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ornate-inner-top { top: 0; }
.ornate-inner-bottom { bottom: 0; }

/* Diamonds on the ends of the inner lines */
.ornate-inner-line::before,
.ornate-inner-line::after {
    content: '';
    width: 5px;
    height: 5px;
    background: #e85d04;
    transform: rotate(45deg);
}

.ornate-motif-top {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffaf5;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornate-motif-bottom {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffaf5;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ornate-title-text {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: 700;
    color: #4a2f1d;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1;
}

.ornate-title-text .highlight {
    color: #e85d04;
}

@media (max-width: 768px) {
    .ornate-title-container {
        margin: 16px 0 12px 0 !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .ornate-title-box {
        padding: 10px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .ornate-title-text {
        font-size: 20px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    .ornate-inner-line {
        left: 8px !important;
        right: 8px !important;
    }
}

@media (max-width: 576px) {
    .ornate-title-box {
        min-width: unset;
        width: 100%;
        padding: 10px 14px !important;
    }
    .ornate-title-text {
        font-size: 18px !important;
    }
    .ornate-inner-line {
        left: 6px !important;
        right: 6px !important;
    }
}

/* Footer Mini Category Titles */
.footer-mini-title .ornate-title-box {
    padding: 15px 25px;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-mini-title .ornate-title-text {
    font-size: 20px;
    padding: 0;
    text-align: center;
    line-height: 1.2;
}
.footer-mini-title .ornate-inner-line {
    left: 8px; right: 8px;
}

/* Footer Directory Lists */
.footer-directory-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}
.footer-directory-list {
    list-style: none;
    padding: 0;
    margin: 10px auto 0;
    width: fit-content;
}
.footer-directory-list li {
    margin-bottom: 12px;
}
.footer-directory-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a2f1d;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-directory-list a:hover {
    color: #e85d04;
}

@media (max-width: 1024px) {
    .hide-on-mobile,
    .testimonials-section,
    .testimonials-mobile-hide {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}
.footer-directory-list .dir-icon {
    width: 14px;
    height: 14px;
    color: #d89b2b;
}

/* ==========================================================================
   FOOTER RESPONSIVE LAYOUT & COLLISION PREVENTION
   ========================================================================== */
@media (max-width: 1200px) {
    .footer-content-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 32px !important;
    }
}

@media (max-width: 1024px) {
    /* Uncouple footer from fixed aspect ratio & absolute bottom layers */
    .footer-bg-wrapper {
        aspect-ratio: auto !important;
        height: auto !important;
        padding: 140px 32px 30px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        background-size: cover !important;
        background-position: top center !important;
    }
    
    /* Safely scale up brand logo on tablet screens while keeping it clear of the top design */
    .footer-brand-col .footer-logo {
        margin-top: 12px !important;
        margin-bottom: 20px !important;
    }
    .footer-brand-col .footer-logo img {
        height: 64px !important;
        width: auto !important;
        max-width: 100% !important;
        transform: none !important;
        margin-left: 0 !important;
    }
    
    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 36px !important;
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
    }

    /* Convert trust bar from absolute layer to clean flowing grid */
    .footer-trust-bar {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 24px 0 !important;
        background: rgba(255, 250, 245, 0.7) !important;
        border-top: 1px solid #ebcfb1 !important;
        border-bottom: 1px solid #ebcfb1 !important;
        border-radius: 8px !important;
        margin: 10px 0 0 !important;
        box-sizing: border-box !important;
    }
    .footer-trust-inner {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        padding: 0 16px !important;
        box-sizing: border-box !important;
    }

    /* Convert footer bottom from absolute layer to clean compact box */
    .footer-bottom {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 10px 0 16px !important;
        background: transparent !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .footer-bottom-left {
        display: none !important; /* Eliminate empty phantom mid-gap */
    }
    .footer-bottom-inner {
        flex-direction: column !important;
        gap: 16px !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .footer-bottom-right {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 24px !important;
        text-align: center !important;
        order: 1 !important;
    }
    .footer-bottom-center {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        order: 2 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .footer-pay-group, .footer-ssl-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
    }
    .footer-pay-label {
        font-size: 11px !important;
        opacity: 0.9 !important;
        margin-bottom: 2px !important;
    }
}

@media (max-width: 768px) {
    .footer-bg-wrapper {
        padding: 155px 20px 24px !important;
        gap: 28px !important;
    }
    
    /* Significantly increase mobile brand logo visibility and presence */
    .footer-brand-col {
        grid-column: 1 / -1 !important;
        text-align: left !important;
    }
    .footer-brand-col .footer-logo {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
    .footer-brand-col .footer-logo img {
        height: 58px !important;
        width: auto !important;
        max-width: 95% !important;
        transform: none !important;
        margin-left: 0 !important;
    }

    .footer-content-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 20px !important;
        text-align: left !important;
    }
    .footer-about {
        max-width: 100% !important;
    }
    .footer-view-all {
        width: 100% !important;
        justify-content: flex-start !important;
        box-sizing: border-box !important;
    }
    .footer-trust-inner {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .footer-trust-item {
        justify-content: flex-start !important;
        padding: 12px 16px !important;
        background: #fff !important;
        border: 1px solid #f0ccb6 !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }
    .footer-bottom-right {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
    }
    .footer-pay-icons {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 6px !important;
    }
    .ssl-badge {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }
    .footer-bottom-center p {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin: 4px 0 !important;
    }

    /* Global Responsive Trust Bar & Stat Badges Grid */
    .trust-bar, .global-trust-bar {
        padding: 18px 16px !important;
        background: #fcf9f5 !important;
        border-top: 1px solid #f0dec9 !important;
        border-bottom: 1px solid #f0dec9 !important;
    }
    .trust-bar-inner {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .trust-divider { 
        display: none !important; 
    }
    .trust-item, .trust-bar-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #ebd8c3 !important;
        border-radius: 10px !important;
        padding: 14px 10px !important;
        box-shadow: 0 2px 8px rgba(74, 47, 29, 0.04) !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        gap: 8px !important;
    }
    .trust-icon, .trust-bar-item i {
        width: 26px !important;
        height: 26px !important;
        color: #e85d04 !important;
        margin: 0 !important;
    }
    .trust-text, .trust-bar-text {
        align-items: center !important;
        text-align: center !important;
        gap: 2px !important;
    }
    .trust-text strong, .trust-bar-text h4 {
        font-size: 14px !important;
        color: #3b2314 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    .trust-text span, .trust-bar-text p {
        font-size: 11px !important;
        color: #6e5847 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    .trust-item:last-child,
    .trust-bar-item:last-child {
        grid-column: 1 / -1 !important;
        flex-direction: row !important;
        padding: 12px 18px !important;
        background: #fff6ef !important;
        border-color: #f5cfb3 !important;
        box-shadow: 0 2px 10px rgba(232, 93, 4, 0.06) !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    .trust-item:last-child .trust-text,
    .trust-bar-item:last-child .trust-bar-text {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

/* ==========================================================================
   GLOBAL APPLICATION-WIDE MOBILE SECTION & GAP COMPRESSION
   ========================================================================== */
@media (max-width: 992px) {
    /* Eliminate wide vertical white gaps between page sections on tablet and mobile viewports */
    section, 
    .section,
    .section-padding,
    .subcategories-section,
    .related-products-section,
    .track-filter-section,
    .page-content > section,
    .main-container > section,
    .content-wrapper > section {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Keep section headings tight above their content grids and cards */
    .section-header, 
    .section-header-small, 
    .page-header {
        margin-top: 0 !important;
        margin-bottom: 14px !important;
        gap: 6px !important;
    }

    .section-title {
        font-size: 24px !important;
        margin-bottom: 4px !important;
        line-height: 1.25 !important;
    }
}

/* ==========================================================================
   FLOATING BUTTONS (WHATSAPP & CART)
   ========================================================================== */
.floating-buttons-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 99999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    color: #ffffff;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* WhatsApp Styling */
.floating-whatsapp-btn {
    background-color: #25D366;
}

.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: floating-whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes floating-whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Cart Styling */
.floating-cart-btn {
    background-color: var(--primary, #c44d16);
}

.floating-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    height: 20px;
    min-width: 20px;
    padding: 0 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

/* Scroll Up Styling */
.floating-scroll-btn {
    background-color: #4a2f1d;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.floating-scroll-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.floating-scroll-btn.show:hover {
    transform: scale(1.1) translateY(-3px);
}

@media (max-width: 768px) {
    .floating-buttons-container {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    }
}

/* Auth Dropdowns */
.auth-dropdown-trigger {
    position: relative;
}

.auth-dropdown-menu {
    position: absolute;
    top: 130%;
    right: 0;
    width: 200px;
    background: #ffffff;
    border: 1px solid #f0e6dc;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(74, 47, 29, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    padding: 8px 0;
}

.auth-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 32px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #f0e6dc;
    border-top: 1px solid #f0e6dc;
    transform: rotate(45deg);
}

.auth-dropdown-trigger:hover .auth-dropdown-menu,
.auth-dropdown-trigger.show-dropdown .auth-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: calc(100% + 8px);
}

.auth-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #4a2f1d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.auth-dropdown-menu .dropdown-item:hover {
    background: #faf7f4;
    color: #e85d04;
}

.auth-dropdown-menu .dropdown-item i,
.auth-dropdown-menu .dropdown-item svg {
    width: 16px;
    height: 16px;
    color: #8c7667;
}

.auth-dropdown-menu .dropdown-item:hover i,
.auth-dropdown-menu .dropdown-item:hover svg {
    color: #e85d04;
}

.auth-dropdown-divider {
    height: 1px;
    background: #f0e6dc;
    margin: 4px 0;
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
}
@media (min-width: 769px) {
    .show-on-mobile { display: none !important; }
}

.categories-grid .category-card[data-href] {
    cursor: pointer;
}

/* SIHIPAK In The Spotlight */
.sihipak-spotlight-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0 54px;
    background: #fff;
}

.spotlight-section-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.spotlight-ornate-title {
    justify-content: center;
    margin: 0;
}

.spotlight-arrows {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.spotlight-arrows .arrow-btn i,
.spotlight-arrows .arrow-btn svg {
    width: 18px;
    height: 18px;
}

.spotlight-intro {
    margin: 14px 0 26px;
    color: #7b6759;
    font-size: 15px;
    text-align: center;
}

.spotlight-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 4px 18px;
}

.spotlight-track::-webkit-scrollbar {
    display: none;
}

.spotlight-card {
    position: relative;
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 330px;
    min-height: 330px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    overflow: hidden;
    text-align: left;
    background: linear-gradient(145deg, #fff 0%, #fff7f0 100%);
    border: 1px solid #f2cfb7;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(74, 47, 29, 0.08);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.spotlight-card:nth-child(1) {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 250, 245, .84) 55%, rgba(255, 250, 245, .36) 100%),
        url('../images/spotlight-partner-bg.png');
    background-size: cover;
    background-position: right center;
}

.spotlight-card:nth-child(2) {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 250, 245, .84) 55%, rgba(255, 250, 245, .36) 100%),
        url('../images/spotlight-corporate-bg.png');
    background-size: cover;
    background-position: right center;
}

.spotlight-card:nth-child(3) {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 250, 245, .84) 55%, rgba(255, 250, 245, .36) 100%),
        url('../images/spotlight-regional-bg.png');
    background-size: cover;
    background-position: right center;
}

.spotlight-card:nth-child(4) {
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 250, 245, .84) 55%, rgba(255, 250, 245, .36) 100%),
        url('../images/spotlight-quality-bg.png');
    background-size: cover;
    background-position: right center;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    right: -34px;
    bottom: -38px;
    width: 120px;
    height: 120px;
    border: 18px solid rgba(232, 93, 4, 0.06);
    border-radius: 50%;
    transition: transform .45s ease;
}

.spotlight-card:hover {
    transform: none;
    border-color: #e85d04;
    box-shadow: 0 16px 34px rgba(232, 93, 4, 0.16);
}

.spotlight-card:hover::after {
    transform: none;
}

.spotlight-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .5px;
}

.spotlight-brand i,
.spotlight-brand svg {
    width: 30px;
    height: 30px;
}

.spotlight-brand-orange { color: #e85d04; }
.spotlight-brand-brown { color: #4a2f1d; }
.spotlight-brand-green { color: #25835b; }
.spotlight-brand-purple { color: #7c4d9e; }

.spotlight-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    color: #c84e03;
    background: #fff0e5;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.spotlight-card h3 {
    margin: 0 0 12px;
    color: #2f1b10;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    line-height: 1.4;
}

.spotlight-card p {
    margin: 0 0 24px;
    color: #6f5b4e;
    font-size: 14px;
    line-height: 1.7;
}

.spotlight-read-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding: 11px 17px;
    color: #fff;
    background: linear-gradient(135deg, #f06a0b, #e34f00);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(232, 93, 4, 0.2);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.spotlight-read-btn:hover {
    color: #fff;
    transform: translateX(3px);
    box-shadow: 0 8px 18px rgba(232, 93, 4, 0.3);
}

.spotlight-read-btn i,
.spotlight-read-btn svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 992px) {
    .spotlight-card {
        flex-basis: calc((100% - 22px) / 2);
        min-width: 300px;
    }
}

@media (max-width: 600px) {
    .sihipak-spotlight-section {
        padding: 30px 0 34px;
    }

    .spotlight-section-header {
        align-items: center;
        padding-bottom: 48px;
    }

    .spotlight-arrows {
        top: auto;
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
    }

    .spotlight-ornate-title .ornate-title-box {
        padding-left: 22px;
        padding-right: 22px;
    }

    .spotlight-ornate-title .ornate-title-text {
        font-size: 25px;
    }

    .spotlight-intro {
        margin-top: 12px;
        font-size: 13px;
    }

    .spotlight-card {
        flex-basis: 88%;
        min-width: 280px;
        min-height: 320px;
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spotlight-track {
        scroll-behavior: auto;
    }

    .spotlight-card,
    .spotlight-card::after,
    .spotlight-read-btn {
        transition: none;
    }
}

/* Regional Favorites Section */
.regional-favorites-section {
    background-color: #FEF9F3;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #f0e6dc;
}

@media (max-width: 600px) {
    .regional-favorites-section {
        padding: 24px 0;
    }
}

.regional-favorites-section .regional-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4a2f1d;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.regional-favorites-section .regional-ornate-title {
    margin: 0 0 25px;
}

.regional-title-link {
    color: inherit;
    text-decoration: none;
}

.regional-title-link:hover {
    color: inherit;
}

.regional-scroll-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px 20px 20px;
    margin-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #e85d04 transparent;
    -webkit-overflow-scrolling: touch;
}

.regional-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.regional-scroll-container::-webkit-scrollbar-thumb {
    background-color: #e85d04;
    border-radius: 4px;
}

.regional-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: regionalCardFloat 3.6s ease-in-out infinite;
}

.regional-item:hover {
    animation-play-state: paused;
    transform: translateY(-8px);
    filter: drop-shadow(0 10px 12px rgba(232, 93, 4, 0.14));
}

.regional-item:nth-child(2n) { animation-delay: -0.9s; }
.regional-item:nth-child(3n) { animation-delay: -1.8s; }
.regional-item:nth-child(4n) { animation-delay: -2.7s; }

@keyframes regionalCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.regional-icon-wrapper {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.regional-item:hover .regional-icon-wrapper {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .regional-item {
        animation: none;
    }
}

.regional-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.regional-icon-wrapper .regional-icon {
    width: 40px;
    height: 40px;
    color: var(--primary, #e85d04);
}

.regional-name {
    font-size: 13px;
    color: #4a2f1d;
    font-weight: 500;
    display: none;
}

.regional-name.highlight-orange {
    color: var(--primary, #e85d04);
    font-weight: 700;
}

.home-regional-carousel-shell {
    position: relative;
    padding: 0 52px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.home-regional-carousel-shell .regional-scroll-container {
    display: flex;
    gap: 24px;
    padding: 14px 10px 24px;
    margin-bottom: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-regional-carousel-shell .regional-scroll-container::-webkit-scrollbar {
    display: none;
}

.home-regional-carousel-shell .regional-item {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    justify-content: center;
    padding: 12px;
    scroll-snap-align: start;
}

.home-regional-carousel-shell .regional-item { display: none; }
.home-regional-carousel-shell .regional-item:nth-child(2),
.home-regional-carousel-shell .regional-item:nth-child(3),
.home-regional-carousel-shell .regional-item:nth-child(4),
.home-regional-carousel-shell .regional-item:nth-child(5),
.home-regional-carousel-shell .regional-item:nth-child(8),
.home-regional-carousel-shell .regional-item:nth-child(9),
.home-regional-carousel-shell .regional-item:nth-child(14),
.home-regional-carousel-shell .regional-item:nth-child(26) { display: flex; }

.home-regional-carousel-shell .regional-icon-wrapper {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.home-regional-carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    background: #e85d04;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(232, 93, 4, .28);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .25s ease, box-shadow .25s ease;
}

.home-regional-carousel-btn:hover {
    background: #c94e03;
    box-shadow: 0 9px 22px rgba(232, 93, 4, .36);
}

.home-regional-carousel-btn svg {
    width: 20px;
    height: 20px;
}

.home-regional-prev { left: 0; }
.home-regional-next { right: 0; }

@media (max-width: 1024px) {
    .home-regional-carousel-shell .regional-item { flex-basis: calc((100% - 24px) / 2); min-width: calc((100% - 24px) / 2); }
}

@media (max-width: 600px) {
    .home-regional-carousel-shell { padding: 0 38px; margin-top: 15px; margin-bottom: 15px; }
    .home-regional-carousel-shell .regional-scroll-container { gap: 12px; padding-bottom: 15px; margin-bottom: 0; }
    .home-regional-carousel-shell .regional-item { flex-basis: calc((100% - 12px) / 2); min-width: calc((100% - 12px) / 2); padding: 12px; }
    .home-regional-carousel-shell .regional-icon-wrapper { max-width: 190px; }
    .home-regional-carousel-btn { box-shadow: none !important; }
}


.regional-footer {
    font-size: 15px;
    font-weight: 700;
    color: #4a2f1d;
    margin-top: 10px;
}

/* Quick Links Section */
.quick-links-section {
    background-color: #FFF1ED; /* Light pinkish background */
    padding: 30px 20px;
    margin: 20px 30px;
    border-radius: 40px; /* Side curve design */
    border-top: 1px solid #ebdcd0;
    font-size: 13px;
    line-height: 1.8;
}

.quick-links-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quick-links-title i {
    color: var(--primary, #e85d04);
    width: 20px;
    height: 20px;
}

.quick-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ql-row {
    display: flex;
    gap: 15px;
}

.ql-category {
    color: var(--primary, #e85d04);
    font-weight: 600;
    min-width: 120px;
    flex-shrink: 0;
}

.ql-links {
    color: #666;
}

.ql-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    font-style: italic;
}

.ql-links a:hover {
    color: var(--primary, #e85d04);
}

.ql-separator {
    margin: 0 4px;
    color: #999;
}

@media (max-width: 768px) {
    .quick-links-section {
        margin: 20px 15px 40px !important;
        padding: 15px;
        border-radius: 20px;
    }
    .catalog-login-footer {
        margin-top: 40px !important;
    }
    .catalog-footer-logo {
        margin-top: 10px !important;
    }
    .quick-links-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        white-space: normal;
        padding-bottom: 5px;
    }
    .ql-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 8px;
    }
    .ql-category {
        min-width: auto;
    }
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
    filter: invert(1) hue-rotate(180deg);
    background-color: #ffffff; /* Ensures body has white bg to invert to black */
}
[data-theme="dark"] img, 
[data-theme="dark"] picture, 
[data-theme="dark"] video,
[data-theme="dark"] .category-image {
    filter: invert(1) hue-rotate(180deg);
    background-color: #ffffff;
    border-radius: 4px;
}
