:root {
    --primary-green: #D6001C;
    --accent-yellow: #D6001C;
    --primary-red: #D6001C;
    --primary-red-hover: #B80018;
    --primary-red-light: #FFF0F2;
    --white: #ffffff;
    --accent-cyan: #0083D6;
    --accent-magenta: #E4007D;
    --accent-yellow-gold: #FFD100;
    --accent-leaf-green: #388E3C;
}

/* --- MN HEADER STYLES --- */
.mn-header {
    background-color: #ffffff;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

/* LOGO */
.mn-logo-icon {
    background-color: var(--accent-yellow);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #000;
    font-size: 1.2rem;
}

.mn-logo-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* MENU BUTTON */
.mn-menu-btn {
    border: 1px solid #ddd;
    padding: 8px 18px;
    border-radius: 4px;
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.mn-menu-btn:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* SEARCH BOX */
.mn-header-search {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 2px;
    display: flex;
    border: 1px solid #eee;
}

.mn-search-input-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.mn-header-search-input {
    border: none;
    font-size: 0.85rem;
    padding-left: 15px;
    background: transparent;
}

.mn-header-search-btn {
    background-color: var(--accent-yellow);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 10px 25px;
    border-radius: 4px !important;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ACTION ITEMS */
.mn-action-item {
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.mn-action-item i {
    color: var(--primary-green);
}

/* BADGE */
.mn-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-green);
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* CART TAG */
.mn-cart-tag {
    background-color: var(--accent-yellow);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
}

/* SUB NAVBAR */
.mn-sub-navbar {
    background-color: #D6001C;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mn-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

.mn-nav-link:hover {
    color: #FFD100;
}

/* --- ACCOUNT SIDEBAR --- */
.mn-account-sidebar {
    width: 350px !important;
}

.mn-section-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #888;
    letter-spacing: 1.2px;
    padding: 25px 25px 10px;
}

.mn-sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.mn-sidebar-menu li a:hover {
    background: #f8f9fa;
    color: var(--accent-yellow);
}

.mn-sidebar-menu i {
    width: 20px;
    font-size: 1.1rem;
    color: #555;
}

/* --- MOBILE BOTTOM NAV --- */
.mn-mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #eee;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mn-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
}

.mn-bottom-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.mn-bottom-item.active i,
.mn-bottom-item.active span,
.mn-bottom-item:hover i,
.mn-bottom-item:hover span {
    color: var(--primary-red) !important;
}

/* --- MOBILE HEADER --- */
@media (max-width: 768px) {

    .mn-header {
        background-color: #ffffff;
    }

    .mn-logo-group span {
        color: #1a1a1a !important;
    }

    .mn-logo-icon-sm {
        background: var(--accent-yellow);
        color: #000;
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: bold;
    }

    .mn-mobile-bottom-nav {
        background: #ffffff;
    }

    .mn-bottom-item i {
        color: #1a1a1a;
    }
}

/* --- MOBILE OFFCANVAS MENU --- */
.mn-mobile-menu {
    background-color: #ffffff;
    /* background white */
    color: #1a1a1a;
    /* text black */
}

.mn-mobile-menu .offcanvas-title {
    color: #1a1a1a;
    /* title black */
}

.mn-mobile-menu .mn-nav-link {
    color: #1a1a1a;
    /* menu links black */
}

.mn-mobile-menu .mn-nav-link:hover {
    color: var(--accent-yellow);
    /* hover yellow */
}

/* close button */

/* Section Background */
.mn-breadcrumb-sec {
    background: url('../all-images/bg-images/3.png') no-repeat center/cover;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Strong Dark Overlay */
.mn-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    /* darker overlay */
    z-index: 1;
}

/* Content above overlay */
.mn-breadcrumb-sec .container {
    position: relative;
    z-index: 2;
}

/* Title */
.mn-breadcrumb-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
    /* glow */
}

/* Breadcrumb box (more visible) */
.mn-breadcrumb {
    list-style: none;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    /* darker glass */
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Items */
.mn-breadcrumb li {
    color: #fff;
    font-weight: 500;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* Links */
.mn-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.mn-breadcrumb li a:hover {
    color: #FFD100;
}

/* Arrow separator */
.mn-breadcrumb li+li::before {
    content: "➤";
    margin: 0 12px;
    color: #FFD100;
}

/* Active */
.mn-breadcrumb .active {
    color: #FFD100;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .mn-breadcrumb-title {
        font-size: 2rem;
    }

    .mn-breadcrumb {
        padding: 8px 15px;
    }
}

.text-section {
    margin-top: 40px;
    line-height: 1.8;
    color: #1a1a1a;
    font-size: 1rem;
}

.text-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
    /* theme color */
}

.text-section p {
    margin-bottom: 15px;
}

/* --- MN CONTACT SECTION --- */
.mn-contact-section {
    background-color: #ffffff;
}

.mn-contact-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.5px;
}

.mn-contact-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Form Inputs */
.mn-input,
.mn-textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
    box-shadow: none !important;
}

.mn-input::placeholder,
.mn-textarea::placeholder {
    color: #999;
    text-transform: uppercase;
}

