/* ==========================================================================
   MILAN PLUS — UNIFIED FRONTEND CUSTOM STYLESHEET
   This file consolidates all custom typography, responsive structures, 
   overrides, and page-level styles into a single cacheable, performant asset.
   ========================================================================== */

/* ==========================================================================
   1. CORE VARIABLES & GLOBAL OVERRIDES
   ========================================================================== */
:root {
    --theme-color: #E31837;
    --theme-color2: #1A1A1A;
    --title-color: #1A1A1A;
    --body-color: #4A4A4A;
    --title-font: "Inter", sans-serif !important;
    --body-font: "Inter", sans-serif !important;
    --th-body-background: #F8F9FA;
}

body {
    font-family: var(--body-font) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--title-font) !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
}

/* Corporate Font Sizes */
h1, .h1 {
    font-size: 40px !important;
    line-height: 1.2 !important;
}

h2, .h2 {
    font-size: 32px !important;
    line-height: 1.3 !important;
}

h3, .h3 {
    font-size: 28px !important;
    line-height: 1.3 !important;
}

h4, .h4 {
    font-size: 22px !important;
    line-height: 1.4 !important;
}

h5, .h5 {
    font-size: 18px !important;
    line-height: 1.4 !important;
}

h6, .h6 {
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* Tighten Vertical Spacing for Corporate Look */
.space {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.space-top {
    padding-top: 60px !important;
}

.space-bottom {
    padding-bottom: 60px !important;
}

/* Responsive Typography and Spacing for Mobile/Tablet */
@media (max-width: 768px) {
    h1, .h1 { font-size: 28px !important; }
    h2, .h2 { font-size: 22px !important; }
    h3, .h3 { font-size: 18px !important; }
    h4, .h4 { font-size: 16px !important; }
    h5, .h5 { font-size: 14px !important; }
    h6, .h6 { font-size: 13px !important; }
    
    .space {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .space-top {
        padding-top: 40px !important;
    }
    .space-bottom {
        padding-bottom: 40px !important;
    }
}

/* Modern UI Global Overrides */
.th-btn {
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
    padding: 12px 24px !important;
}

.form-control,
.form-select {
    border-radius: 4px !important;
}

/* Custom Livewire Progress Bar */
#nprogress .bar {
    background: var(--theme-color) !important;
    height: 3px !important;
}

#nprogress .peg {
    box-shadow: 0 0 10px var(--theme-color), 0 0 5px var(--theme-color) !important;
}

#nprogress .spinner-icon {
    border-top-color: var(--theme-color) !important;
    border-left-color: var(--theme-color) !important;
}

.text-inherit {
    color: inherit !important;
    text-decoration: none !important;
}


/* ==========================================================================
   2. HEADER, MENUS, NAVIGATION & MOBILE FOOTER
   ========================================================================== */
.hdr-user-btn:hover {
    background: #f5f5f5 !important;
}

.hdr-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    animation: dropFadeUp 0.25s ease-out;
}

.hdr-user-dropdown.open {
    display: block;
}

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

.hdr-dropdown-header {
    padding: 14px 16px 10px;
}

.hdr-dropdown-divider {
    border-top: 1px solid #f0f0f0;
    margin: 4px 0;
}

.hdr-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
    width: 100%;
}

.hdr-dropdown-item i {
    width: 16px;
    font-size: 14px;
    color: #999;
}

.hdr-dropdown-item:hover {
    background: #f8f8f8;
    color: var(--theme-color);
}

.hdr-dropdown-item:hover i {
    color: var(--theme-color);
}

/* Header Nav Menu Links */
.nav-menu-links {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu-links li {
    margin: 0 !important;
}

.nav-menu-links li a {
    white-space: nowrap;
    color: #111;
    font-weight: 500;
    transition: all 0.2s;
    padding: 10px 0;
    display: block;
}

.nav-menu-links li a:hover {
    color: var(--theme-color);
}

@media (max-width: 1400px) {
    .nav-menu-links {
        gap: 15px;
        font-size: 14px;
    }
}

@media (max-width: 1250px) {
    .nav-menu-links {
        gap: 10px;
        font-size: 13px;
    }
    .category-menu {
        padding: 10px 12px !important;
        font-size: 12px;
    }
}

@media (max-width: 1300px) {
    .category-col {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .nav-menu-links {
        gap: 8px;
        font-size: 12px;
    }
}

/* Mega Menu Structure */
.nav-menu-links>li.mp-has-mega-menu {
    position: static !important;
}

.mp-mega-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--theme-color);
    padding: 50px 0;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu-links>li.mp-has-mega-menu:hover .mp-mega-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mp-mega-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.mp-mega-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.mp-mega-column h4 {
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: #000 !important;
    margin-bottom: 25px !important;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 1px;
    position: relative;
}

.mp-mega-column h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--theme-color);
}

.mp-mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mp-mega-column ul li {
    margin-bottom: 15px !important;
    display: block !important;
    width: 100% !important;
}

.mp-mega-column ul li a {
    font-size: 15px !important;
    color: #444 !important;
    padding: 0 !important;
    display: flex !important;
    width: 100% !important;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease !important;
    font-weight: 400 !important;
    text-decoration: none !important;
}

.mp-mega-column ul li a:hover {
    color: var(--theme-color) !important;
    transform: translateX(8px);
}