.mn-input:focus,
.mn-textarea:focus {
    border-color: #000;
}

.mn-textarea {
    resize: none;
}

/* Submit Button */
.mn-btn-submit {
    background-color: var(--accent-yellow);
    color: var(--white);
    border: none;
    padding: 15px 45px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.3s ease;
}

.mn-btn-submit:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Info Details */
.mn-contact-info-wrap p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.mn-contact-info-wrap strong {
    font-weight: 800;
    color: #000;
}

/* Yellow Square Social Icons */
.mn-social-box {
    width: 35px;
    height: 35px;
    background-color: var(--accent-yellow);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.mn-social-box:hover {
    background-color: #000;
    color: #fff;
    transform: rotate(360deg);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .mn-contact-title {
        font-size: 1.5rem;
    }

    .mn-contact-info-wrap {
        margin-top: 20px;
    }
}

/* ================== MN ABOUT SECTION START ================== */

/* Image box */
.img-box {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

/* Big image */
.big-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Small image */
.small-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Text styling */
.text-section {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {

    .big-img img,
    .small-img img {
        height: 250px;
    }
}



/* ================== HOW WE WORK SECTION START ================== */

.work-section.horizontal-work {
    padding: 80px 0;
    background: #f9f9f9;
}

.sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
    color: #111;
    line-height: 1.4;
}

/* Horizontal scroll row */
.work-cards-row {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.work-cards-row::-webkit-scrollbar {
    height: 6px;
}

.work-cards-row::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 3px;
}

/* Card */
.work-card.horizontal-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.work-card.horizontal-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Icon */
.work-card.horizontal-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-green));
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-card.horizontal-card:hover .icon {
    transform: rotate(15deg) scale(1.1);
}

.work-card.horizontal-card h5 {
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.work-card.horizontal-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Additional content */
.text-content p {
    color: #333;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .main-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .work-cards-row {
        gap: 15px;
        padding-bottom: 15px;
    }

    .work-card.horizontal-card {
        flex: 0 0 250px;
        padding: 25px 15px;
    }

    .main-title {
        font-size: 24px;
    }
}

/* <!-- ================= WHY CHOOSE US SECTION START ================= --> */


/* ================= SECTION ================= */
.why-section {
    padding: 80px 0;
}

/* ================= TITLE ================= */
.title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

/* ================= TEXT ================= */
.why-section p {
    color: #777;
    line-height: 1.8;
    font-size: 14px;
    max-width: 500px;
}

/* ================= IMAGE BOX ================= */
.img-box {
    overflow: hidden;
    border-radius: 12px;
}

/* ================= IMAGE ================= */
.img-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* ================= HOVER EFFECT ================= */
.img-box:hover img {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .why-section {
        padding: 50px 15px;
    }

    .img-box img {
        height: 250px;
    }

    .title {
        font-size: 18px;
    }

    .why-section p {
        font-size: 13px;
    }
}




/* Sidebar General Styling */
.tracking-wider {
    letter-spacing: 1px;
}

.cat-item {
    display: block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background: #f8f9fa;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.cat-item:hover,
.cat-item.active {
    background: #eeeeee;
    font-weight: 600;
}

.clear-btn {
    background-color: var(--accent-yellow);
    border: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--white);
}

.clear-btn:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    color: var(--white);
}

/* Custom Price Slider Design */
.yellow-range {
    accent-color: var(--accent-yellow);
}

.yellow-range::-webkit-slider-runnable-track {
    background: var(--accent-yellow);
    height: 6px;
    border-radius: 3px;
}

.yellow-range::-webkit-slider-thumb {
    margin-top: -6px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.price-box {
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    padding: 8px;
}

/* Color Dots */
.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.color-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* Custom Scrollable Box for Filters */
.scroll-filter-box {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Sleek Scrollbar Styling */
.scroll-filter-box::-webkit-scrollbar {
    width: 4px;
}

.scroll-filter-box::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll-filter-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.form-check-label {
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #FFC107;
    border-color: #FFC107;
}


.fw-600 {
    font-weight: 500;
}

.text-dark {
    color: #212529;
}

.tiny {
    font-size: 0.8rem;
}

.tracking-wider {
    letter-spacing: 1px;
}

/* Image Area styling */
.main-image-wrapper {
    background-color: #f7f7f7;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.main-image-wrapper img {
    transition: 0.3s;
}

.thumbnail-row {
    margin-right: -10px;
    /* Counter-act gap on last item scroll */
}

.thumb-wrapper {
    border: 2px solid transparent;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 4px;
    cursor: pointer;
    min-width: 80px;
    /* For mobile scroll robustness */
    transition: 0.3s;
}

.thumb-wrapper:hover,
.thumb-wrapper.active {
    border-color: #f8e187;
    /* Slight gold/yellow active border from screenshot */
}

/* Quantity Input styling */
.quantity-input-group {
    max-width: 140px;
}

.btn-qty {
    border: none;
    color: #444;
    font-size: 1.2rem;
    padding: 8px 12px;
}

.qty-number {
    font-size: 1.1rem;
    color: #000;
}

.qty-number::-webkit-outer-spin-button,
.qty-number::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Action Button custom styling */
.btn-dark {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-outline-dark {
    font-size: 0.95rem;
}

.btn-outline-secondary {
    color: #555;
    border-color: #ddd;
}

.btn-outline-secondary:hover {
    background-color: #f8f8f8;
    color: #000;
    border-color: #ccc;
}

/* Sharing links */
.cursor-pointer {
    cursor: pointer;
}

.share-item {
    transition: 0.2s;
}

.share-item:hover {
    color: #000;
}

/* Benefits Panel */
.benefits-panel {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.benefits-panel i {
    color: #6c757d;
}

/* Shipping Promises custom colors */
.shipping-promises .text-success {
    color: #198754 !important;
}

/* Mobile Responsive Tweak for Benefits on very small screens */
@media (max-width: 480px) {
    .benefits-row [class^='col-'] {
        width: 100%;
        margin-bottom: 20px;
    }
}




/* Premium Layout Tweaks */
.benefits-outer-panel {
    border-color: #eeeeee !important;
}

/* Typography Enhancements */
.fw-600 {
    font-weight: 500;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.tiny {
    font-size: 0.75rem;
}

/* Section Title Label styling */
.section-title-label {
    margin-bottom: 5px;
}

/* Classic subtle divider line */
.classic-divider {
    height: 1px;
    width: 60px;
    background-color: #ddd;
}

/* Icon custom styling - Classic grey */
.benefit-icon {
    font-size: 2.5rem;
    /* Large classic size */
    color: #6c757d;
    /* Classic muted grey icon color */
    opacity: 0.9;
}

/* Benefit Text styling */
.benefit-title {
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

/* Slight hover effect for premium feel */
.benefit-item {
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover {
    background-color: #fcfcfc;
    transform: translateY(-3px);
}

/* Responsive Customization */
@media (max-width: 991px) {
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1.5rem !important;
    }
}

/* Extreme responsiveness tweak for super tiny mobile screens */
@media (max-width: 375px) {
    .benefits-grid .col-6 {
        width: 100% !important;
        margin-bottom: 25px !important;
    }
}


/* ============================ CART SECTION START ================================= */


.fw-600 {
    font-weight: 500;
}

.tracking-wide {
    letter-spacing: 1px;
}

/* Table Styling */
.cart-table-container {
    border-color: #eee !important;
}

.cart-row td {
    border-bottom: 1px solid #f8f8f8;
}

.cart-img-box {
    border: 1px solid #f0f0f0;
}

/* Quantity Control */
.qty-control .btn-qty-cart {
    padding: 2px 10px;
    background: #fff;
    border-radius: 0;
    font-weight: bold;
}

.qty-control input {
    background: transparent !important;
    font-weight: 600;
}

.remove-btn:hover {
    color: #ff0000 !important;
}

/* Sidebar Summary */
.summary-card {
    border-color: #eee !important;
    position: sticky;
    top: 20px;
}

/* Free Shipping Progress */
.progress-bar {
    border-radius: 10px;
    background-color: var(--accent-yellow);
}

.truck-icon-overlay {
    position: absolute;
    right: 0;
    top: -12px;
    background: #fff;
    border: 2px solid var(--accent-yellow);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
}

/* Responsive Table */
@media (max-width: 767px) {
    thead {
        display: none;
    }

    .cart-row {
        display: block;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }

    .cart-row td {
        display: block;
        width: 100%;
        text-align: left !important;
        border: none;
        padding: 5px 20px !important;
    }
}



/* ============================ CHECKOUT SECTION START ================================= */

/* RIGHT SIDE SUMMARY BG */
.bg-summary {
    background-color: #f0fbfc;
    /* light tint of primary */
}

/* INPUT FOCUS */
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 2px var(--primary-green);
    border-color: var(--primary-green);
}

/* LABEL COLOR */
.form-floating>label {
    color: #555;
}

/* BUTTON PRIMARY */
.btn-dark {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.btn-dark:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* DISABLED BUTTON */
.pay-now-btn {
    background-color: var(--accent-yellow) !important;
    color: var(--white);
}

/* LINKS */
a {
    color: var(--accent-yellow);
}

a:hover {
    color: var(--primary-green);
}

/* BADGE COUNT */
.badge.bg-dark {
    background-color: var(--accent-yellow) !important;
}

/* TOTAL PRICE */
.h4,
.h5 {
    color: var(--accent-yellow);
}

/* SMALL TEXT ACCENT */
.text-muted {
    color: #6c757d !important;
}

/* SHIPPING TEXT GREEN */
.text-success {
    color: var(--primary-green) !important;
}

/* BORDER COLORS LIGHT THEME */
.border {
    border-color: #e5e5e5 !important;
}




/* ================== LOGIN SECTION START ================================= */


/* INPUT FOCUS */
.custom-input:focus {
    border-color: var(--accent-yellow);
}

/* LOGIN BUTTON */
.btn-login {
    background-color: var(--accent-yellow);
    color: var(--white);
}

.btn-login:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ICON COLOR */
.text-warning {
    color: var(--primary-green) !important;
}

/* REGISTER LINK */
.text-primary {
    color: var(--accent-yellow) !important;
}

.text-primary:hover {
    color: var(--primary-green) !important;
}

/* FORGOT PASSWORD LINK HOVER */
a.text-dark:hover {
    color: var(--primary-green) !important;
}


/* =================== WISHLIST SECTION START ================================= */


.fw-600 {
    font-weight: 600;
}

.text-nowrap {
    white-space: nowrap !important;
}

/* Custom Badge color from screenshot */
.btn-warning {
    background-color: #ffcc00 !important;
    border-color: #ffcc00 !important;
    color: #000000 !important;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-warning:hover {
    background-color: #e6b800 !important;
    border-color: #e6b800 !important;
}

/* Clear Wishlist Button style */
.btn-outline-secondary {
    font-size: 0.8rem;
    padding: 8px 15px;
}

/* --- WISHLIST CONTAINER --- */
.wishlist-container {
    border-color: #eeeeee !important;
    position: relative;
    overflow: hidden;
}

/* Clear standard table shadows and borders for cleaner look */
.table-responsive {
    overflow-x: auto;
}

.table {
    border-collapse: collapse;
}

/* Product Info (Screenshot inspired) */
.product-name {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 300px;
    /* Restrict width in large screens */
    color: #000;
}

.product-price {
    font-size: 1.1rem;
    color: #000;
}

.added-date {
    font-size: 0.85rem;
}

.added-date i {
    color: #888;
}

/* --- Product Image & Action box (Screenshot Inspired) --- */
.img-action-box {
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.img-action-box:hover {
    border-color: #e0e0e0;
    background-color: #f9f9f9;
}

.remove-item {
    font-size: 1.1rem;
    transition: 0.2s;
}

.remove-item:hover {
    color: #dc3545 !important;
    /* Standard red for remove */
}

.quick-view-btn {
    background-color: var(--accent-yellow) !important;
    color: var(--white) !important;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
/* For medium/large screens: Adjust price slider location */
@media (min-width: 768px) {
    .quick-view-btn {
        margin-right: -10px;
        /* Subtle negative margin to align right edges */
    }
}

/* For mobile: Table stacking and alignment */
@media (max-width: 767px) {
    .wishlist-container {
        padding: 1.5rem !important;
    }

    thead {
        display: none;
        /* Hide standard headers in mobile */
    }

    .wishlist-row {
        display: block;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 0;
    }

    .wishlist-row:last-child {
        border-bottom: none;
    }

    .wishlist-row td {
        display: block;
        width: 100%;
        text-align: left !important;
        /* Re-align mobile content */
        border: none;
        padding: 8px 0 !important;
    }

    /* Column titles for mobile identification */
    .wishlist-row td:before {
        content: attr(data-label);
        font-size: 0.8rem;
        font-weight: 700;
        text-uppercase: true;
        color: #999;
        display: block;
        margin-bottom: 5px;
    }

    .wishlist-row td[data-label="Product"] {
        padding-top: 0 !important;
    }

    .wishlist-row td[data-label="Product"]:before {
        display: none;
        /* Product name itself is label enough */
    }

    .product-info-box {
        max-width: 100%;
        margin-top: 10px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    /* Trash + Image container alignment on mobile */
    .img-action-box {
        width: 100%;
        justify-content: flex-start;
        padding: 15px !important;
    }

    /* Move quick view full width on mobile */
    .wishlist-row td[data-label="Action"] {
        padding-top: 20px !important;
    }

    .quick-view-btn {
        width: 100%;
    }
}



/* =========================== REGISTER SECTION START =========================== */


/* LINK COLOR */
.text-primary {
    color: var(--accent-yellow) !important;
}

.text-primary:hover {
    color: var(--primary-green) !important;
}

/* INPUT FOCUS */
.form-control:focus {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 1px var(--accent-yellow);
}

/* INPUT HOVER */
.form-control:hover {
    border-color: var(--primary-green);
}

/* CHECKBOX */
.form-check-input:checked {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

/* REGISTER BUTTON */
.register-btn {
    background-color: var(--accent-yellow) !important;
    color: var(--white) !important;
    border: none !important;
}

.register-btn:hover {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* CARD SHADOW SLIGHT PREMIUM TOUCH */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(1, 180, 192, 0.08) !important;
}

/* ==========================================================================
   PRINTEC / MAHIMA CARDS NAVBAR DESIGN (MATCHING USER DEMO)
   ========================================================================== */

/* Top Announcement Bar */
.printec-topbar {
    background-color: var(--primary-red-light, #FFF0F2);
    color: #2d3748;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid #fce8eb;
}

.printec-topbar .highlight-price {
    color: var(--primary-red, #D6001C);
    font-weight: 700;
}

/* Main Header Container */
.printec-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 1050;
    width: 100%;
}

.printec-navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Nav Links Left */
.printec-nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.printec-nav-item {
    position: relative;
}

.printec-nav-link {
    color: #2d3748;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.25s ease;
    padding: 8px 0;
    background: transparent;
    border: none;
}

.printec-nav-link i {
    font-size: 0.68rem;
    color: #718096;
    transition: transform 0.25s ease, color 0.25s ease;
}

.printec-nav-link:hover,
.printec-nav-link.active {
    color: var(--primary-red, #D6001C) !important;
}

.printec-nav-link:hover i,
.printec-nav-link.active i {
    color: var(--primary-red, #D6001C);
}

/* Dropdown Menu Styling */
.printec-dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 6px !important;
    background: #ffffff;
}

.printec-dropdown-menu .dropdown-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.printec-dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-red-light, #FFF0F2);
    color: var(--primary-red, #D6001C);
}

@media (min-width: 992px) {
    .printec-nav-item.dropdown:hover .printec-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .printec-dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.25s ease;
    }
}

/* Logo Center */
.printec-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.printec-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

/* Search Box & Icons Right */
.printec-right-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.printec-search-box {
    position: relative;
    width: 250px;
}

.printec-search-input {
    width: 100%;
    height: 40px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    padding: 0 45px 0 18px;
    font-size: 0.85rem;
    color: #2d3748;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.printec-search-input::placeholder {
    color: #a0aec0;
}

.printec-search-input:focus {
    border-color: var(--primary-red, #D6001C);
    box-shadow: 0 0 0 3px rgba(214, 0, 28, 0.1);
}

.printec-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #718096;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.printec-search-btn:hover {
    color: var(--primary-red, #D6001C);
}

/* Action Icons */
.printec-icons-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.printec-icon-link {
    color: #2d3748;
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.2s ease;
    position: relative;
}

.printec-icon-link:hover {
    color: var(--primary-red, #D6001C);
    background-color: #f7fafc;
}

.printec-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--primary-red, #D6001C);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   MOBILE NAVBAR & DRAWER RESPONSIVE ENHANCEMENTS
   ========================================================================== */

@media (max-width: 991px) {
    .printec-navbar-wrapper {
        padding: 8px 0;
        justify-content: space-between;
    }

    .printec-logo-wrap {
        justify-content: flex-start;
        margin-right: auto;
    }

    .printec-logo-img {
        max-height: 38px;
    }

    .printec-topbar {
        font-size: 0.76rem;
        padding: 6px 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .printec-icons-group {
        gap: 8px;
    }

    .printec-icon-link {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .printec-logo-img {
        max-height: 34px;
    }

    .printec-topbar {
        font-size: 0.72rem;
    }

    .printec-icon-link {
        width: 32px;
        height: 32px;
        font-size: 1.05rem;
    }
}

/* --- BANNER CAROUSEL STYLING (FULL BLEED BANNERS WITHOUT OVERLAY) --- */
#mainCarousel .carousel-item {
    height: 70vh;
    min-height: 480px;
    max-height: 650px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

@media (max-width: 991px) {
    #mainCarousel .carousel-item {
        height: 45vh;
        min-height: 260px;
        max-height: 380px;
    }
}

@media (max-width: 576px) {
    #mainCarousel .carousel-item {
        height: 35vh;
        min-height: 210px;
        max-height: 270px;
    }
}

/* --- CATEGORY SECTION CARD & IMAGE SEAMLESS FIT --- */
.category-grid-section .cat-card {
    width: 100%;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    background-color: #f4f4f4 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none !important;
    margin: 0;
}

.category-grid-section .cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-grid-section .cat-img-box {
    width: 100%;
    height: 165px !important;
    overflow: hidden;
    border-radius: 16px 16px 0 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
}

.category-grid-section .cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center;
    transition: transform 0.5s ease;
}

.category-grid-section .cat-card:hover .cat-img-box img {
    transform: scale(1.08);
}

.category-grid-section .cat-details {
    padding: 10px 12px !important;
    background-color: #f4f4f4 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-grid-section .cat-title {
    font-size: 0.88rem !important;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-grid-section .cat-arrow-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    font-size: 0.7rem !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Responsive Desktop Static Grid (No Swiper) vs Mobile Swiper for Categories */
@media (min-width: 992px) {
    .category-grid-section .container {
        max-width: 1280px !important;
    }
    .category-grid-section .swiper.categorySwiper {
        overflow: visible !important;
    }
    .category-grid-section .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 16px !important;
        transform: none !important;
        width: 100% !important;
    }
    .category-grid-section .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
        height: auto !important;
    }
    .category-grid-section .cat-swiper-nav-group {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .category-grid-section .cat-img-box {
        height: 145px !important;
    }
}

@media (max-width: 576px) {
    .category-grid-section .cat-img-box {
        height: 120px !important;
    }
    .category-grid-section .cat-details {
        padding: 8px 10px !important;
    }
    .category-grid-section .cat-title {
        font-size: 0.78rem !important;
    }
    .category-grid-section .cat-arrow-btn {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px;
        font-size: 0.6rem !important;
    }
}

/* --- DUAL PREMIUM PROMO BANNERS SECTION --- */
.dual-promo-section {
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f8 100%);
}

.promo-section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--primary-red-light);
    padding: 6px 16px;
    border-radius: 30px;
}

.promo-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.dual-promo-card {
    position: relative;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.dual-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(214, 0, 28, 0.18);
}

.dual-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dual-promo-card:hover .dual-promo-bg {
    transform: scale(1.08);
}

.dual-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.88) 100%);
}

.dual-promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
    color: #ffffff;
}

.dual-promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(214, 0, 28, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dual-promo-badge.gold-badge {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    color: #ffffff;
}

.dual-promo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dual-promo-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 480px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.dual-promo-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 0, 28, 0.4);
}

.dual-promo-btn:hover {
    background-color: #ffffff;
    color: var(--primary-red);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.dual-promo-btn.gold-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.dual-promo-btn.gold-btn:hover {
    background-color: #ffffff;
    color: #b8860b;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .promo-section-title {
        font-size: 1.8rem;
    }
    .dual-promo-card {
        height: 360px;
    }
    .dual-promo-content {
        padding: 24px;
    }
    .dual-promo-title {
        font-size: 1.6rem;
    }
    .dual-promo-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .dual-promo-card {
        height: 310px;
    }
    .dual-promo-content {
        padding: 18px;
    }
    .dual-promo-title {
        font-size: 1.35rem;
    }
    .dual-promo-desc {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }
    .dual-promo-btn {
        padding: 10px 20px;
        font-size: 0.78rem;
    }
}

/* --- BLOG & JOURNAL SECTION --- */
.blog-section-v2 {
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.blog-section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--primary-red-light);
    padding: 6px 16px;
    border-radius: 30px;
}

.blog-section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 10px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.blog-view-all-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}

.blog-card-modern {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(214, 0, 28, 0.2);
}

.blog-img-box {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card-modern:hover .blog-img-box img {
    transform: scale(1.08);
}

.blog-badge-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.blog-badge-category.gold-cat {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
}

.blog-badge-category.cyan-cat {
    background-color: #0083D6;
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-info {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: #888888;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.blog-read-more-btn:hover {
    color: var(--primary-red-hover);
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .blog-section-title {
        font-size: 1.7rem;
    }
    .blog-img-box {
        height: 200px;
    }
}

/* ==========================================
   BLOG SWIPER SLIDER GLASSMORPHIC STYLES
   ========================================== */
.blog-swiper-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 25px !important;
    padding-top: 10px !important;
}

.blog-swiper-container .swiper-slide {
    height: auto;
    display: flex;
}

/* Glassmorphic Blog Card Base */
.glass-blog-card {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.glass-blog-card:hover {
    transform: translateY(-8px);
}

/* Image Container */
.glass-blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.glass-blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-blog-card:hover .glass-blog-img-wrapper img {
    transform: scale(1.08);
}

/* Floating Overlapping Glass Box */
.glass-blog-floating-card {
    position: relative;
    z-index: 2;
    width: calc(100% - 28px);
    margin: -145px auto 0 auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.glass-blog-card:hover .glass-blog-floating-card {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14), 0 6px 18px rgba(214, 0, 28, 0.08);
    border-color: rgba(214, 0, 28, 0.25);
}

/* Category Pill */
.glass-blog-pill {
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 4px 14px;
    border-radius: 30px;
    display: inline-block;
    letter-spacing: 0.2px;
}

.glass-blog-meta-dot {
    color: #94a3b8;
    font-size: 0.8rem;
}

.glass-blog-date, .glass-blog-readtime {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 500;
}

.glass-blog-bookmark-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 2px;
}

.glass-blog-bookmark-btn:hover {
    color: var(--primary-red);
    transform: scale(1.15);
}

.glass-blog-title {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
    margin-top: 12px;
    margin-bottom: 8px;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.glass-blog-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.glass-blog-title a:hover {
    color: var(--primary-red);
}

.glass-blog-excerpt {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.glass-blog-stats {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
}

.glass-blog-stats span {
    display: inline-flex;
    align-items: center;
}

.glass-blog-arrow-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.glass-blog-card:hover .glass-blog-arrow-link,
.glass-blog-arrow-link:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    transform: scale(1.08);
}

/* Swiper Blog Navigation Buttons */
.blog-swiper-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background-color: #ffffff;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.blog-swiper-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(214, 0, 28, 0.25);
}

.blog-swiper-btn:active {
    transform: translateY(0);
}



@media (max-width: 768px) {
    .glass-blog-img-wrapper {
        height: 320px;
    }
    .glass-blog-floating-card {
        margin-top: -120px;
        padding: 18px;
    }
}

/* ==========================================
   DEDICATED BLOG PAGE STYLES
   ========================================== */
.blog-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    padding: 70px 0 80px 0;
    color: #ffffff;
    overflow: hidden;
}

.blog-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 0, 28, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.blog-hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 650px;
}

.blog-search-box {
    position: relative;
    max-width: 520px;
    margin-top: 24px;
}

.blog-search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.blog-search-box input::placeholder {
    color: #94a3b8;
}

.blog-search-box input:focus {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(214, 0, 28, 0.3);
}

.blog-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}