/* Sub-Menu Polish */
.nav-menu-links .sub-menu {
    border-top: 3px solid var(--theme-color) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    padding: 20px 0 !important;
    min-width: 240px !important;
    border-radius: 0 0 10px 10px !important;
    animation: dropFadeUp 0.3s ease-out;
}

.nav-menu-links .sub-menu li a {
    padding: 16px 30px !important;
    font-size: 15px !important;
    color: #333 !important;
    font-weight: 500 !important;
    display: block !important;
    line-height: 1.4 !important;
}

.nav-menu-links .sub-menu li a:hover {
    background: rgba(227, 24, 55, 0.05) !important;
    color: var(--theme-color) !important;
    padding-left: 20px !important;
    border-left: 3px solid var(--theme-color);
}

.main-menu ul.sub-menu li a:before,
.th-mobile-menu ul li a:before {
    display: none !important;
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 10px calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 99999;
    border-top: 1px solid #eee;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    transition: all 0.2s ease;
    padding-bottom: 5px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--theme-color);
}

.nav-item-center-wrap {
    position: relative;
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.nav-item-center {
    position: absolute;
    bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 5px solid #fff;
}

.nav-item-center:hover,
.nav-item-center.active {
    transform: translateY(-8px) scale(1.05);
    background: #c0142d;
    color: #fff;
}

@media (max-width: 991px) {
    body {
        padding-top: 80px !important;
        padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px)) !important;
    }

    .th-header.header-layout2 {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        z-index: 10000 !important;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .th-header .header-button .cart-badge {
        display: none !important;
    }

    .sticky-wrapper.sticky {
        position: relative !important;
        box-shadow: none !important;
        animation: none !important;
    }

    .th-header.header-layout2 .menu-area {
        padding: 10px 0 !important;
    }

    .header-logo img {
        max-height: 55px !important;
    }
}

/* Floating contact widgets */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99998;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--theme-color);
}

.whatsapp-btn {
    background: #25d366;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: mp-pulse 2s infinite;
    opacity: 0.6;
}

@keyframes mp-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 991px) {
    .floating-contact-wrap {
        bottom: 105px;
        left: 15px;
        right: auto;
        flex-direction: row;
        gap: 10px;
    }
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* ==========================================================================
   3. PRODUCT CARDS & E-COMMERCE GRIDS
   ========================================================================== */


/* Pill Qty Selector */
.mp-qty-pill {
    display: inline-flex;
    align-items: center;
    background: var(--theme-color);
    border-radius: 50px;
    padding: 5px 6px;
    gap: 4px;
    width: 100%;
    justify-content: space-between;
    min-width: 110px;
}

.mp-qty-pill.mp-qty-loading {
    opacity: 0.7;
    pointer-events: none;
}

.mp-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: background 0.15s;
    flex-shrink: 0;
}

.mp-qty-btn:hover {
    background: rgba(255, 255, 255, 0.45);
}

.mp-qty-num {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    flex: 1;
    text-align: center;
    min-width: 24px;
}

/* Add To Cart Buttons */
.mp-atc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 6px;
    white-space: nowrap;
}

.mp-atc-btn:hover:not(:disabled) {
    border-color: var(--theme-color);
    background: var(--theme-color);
    color: #fff;
}

.mp-atc-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* Red Accent Section Headers */
.mp-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mp-section-head h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 !important;
    position: relative;
    padding-left: 14px;
}

.mp-section-head h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--theme-color);
    border-radius: 4px;
}

.mp-section-head a {
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
}

.mp-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: #444;
}

.mp-nav-btn:hover {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

/* Premium Corporate Product Card */
.corporate-product-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.corporate-product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.corporate-product-card .product-img-wrap {
    position: relative;
    background: #fafafa;
    padding: 16px;
    text-align: center;
    flex-shrink: 0;
}

.corporate-product-card .discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--theme-color);
    color: #fff;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    z-index: 2;
}

.corporate-product-card .wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.corporate-product-card .wishlist-btn:hover {
    border-color: var(--theme-color);
    background: rgba(227, 24, 55, 0.05);
}

.corporate-product-card .product-content {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.corporate-product-card .product-cat {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.corporate-product-card .product-title {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.corporate-product-card .product-title a {
    color: #222;
    text-decoration: none;
}

.corporate-product-card .product-title a:hover {
    color: var(--theme-color);
}


.corporate-product-card .product-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    margin-top: auto;
}

.corporate-product-card .product-price del {
    font-size: 12px;
    font-weight: 400;
    color: #bbb;
    margin-left: 4px;
}

.corporate-product-card:hover .product-title a {
    color: var(--theme-color) !important;
}

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

@media (max-width: 575px) {
    .corporate-product-card .product-img-wrap {
        padding: 10px !important;
    }
    .corporate-product-card .product-img-wrap img {
        height: 120px !important;
    }
    .corporate-product-card .product-content {
        padding: 8px 10px 10px !important;
    }
    .corporate-product-card .product-cat {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }
    .corporate-product-card .product-title {
        font-size: 12px !important;
        height: 34px !important;
        margin-bottom: 4px !important;
    }
    .corporate-product-card .product-price {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    .corporate-product-card .product-price del {
        font-size: 11px !important;
    }
    
    .mp-atc-btn {
        padding: 6px 8px !important;
        font-size: 11px !important;
        gap: 4px !important;
    }
    .mp-qty-pill {
        padding: 3px 4px !important;
        min-width: 90px !important;
        gap: 2px !important;
    }
    .mp-qty-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 14px !important;
    }
    .mp-qty-num {
        font-size: 13px !important;
        min-width: 18px !important;
    }
}


/* ==========================================================================
   4. SECTIONS: TRUST BADGES & CATEGORIES LIST
   ========================================================================== */
.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.trust-badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(227, 24, 55, 0.15);
}
.trust-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(227, 24, 55, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--theme-color);
    font-size: 20px;
    transition: all 0.3s ease;
}
.trust-badge-card:hover .trust-badge-icon {
    background: var(--theme-color);
    color: #fff;
}
.trust-badge-info {
    min-width: 0;
}
.trust-badge-info h6 {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin: 0 0 2px !important;
    color: #111;
    line-height: 1.3 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.trust-badge-info p {
    font-size: 12px;
    color: #999;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .trust-badge-card {
        padding: 15px 12px;
        gap: 10px;
    }
    .trust-badge-info h6 {
        font-size: 13px !important;
    }
    .trust-badge-info p {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .trust-badge-card {
        flex-direction: column;
        text-align: center;
        padding: 16px 8px;
        gap: 10px;
    }
    .trust-badge-info h6 {
        font-size: 12px !important;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    .trust-badge-info p {
        font-size: 10px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

/* Category Grid & Cards */
.category-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-color);
}

.cat-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #fafafa;
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .cat-img-wrap img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 20px 15px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .cat-overlay {
    opacity: 1;
}

.cat-overlay span {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-info {
    padding: 15px;
    text-align: center;
}

.cat-info h5 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 !important;
    transition: color 0.3s ease;
}

.category-card:hover .cat-info h5 {
    color: var(--theme-color) !important;
}


/* ==========================================================================
   5. SECTIONS: RIDER COLLECTION & BUTTER STYLES
   ========================================================================== */
.butter-section {
    font-family: 'Outfit', sans-serif;
    padding: 100px 0;
    background: #faf9f6;
    position: relative;
    overflow: hidden;
}

.butter-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #fdf2d0;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #ffe4e4;
    bottom: -50px;
    right: -50px;
}

.annotation-left {
    position: absolute;
    top: 18%;
    left: 8%;
    z-index: 10;
    opacity: 0.8;
}

.annotation-right {
    position: absolute;
    top: 22%;
    right: 10%;
    z-index: 10;
    opacity: 0.8;
    text-align: right;
}

.handwritten-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    color: #111;
    display: block;
    margin-top: -15px;
}

.butter-badge-wrapper {
    display: flex;
    justify-content: center;
}

.butter-badge {
    background: #fff;
    color: #b08d2b;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.butter-title {
    font-size: 72px !important;
    font-weight: 900 !important;
    color: #111;
    line-height: 1 !important;
    letter-spacing: -3px;
    margin-bottom: 25px !important;
}

.butter-title .text-accent {
    color: #ff6b6b;
}

.butter-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.butter-card {
    display: block;
    height: 450px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: #eee;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
}

.butter-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.butter-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
}