/* Category Filter Tabs */
.blog-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.blog-filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(214, 0, 28, 0.25);
    transform: translateY(-2px);
}

/* Featured Spotlight Post */
.blog-spotlight-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    transition: transform 0.4s ease;
}

.blog-spotlight-card:hover {
    transform: translateY(-6px);
}

.blog-spotlight-img {
    height: 100%;
    min-height: 420px;
    width: 100%;
    object-fit: cover;
}

.blog-spotlight-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Custom Page Pagination */
.blog-pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.blog-page-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-page-link:hover,
.blog-page-link.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(214, 0, 28, 0.25);
}

@media (max-width: 991px) {
    .blog-hero-title {
        font-size: 2.1rem;
    }
    .blog-spotlight-content {
        padding: 24px;
    }
}

.blog-spotlight-text-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================
   CUSTOM DUAL-TIER DESKTOP HEADER & MOBILE NAVBAR
   ========================================== */

/* Header Wrapper */
.site-header {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

/* Tier 1: Top Desktop Header */
.header-top-bar {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.header-logo img {
    max-height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.03);
}

/* Search Box Design */
.header-search-box {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.header-search-input {
    width: 100%;
    padding: 12px 50px 12px 24px;
    border-radius: 40px;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 0.92rem;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
}

.header-search-input:focus {
    border-color: var(--primary-red);
    background-color: #ffffff;
    box-shadow: 0 0 16px rgba(214, 0, 28, 0.15);
}

.header-search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary-red);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-search-btn:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-50%) scale(1.05);
}

/* Header Right Actions */
.header-actions-group {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-action-btn:hover {
    color: var(--primary-red);
}

.header-action-btn i {
    font-size: 1.15rem;
}

.header-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-action-btn {
    background-color: #f0fdf4;
    color: #16a34a !important;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #bbf7d0;
    transition: all 0.3s ease;
}

.whatsapp-action-btn:hover {
    background-color: #22c55e;
    border-color: #22c55e;
    color: #ffffff !important;
}

.whatsapp-action-btn:hover i {
    color: #ffffff !important;
}

/* Tier 2: Bottom Desktop Header */
.header-bottom-bar {
    background-color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.header-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.header-menu-link {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s ease;
}

.header-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.header-menu-link:hover,
.header-menu-link.active {
    color: var(--primary-red);
}

.header-menu-link:hover::after,
.header-menu-link.active::after {
    width: 100%;
}

/* ==========================================
   MOBILE HEADER & TOGGLER ICON (3 STAIR BARS - FIXED BOTTOM)
   ========================================== */
.mobile-header-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background-color: #ffffff;
    padding: 10px 26px;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 65px;
    }
}

.mobile-bottom-nav,
.mn-mobile-bottom-nav {
    display: none !important;
}

/* Custom 3-Bar Toggler Icon (Cascading Widths) */
.stair-toggler-btn {
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    outline: none !important;
    margin-left: 10px; /* Shifted towards right */
}