.butter-card-content h5 {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.butter-card-content span {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block !important;
    visibility: visible !important;
}

.butter-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.butter-card:hover .butter-card-image {
    transform: scale(1.1);
}

.butter-btn-primary {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff !important;
    padding: 20px 50px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.butter-btn-primary .btn-text {
    color: #fff !important;
    display: inline-block !important;
    visibility: visible !important;
}

.butter-btn-primary:hover {
    background: #ff6b6b;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    color: #fff !important;
}

.floating-svg {
    animation: float 4s ease-in-out infinite;
}

.floating-svg-alt {
    animation: float 5s ease-in-out infinite reverse;
}

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

@media (max-width: 992px) {
    .butter-title { font-size: 52px !important; }
    .butter-card { height: 380px; }
}

@media (max-width: 575px) {
    .butter-section {
        padding: 50px 0 !important;
    }
    .butter-badge {
        font-size: 10px !important;
        letter-spacing: 1px !important;
        padding: 6px 16px !important;
        line-height: 1.3 !important;
        text-align: center;
    }
    .butter-title {
        font-size: 32px !important;
        letter-spacing: -0.5px !important;
        line-height: 1.35 !important;
        margin-bottom: 15px !important;
    }
    .butter-subtitle {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    .butter-card {
        height: 320px !important;
        border-radius: 20px !important;
    }
    .butter-card-overlay {
        padding: 25px 20px !important;
    }
    .butter-card-content h5 {
        font-size: 18px !important;
    }
    .butter-card-content span {
        font-size: 12px !important;
    }
    .butter-btn-primary {
        padding: 14px 35px !important;
        font-size: 14px !important;
    }
}




/* ==========================================================================
   6. SECTIONS: PREMIUM PROMOS & GOOGLE REVIEWS
   ========================================================================== */
.promo-banner-v2 {
    position: relative;
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-banner-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.badge-red {
    background: #e31837 !important;
    color: #fff !important;
}

.badge-gold {
    background: #c9a050 !important;
    color: #fff !important;
}

.promo-title {
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    margin: 0 0 12px !important;
    line-height: 1.2 !important;
    font-family: 'Inter', sans-serif;
    display: block !important;
}

.promo-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.6;
}

.promo-btn {
    display: inline-flex !important;
    align-items: center;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    padding: 14px 28px !important;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: fit-content;
    color: #fff !important;
    visibility: visible !important;
}

.btn-red {
    background: #e31837 !important;
}

.btn-red:hover {
    background: #c2142e !important;
    transform: scale(1.05);
}

.btn-gold {
    background: #c9a050 !important;
}

.btn-gold:hover {
    background: #af8b43 !important;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .promo-banner-v2 {
        padding: 40px 30px;
    }
    .promo-title {
        font-size: 28px !important;
    }
    .promo-desc {
        font-size: 14px;
    }
}

/* Google Reviews Grid */
.google-review-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.google-review-card:hover {
    border-color: #dadce0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f3f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #5f6368;
    font-size: 14px;
}

.review-name {
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #202124;
}

.review-date {
    font-size: 12px;
    color: #70757a;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #3c4043;
    margin-bottom: 20px;
    height: 95px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.verified-badge {
    font-size: 11px;
    color: #1a73e8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}


/* ==========================================================================
   7. SHOP PAGE & SIDEBAR CONTROLS
   ========================================================================== */
.shop-sidebar {
    position: sticky;
    top: 20px;
}

.sb-widget {
    margin-bottom: 24px;
}

.sb-title {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.sb-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.sb-cat-list::-webkit-scrollbar {
    width: 4px;
}

.sb-cat-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.sb-cat-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.sb-cat-list::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color);
}

.sb-cat-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
}

.sb-cat-list li a:hover {
    background: #fef2f2;
    color: var(--theme-color);
}

.sb-cat-list li a.active {
    background: var(--theme-color);
    color: #fff;
    font-weight: 600;
}

.sb-cat-list li a span {
    font-size: 11px;
    color: #aaa;
    background: #f5f5f5;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.sb-cat-list li a.active span {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.sb-input {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 13px;
    outline: none;
    background: #fff;
    transition: border 0.15s;
}

.sb-input:focus {
    border-color: var(--theme-color);
}

.sb-filter-btn {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px;
    background: var(--theme-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sb-filter-btn:hover {
    opacity: 0.9;
}

.sb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sb-tags a {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    color: #555;
    text-decoration: none;
    transition: all 0.15s;
}

.sb-tags a:hover,
.sb-tags a.active {
    background: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.shop-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px 16px;
}

.shop-sort-bar .result-count {
    font-size: 13px;
    color: #888;
}


/* ==========================================================================
   8. PRODUCT DETAILS PAGE TABS
   ========================================================================== */
.butter-tab {
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 30px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    opacity: 0.7;
    display: inline-block !important;
    visibility: visible !important;
}

.butter-tab.active {
    opacity: 1 !important;
    background: var(--theme-color) !important;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
}

.butter-tab:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #fff !important;
}


/* ==========================================================================
   9. AUTH PAGES: SIGN-IN & REGISTER CARDS
   ========================================================================== */
.auth-page {
    min-height: 100vh;
    background: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

.auth-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    padding: 48px 44px;
    width: 100%;
    max-width: 460px;
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111;
    text-align: center;
    margin-bottom: 6px !important;
}

.auth-subtitle {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 28px;
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 20px;
}

.auth-alert.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.auth-alert.danger {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    transition: border 0.15s;
    background: #fafafa;
}

.auth-form input:focus {
    border-color: var(--theme-color);
    background: #fff;
}

.remember-row {
    margin-bottom: 20px;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
}

.remember-label input {
    accent-color: var(--theme-color);
    width: 15px;
    height: 15px;
}

.forgot-link {
    font-size: 12px;
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}

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

.auth-btn {
    width: 100%;
    padding: 13px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.3px;
}

.auth-btn:hover {
    opacity: 0.9;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #888;
}

.auth-footer a {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Password Toggle Styles */
.password-toggle-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-toggle-wrapper input {
    padding-right: 45px !important;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    z-index: 10;
}

.password-toggle-btn:hover {
    color: var(--theme-color);
}


/* ==========================================================================
   10. SHOPPING CART, COUPONS & SUMMARY CARDS
   ========================================================================== */
.alert-bar { padding: 12px 18px; border-radius: 6px; font-size: 14px; }
.alert-bar.success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-bar.danger  { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

.empty-cart-box {
    text-align: center; padding: 80px 20px;
    background: #fff; border-radius: 8px; border: 1px solid #f0f0f0;
}
.empty-icon { font-size: 60px; color: #ddd; margin-bottom: 20px; }
.empty-cart-box h3 { font-size: 22px !important; color: #333; margin-bottom: 8px !important; }
.empty-cart-box p { color: #999; margin-bottom: 24px; font-size: 14px; }

/* Cart items list */
.cart-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 8px; overflow: hidden; }
.cart-card-header {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.2fr 1fr 40px;
    gap: 10px;
    padding: 12px 20px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; color: #888;
}
.cart-item {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.2fr 1fr 40px;
    gap: 10px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f8f8f8;
    transition: background 0.15s;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #fafafa; }

.cart-product-info { display: flex; align-items: center; gap: 14px; }
.cart-product-info img {
    width: 65px; height: 65px; object-fit: contain;
    border: 1px solid #f0f0f0; border-radius: 6px; background: #fff; padding: 5px;
    flex-shrink: 0;
}
.cart-product-name { font-size: 14px; font-weight: 500; color: #111; margin-bottom: 3px; line-height: 1.3; }
.cart-product-cat { font-size: 12px; color: #aaa; }
.cart-price { font-size: 14px; color: #555; }
.cart-subtotal { font-size: 15px; color: #111; }

.remove-btn {
    width: 30px; height: 30px; border: 1px solid #f0f0f0; border-radius: 50%;
    background: #fff; color: #ccc; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.15s;
}
.remove-btn:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }

/* Coupon blocks */
.coupon-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 8px; padding: 16px 20px; }
.coupon-form { display: flex; align-items: center; gap: 10px; }
.coupon-input {
    flex: 1; border: 1px solid #e5e5e5; border-radius: 4px;
    padding: 9px 14px; font-size: 14px; outline: none;
    transition: border 0.15s;
}
.coupon-input:focus { border-color: var(--theme-color); }
.coupon-apply-btn {
    padding: 9px 20px; background: var(--theme-color); color: #fff;
    border: none; border-radius: 4px; font-size: 14px; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: opacity 0.2s;
}
.coupon-apply-btn:hover { opacity: 0.9; }
.coupon-remove-btn {
    padding: 6px 14px; border: 1px solid #fca5a5; background: #fff;
    color: #dc2626; border-radius: 4px; font-size: 13px; cursor: pointer;
}

/* Order Summary panel */
.summary-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 8px; overflow: hidden; position: sticky; top: 90px; }
.summary-header {
    padding: 16px 20px; font-size: 15px; font-weight: 700;
    border-bottom: 1px solid #f0f0f0; background: #fafafa;
}
.summary-body { padding: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 14px; color: #555; }
.summary-row.discount { color: #22c55e; }
.summary-row.total { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 0; }
.summary-divider { border-top: 1px solid #f0f0f0; margin: 14px 0; }

.checkout-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 14px;
    background: var(--theme-color); color: #fff;
    border-radius: 6px; font-size: 15px; font-weight: 700;
    text-decoration: none; margin-top: 20px;
    transition: opacity 0.2s; letter-spacing: 0.3px;
}
.checkout-btn:hover { opacity: 0.9; color: #fff; }
.continue-shopping-btn {
    display: block; text-align: center; margin-top: 12px;
    font-size: 13px; color: #888; text-decoration: none;
    transition: color 0.2s;
}
.continue-shopping-btn:hover { color: var(--theme-color); }

@media (max-width: 767px) {
    .cart-card-header { display: none; }
    .cart-item {
        grid-template-columns: 1fr 40px;
        grid-template-rows: auto auto auto;
    }
    .cart-product-info { grid-column: 1; }
    .cart-remove { grid-column: 2; grid-row: 1; }
    .cart-price { display: none; }
    .cart-qty, .cart-subtotal { grid-column: 1; }
}


/* ==========================================================================
   11. ORDERS TRACKER & TIMELINES
   ========================================================================== */
.orders-table-card {
    background: #fff; border: 1px solid #f0f0f0;
    border-radius: 10px; overflow: hidden;
}
.orders-table-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.7fr 1fr 1fr 0.9fr 1.2fr;
    gap: 12px; padding: 12px 20px;
    background: #fafafa; border-bottom: 1px solid #f0f0f0;
    font-size: 11px; font-weight: 700;
    color: #888; text-transform: uppercase; letter-spacing: 0.5px;
}
.orders-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.7fr 1fr 1fr 0.9fr 1.2fr;
    gap: 12px; padding: 16px 20px;
    border-bottom: 1px solid #f8f8f8;
    align-items: center; transition: background 0.15s;
}
.orders-row:last-child { border-bottom: none; }
.orders-row:hover { background: #fafafa; }
.orders-col { display: flex; align-items: center; }
.order-badge {
    display: inline-flex; align-items: center;
    padding: 4px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 600; white-space: nowrap;
}
.order-action-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 12px; border-radius: 5px; font-size: 12px;
    font-weight: 600; text-decoration: none; transition: all 0.15s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}
.order-action-btn.primary {
    background: var(--theme-color); color: #fff;
}
.order-action-btn.primary:hover { opacity: 0.85; color: #fff; }
.order-action-btn.secondary {
    background: #f5f5f5; color: #555; border: 1px solid #eee;
}
.order-action-btn.secondary:hover { background: #eee; color: #333; }
.order-action-btn.danger {
    background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5;
}
.order-action-btn.danger:hover { background: #fee2e2; }

@media (max-width: 768px) {
    .orders-table-head { display: none; }
    .orders-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px; padding: 14px 16px;
    }
    .orders-col:nth-child(3) { display: none; }
}

/* Order Tracker Timeline */
.od-page-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

.tracking-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; padding: 24px 30px; }
.tracking-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 28px; }
.tracking-steps { display: flex; align-items: flex-start; position: relative; }
.tracking-step {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    position: relative; text-align: center;
}
.step-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: #f0f0f0; color: #bbb;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 8px; z-index: 2; position: relative;
    transition: all 0.3s;
}
.tracking-step.done .step-icon { background: #f0fdf4; color: #16a34a; }
.tracking-step.active .step-icon { background: var(--theme-color); color: #fff; box-shadow: 0 4px 12px rgba(227,24,55,0.25); }
.step-label { font-size: 12px; font-weight: 500; color: #aaa; }
.tracking-step.done .step-label { color: #16a34a; font-weight: 600; }
.tracking-step.active .step-label { color: var(--theme-color); font-weight: 700; }
.step-line {
    position: absolute;
    top: 22px; left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px; background: #e5e5e5; z-index: 1;
}
.step-line.done { background: #16a34a; }

/* Details Cards */
.od-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 10px; overflow: hidden; }
.od-card-header {
    padding: 14px 20px; font-size: 13px; font-weight: 700;
    color: #111; background: #fafafa; border-bottom: 1px solid #f0f0f0;
    text-transform: uppercase; letter-spacing: 0.4px;
}

.od-item-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; border-bottom: 1px solid #f8f8f8;
    gap: 12px;
}
.od-item-row:last-child { border-bottom: none; }
.od-item-name { font-size: 14px; font-weight: 500; color: #111; margin-bottom: 3px; }
.od-item-qty  { font-size: 12px; color: #999; }
.od-item-price { text-align: right; flex-shrink: 0; }

.od-totals { border-top: 1px solid #f0f0f0; padding: 16px 20px; }
.od-total-row { display: flex; justify-content: space-between; font-size: 14px; color: #555; margin-bottom: 10px; }
.od-total-row:last-child { margin-bottom: 0; }
.od-total-row.grand { font-size: 17px; font-weight: 700; color: #111; padding-top: 10px; border-top: 1px solid #f0f0f0; margin-top: 6px; }
.od-info-row { display: flex; justify-content: space-between; font-size: 13px; color: #666; margin-bottom: 12px; }
.od-info-row:last-child { margin-bottom: 0; }
.od-info-row span:first-child { color: #999; }


/* ==========================================================================
   12. TELEPHONE INPUT DROPDOWNS (intlTelInput OVERRIDES)
   ========================================================================== */
.iti {
    display: flex !important;
    gap: 10px;
    width: 100%;
}

.iti__flag-container {
    position: relative !important;
    width: auto !important;
}

.iti__selected-dial-code {
    display: none !important;
}

.iti__selected-flag {
    background: #fafafa !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 48px !important;
    width: 55px !important;
}

.iti--allow-dropdown input {
    padding-left: 52px !important;
}

.iti__country-list {
    z-index: 10000 !important;
    background-color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #eee !important;
    width: 300px !important;
}

.contact-input {
    padding-top: 12px;
    padding-right: 18px;
    padding-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fafafa;
    font-size: 14px;
    width: 100%;
}


/* ==========================================================================
   13. COMPONENT: LIVEWIRE SEARCH DROPDOWN & CMS PAGES
   ========================================================================== */
.suggestion-item:hover {
    background: #f8f8f8 !important;
}
.suggestion-item:hover div:first-child + div div:first-child {
    color: var(--theme-color) !important;
}
.search-form input:focus {
    border-color: var(--theme-color) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(227, 24, 55, 0.08);
}

/* CMS Page layouts */
.cms-page-content h2, .cms-page-content h3, .cms-page-content h4 {
    color: var(--title-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}
.cms-page-content h2 { font-size: 28px; }
.cms-page-content h3 { font-size: 22px; }
.cms-page-content p { margin-bottom: 20px; }
.cms-page-content ul, .cms-page-content ol { margin-bottom: 20px; padding-left: 20px; }
.cms-page-content li { margin-bottom: 8px; }

/* ==========================================================================
   14. EXTRACTED INLINE STYLES REFACTORING
   ========================================================================== */

/* Search Dropdown Component Classes */
.search-form-wrap {
    width: 100%;
    position: relative;
}
.search-form {
    width: 100%;
    position: relative;
    margin: 0;
}
.search-form input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    outline: none;
    height: 48px;
    font-size: 14px;
    transition: all 0.3s;
    background: #fafafa;
}
.search-submit-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 40px;
    background: var(--theme-color);
    border: none;
    padding: 0 20px;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}
.search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #eee;
}
.suggestions-header {
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f5f5f5;
    background: #fafafa;
}
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f8f8f8;
    transition: background 0.2s;
}
.suggestion-image-wrap {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}
.suggestion-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.suggestion-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}
.suggestion-info {
    flex: 1;
    min-width: 0;
}
.suggestion-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.suggestion-price {
    font-size: 12px;
    color: var(--theme-color);
    font-weight: 700;
}
.suggestion-view-all {
    display: block;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    background: #fff;
    text-decoration: none;
    border-top: 1px solid #eee;
}
.suggestion-empty {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}
.suggestion-empty-icon {
    font-size: 24px;
    opacity: 0.5;
}

/* Home Page Specific Classes */
.hero-slider-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.hero-slide-link {
    border-radius: 12px;
}
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.hero-slide-fallback {
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
}
.trust-badges-section {
    padding: 30px 0;
    background: var(--th-body-background);
}
.categories-section {
    padding: 20px 0 50px;
}
.category-slider-wrap {
    padding-bottom: 10px;
}
.category-item-link {
    display: block;
    color: var(--title-color);
    text-decoration: none;
}
.category-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 2px;
}
.category-item-link:hover .category-img-wrap {
    border-color: var(--theme-color);
    transform: scale(1.05);
}
.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-name {
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
    color: #444;
}
.category-count {
    display: block;
    font-size: 11px;
    color: #bbb;
    margin-top: 2px;
}
.rider-collection-slider-wrap {
    padding: 40px 0;
    overflow: visible;
}
.rider-category-sliders-section {
    background: #fff;
    padding-top: 80px;
}
.category-product-row {
    margin-bottom: 3rem !important;
}
.category-product-header {
    border-bottom: 2px solid #f5f5f5;
}
.category-product-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: #111;
    letter-spacing: 1px;
}
.category-product-view-all {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.category-products-slider-wrap {
    padding: 10px 5px 20px;
}
.promo-banners-section {
    padding: 20px 0 80px;
}
.promo-banner-v2.nutrition-banner {
    background: linear-gradient(135deg, #141b33 0%, #0a0e1a 100%);
}
.promo-banner-v2.leather-banner {
    background: linear-gradient(135deg, #322014 0%, #1a110a 100%);
}
.deco-circle {
    position: absolute;
    border-radius: 50%;
}
.deco-circle.circle-1 {
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
}
.deco-circle.circle-2 {
    bottom: -30px;
    right: 20%;
    width: 120px;
    height: 120px;
}
.nutrition-banner .deco-circle.circle-1 {
    background: rgba(227, 24, 55, 0.12);
}
.nutrition-banner .deco-circle.circle-2 {
    background: rgba(227, 24, 55, 0.08);
}
.leather-banner .deco-circle.circle-1 {
    background: rgba(201, 160, 80, 0.10);
}
.leather-banner .deco-circle.circle-2 {
    background: rgba(201, 160, 80, 0.06);
}
.gender-collection-section {
    padding: 60px 0;
}
.gender-collection-section.bg-alt {
    background: #fafafa;
}
.gender-promo-card {
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.gender-promo-card.women-promo {
    background: linear-gradient(180deg, #fce4ec 0%, #f06292 100%);
}
.gender-promo-card.men-promo {
    background: linear-gradient(180deg, #e3f2fd 0%, #1976d2 100%);
}
.gender-promo-card .circle-1 {
    position: absolute;
    top: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}
.gender-promo-card.women-promo .circle-1 {
    right: -50px;
}
.gender-promo-card.men-promo .circle-1 {
    left: -50px;
}
.gender-promo-card .circle-2 {
    position: absolute;
    bottom: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}
.gender-promo-card.women-promo .circle-2 {
    left: -30px;
}
.gender-promo-card.men-promo .circle-2 {
    right: -30px;
}
.gender-promo-card .promo-inner {
    position: relative;
    z-index: 1;
}
.gender-promo-card .promo-icon {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}
.gender-promo-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 24px;
}
.gender-promo-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 25px;
}
.gender-promo-card .promo-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gender-promo-card.women-promo .promo-btn {
    color: #f06292;
}
.gender-promo-card.men-promo .promo-btn {
    color: #1976d2;
}
.gender-slider-wrap {
    padding: 10px 5px 20px 5px;
    margin: -10px -5px -20px -5px;
}

/* Contact Page Specific Classes */
.contact-section {
    background: #fafafa;
    padding: 80px 0;
}
.contact-badge {
    display: inline-block;
    font-size: 11px;
    padding: 5px 14px;
    background: rgba(227, 24, 55, 0.07);
    color: var(--theme-color);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 20px;
}
.contact-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}
.text-accent-color {
    color: var(--theme-color);
}
.contact-desc {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 40px;
}
.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-info-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-card .contact-info-icon-wrap i {
    color: var(--theme-color);
    font-size: 18px;
}
.contact-info-card .contact-info-icon-wrap i.fa-map-marker-alt {
    font-size: 20px;
}
.contact-info-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 15px;
}
.contact-info-text {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}
.contact-social-wrap {
    margin-top: 50px;
}
.contact-social-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
}
.contact-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}
.contact-social-link.fb { color: #3b5998; }
.contact-social-link.ig { color: #e1306c; }
.contact-social-link.tw { color: #1da1f2; }
.contact-social-link.wa { color: #25d366; }
.contact-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff !important;
}
.contact-social-link.fb:hover { background: #3b5998; }
.contact-social-link.ig:hover { background: #e1306c; }
.contact-social-link.tw:hover { background: #1da1f2; }
.contact-social-link.wa:hover { background: #25d366; }

.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.contact-form-title {
    font-weight: 700;
    margin-bottom: 30px;
}
.contact-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 10px;
}
.contact-field-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    display: block;
}
.contact-form-card textarea.contact-input {
    height: auto;
}
.contact-submit-btn {
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700 !important;
}

.faq-section {
    padding: 80px 0;
    background: #fff;
}
.faq-badge {
    display: inline-block;
    font-size: 11px;
    padding: 5px 14px;
    background: rgba(227, 24, 55, 0.07);
    color: var(--theme-color);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 15px;
}
.faq-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}
.faq-card {
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}
.faq-card-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}
.faq-card-title {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
}
.faq-card-icon {
    font-size: 12px;
    color: #bbb;
    transition: transform 0.3s;
}
.faq-card-header[aria-expanded="true"] .faq-card-icon {
    transform: rotate(180deg);
}
.faq-card-body {
    padding: 20px 25px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

.promise-section {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}
.promise-icon {
    font-size: 40px;
    color: var(--theme-color);
    margin-bottom: 20px;
}
.promise-title {
    font-weight: 700;
    margin-bottom: 10px;
}
.promise-desc {
    font-size: 14px;
    color: #777;
}
.contact-map-wrap {
    height: 450px;
    width: 100%;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
    transition: all 0.5s;
}
.contact-map-wrap:hover {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

/* CMS Page and page.blade.php Specific Classes */
.cms-page-section {
    padding: 80px 0;
}
.cms-page-content {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.butter-container-fluid {
    position: relative;
    z-index: 5;
    padding: 0 40px;
}

/* Google Reviews Section (Social Proof) */
.google-reviews-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.google-logo-sm {
    width: 24px;
    height: 24px;
}
.google-reviews-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 800;
    color: #5f6368;
}
.google-reviews-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #202124;
    line-height: 1.1 !important;
    margin-bottom: 15px !important;
}
.google-rating-score {
    font-size: 48px;
    font-weight: 900;
    color: #202124;
    line-height: 1;
}
.google-stars {
    color: #fbbc04;
}
.google-rating-count {
    font-size: 13px;
    color: #5f6368;
    font-weight: 600;
}
.google-divider {
    width: 1px;
    height: 80px;
    background: #e0e0e0;
}
.google-review-btn {
    background: #202124 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}
.google-review-btn:hover {
    background: #3c4043 !important;
    color: #fff !important;
}
.google-review-slider-wrap {
    padding: 20px 5px 40px;
    margin: 0 -5px;
}
.google-stars-sm {
    color: #fbbc04;
    font-size: 12px;
}

/* Blog Area Specific Classes */
.blog-section {
    padding: 80px 0;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.blog-card-img {
    height: 200px;
    background-color: #f5f5f5;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.blog-card-body {
    padding: 24px;
}
.blog-card-category {
    font-size: 11px;
    color: var(--theme-color);
    font-weight: 700;
    text-transform: uppercase;
}
.blog-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 10px 0 15px !important;
    line-height: 1.4 !important;
    height: 50px;
    overflow: hidden;
}
.blog-card-title-link {
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-title-link:hover {
    color: var(--theme-color);
}
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-card-date {
    font-size: 12px;
    color: #bbb;
}
.blog-card-more-link {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card-more-link:hover {
    color: var(--theme-color);
}

/* Brands Area Specific Classes */
.brands-section {
    padding: 40px 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 80px;
}
.brand-logo-img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}
.brand-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.brand-logo-fallback {
    font-weight: 700;
    color: #ccc;
    font-size: 18px;
}

/* Newsletter / CTA Specific Classes */
.newsletter-section {
    padding: 0 0 80px;
}
.newsletter-cta-card {
    background: linear-gradient(135deg, var(--theme-color), #a01028);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(227,24,55,0.2);
}
.newsletter-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.newsletter-circle.circle-1 {
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
}
.newsletter-circle.circle-2 {
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
}
.newsletter-content-wrap {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-icon {
    font-size: 40px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    display: block;
}
.newsletter-title {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}
.newsletter-desc {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}
.newsletter-form {
    background: rgba(255,255,255,0.1);
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.newsletter-btn {
    background: #fff !important;
    color: var(--theme-color) !important;
    padding: 10px 25px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    border: none !important;
    transition: background 0.2s, transform 0.2s;
}
.newsletter-btn:hover {
    background: #f8f9fa !important;
    transform: scale(1.03);
}

/* ==========================================================================
   9. FAQ & BUYING GUIDE PREMIUM STYLING
   ========================================================================== */
.faq-buying-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%) !important;
}
.buying-guide-wrap .sub-title, .faq-accordion-wrap .sub-title {
    display: inline-block;
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}
.buying-guide-wrap .sub-title::before, .faq-accordion-wrap .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: var(--theme-color);
}
.buying-guide-wrap .section-title, .faq-accordion-wrap .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}
.buying-guide-wrap .section-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.buying-matrix-table {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.buying-matrix-table th {
    background: #1a1a1a !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 20px 24px !important;
    border: none !important;
}
.buying-matrix-table td {
    padding: 18px 24px !important;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f2f5;
    vertical-align: middle;
    transition: all 0.2s ease;
}
.buying-matrix-table tbody tr {
    transition: all 0.2s ease;
}
.buying-matrix-table tbody tr:hover {
    background-color: rgba(191, 148, 86, 0.03) !important;
}
.buying-matrix-table tbody tr:hover td {
    color: #111;
}
.buying-matrix-table tr:last-child td {
    border-bottom: none;
}
.custom-faq-accordion .accordion-item {
    border: 1px solid rgba(220, 224, 230, 0.7) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff !important;
}
.custom-faq-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    border-color: var(--theme-color) !important;
}
.custom-faq-accordion .accordion-button {
    font-weight: 700 !important;
    font-size: 16.5px !important;
    color: #1a1a1a !important;
    background: #ffffff !important;
    padding: 22px 28px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    gap: 15px !important;
}
.custom-faq-accordion .accordion-button::after {
    width: 34px !important;
    height: 34px !important;
    background-color: #f0f2f5 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 14px !important;
    border-radius: 50% !important;
    content: "" !important;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    flex-shrink: 0 !important;
}
.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: var(--theme-color) !important;
    font-weight: 800 !important;
}
.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: var(--theme-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E") !important;
    transform: none !important;
}
.custom-faq-accordion .accordion-body {
    padding: 0 28px 28px 28px !important;
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    background: #ffffff !important;
    border-top: none !important;
    animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 991px) {
    .faq-buying-section {
        padding: 60px 0 !important;
    }
    .buying-guide-wrap .section-title, .faq-accordion-wrap .section-title {
        font-size: 28px !important;
    }
}
@media (max-width: 767px) {
    .custom-faq-accordion .accordion-button {
        padding: 16px 20px !important;
        font-size: 15px !important;
    }
    .custom-faq-accordion .accordion-body {
        padding: 0 20px 20px 20px !important;
        font-size: 13.5px !important;
    }
    .custom-faq-accordion .accordion-button::after {
        width: 30px !important;
        height: 30px !important;
        background-size: 12px !important;
    }
}