.mobile-right-cart {
    margin-right: 10px; /* Shifted towards left */
}

.stair-bar {
    height: 3px;
    background-color: #0f172a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.stair-bar-1 {
    width: 26px;
    margin-bottom: 5px;
}

.stair-bar-2 {
    width: 19px;
    margin-bottom: 5px;
}

.stair-bar-3 {
    width: 12px;
}

.stair-toggler-btn:hover .stair-bar {
    background-color: var(--primary-red);
    width: 26px;
}

/* Mobile Offcanvas Drawer */
.mobile-offcanvas-menu {
    max-width: 320px;
}

.mobile-offcanvas-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-red);
    background-color: #ffeef0;
    padding-left: 26px;
}

/* ==========================================
   CATEGORY SWIPER SLIDER STYLES
   ========================================== */
.cat-swiper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    outline: none !important;
}

.cat-swiper-btn:hover {
    background-color: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 0, 28, 0.25);
}

.cat-swiper-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.categorySwiper .swiper-slide {
    height: auto;
}

@media (max-width: 575.98px) {
    .category-grid-section .cat-img-box {
        height: 125px !important;
    }
    .category-grid-section .cat-details {
        padding: 8px 8px !important;
    }
    .category-grid-section .cat-title {
        font-size: 0.76rem !important;
    }
    .category-grid-section .cat-arrow-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.68rem !important;
    }
}

/* ==========================================
   VIDEOS SHOWCASE SECTION STYLES
   ========================================== */
.video-showcase-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
    border: none;
    box-shadow: inset 0 18px 20px -12px rgba(15, 23, 42, 0.08), inset 0 -18px 20px -12px rgba(15, 23, 42, 0.08);
}

.fs-12 {
    font-size: 0.75rem !important;
}

.video-card-item {
    width: 100%;
}

.video-thumb-holder {
    height: 420px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.video-thumb-holder:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(214, 0, 28, 0.2);
}

.video-thumb-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-thumb-holder:hover .video-thumb-img {
    transform: scale(1.1);
}

.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.88) 100%);
    transition: background 0.4s ease;
}

.video-thumb-holder:hover .video-overlay-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(15, 23, 42, 0.95) 100%);
}

.video-play-trigger {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d6001c 0%, #ff3b53 100%);
    box-shadow: 0 6px 20px rgba(214, 0, 28, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    padding-left: 4px;
}

.video-thumb-holder:hover .video-play-trigger {
    transform: translate(-50%, -50%) scale(1.18);
    background: linear-gradient(135deg, #ff1a38 0%, #d6001c 100%);
    box-shadow: 0 10px 30px rgba(214, 0, 28, 0.7);
}

.video-play-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(214, 0, 28, 0.5);
    animation: playPulseWave 2s infinite;
    z-index: -1;
}

@keyframes playPulseWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.video-badge-cat,
.video-badge-time {
    z-index: 3;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.video-card-content {
    z-index: 3;
    transition: transform 0.3s ease;
}

.video-thumb-holder:hover .video-card-content {
    transform: translateY(-3px);
}

.video-card-title {
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 575.98px) {
    .video-card-item {
        width: 100%;
    }
    .video-thumb-holder {
        height: 300px;
    }
    .video-play-trigger {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   MODERN FLOATING CARD CONTAINER FOOTER STYLES
   ========================================== */
.modern-floating-footer {
    background: #edf2f7;
}

.footer-top-canvas {
    background: linear-gradient(180deg, #ffffff 0%, #edf2f7 100%);
}

.floating-footer-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.floating-footer-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(214, 0, 28, 0.18) 0%, rgba(214, 0, 28, 0) 70%);
    pointer-events: none;
}

.fs-14 {
    font-size: 0.88rem !important;
}

.fs-13 {
    font-size: 0.82rem !important;
}

.footer-col-heading {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.footer-col-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-links-list a:hover i {
    color: var(--primary-red) !important;
}

.social-circle-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-circle-link:hover {
    background: var(--primary-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(214, 0, 28, 0.35);
    border-color: var(--primary-red);
}

.footer-bottom-dark-bar {
    background: #090d16;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit-link:hover span {
    text-decoration: underline;
}

.back-to-top-floating {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top-floating:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(214, 0, 28, 0.4) !important;
}

@media (max-width: 767.98px) {
    .floating-footer-card {
        border-radius: 20px 20px 0 0;
    }
}

/* ==========================================
   3D COVERFLOW SWIPER FOR MOBILE VIDEO SHOWCASE
   ========================================== */
.video3dSwiper {
    padding-top: 15px;
    padding-bottom: 20px;
    width: 100%;
}

.video-3d-slide {
    width: 250px !important;
    transition: transform 0.3s ease;
}

.video-3d-slide .video-thumb-holder {
    height: 380px !important;
    border-radius: 20px !important;
}

.video-3d-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 10px !important;
    position: relative !important;
    bottom: 0 !important;
}

@media (max-width: 767.98px) {
    .video-showcase-section {
        padding-top: 1.8rem !important;
        padding-bottom: 0.5rem !important;
    }
}

.video-3d-pagination .swiper-pagination-bullet {
    background: #94a3b8;
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.video-3d-pagination .swiper-pagination-bullet-active {
    background: var(--primary-red);
    opacity: 1;
    width: 22px;
    border-radius: 4px;
}

/* ==========================================
   BESTSELLING PRODUCTS PROMO BANNER STYLES
   ========================================== */
.bestselling-banner-section {
    background: #f8fafc;
}

.bestselling-promo-card {
    min-height: 380px;
    border-radius: 28px !important;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.bestselling-bg-holder {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transition: transform 0.8s ease;
}

.bestselling-promo-card:hover .bestselling-bg-holder {
    transform: scale(1.03);
}

.bestselling-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0f172ae6 0%, #0f172acc 35%, #0f172a40 65%, transparent 100%);
    z-index: 1;
}

.tracking-wider {
    letter-spacing: 1.5px;
}

.fs-15 {
    font-size: 0.95rem !important;
}

.bestselling-hero-title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.bestselling-cta-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bestselling-cta-btn:hover {
    background: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(214, 0, 28, 0.4);
}

@media (max-width: 767.98px) {
    .bestselling-promo-card {
        min-height: auto;
        border-radius: 20px !important;
    }
    .bestselling-overlay-gradient {
        background: linear-gradient(180deg, #0f172af0 0%, #0f172ad0 60%, #0f172a80 100%);
    }
    .bestselling-hero-title {
        font-size: 1.6rem;
    }
}

/* ==========================================
   RELATED PRODUCTS SWIPER SLIDER STYLES
   ========================================== */
.related-products-section {
    background-color: #f8fafc !important;
}

.related-products-section .product-card-v2 {
    border-color: #e2e8f0 !important;
    transition: all 0.3s ease;
}

.related-products-section .product-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--primary-red) !important;
}

.related-swiper-prev,
.related-swiper-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-red);
    border-color: #cbd5e1;
    background: #ffffff;
    transition: all 0.25s ease;
}

.related-swiper-prev:hover,
.related-swiper-next:hover {
    background: var(--primary-red) !important;
    color: #ffffff !important;
    border-color: var(--primary-red) !important;
    transform: scale(1.08);
}

.related-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #94a3b8;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.related-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 6px;
    background: var(--primary-red) !important;
    opacity: 1;
}







