*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

[hidden] {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.site-header {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.nav-left {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #151515;
    min-width: 180px;
}

.brand-logo {
    width: 170px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
}

.brand-logo-fallback {
    color: #262626;
    font-size: 18px;
    font-weight: 800;
}

.main-nav {
    padding: 0;
    background: transparent;
}

.header-inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.header-inner ul li a {
    text-decoration: none;
    color: #303030;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-inner ul li a:hover {
    background: #f7f7f7;
    color: #b80000;
}

.header-inner ul li a .nav-icon {
    width: 15px;
    min-width: 15px;
    color: #6b6b6b;
    font-size: 14px;
    text-align: center;
    transition: color 0.2s ease;
}

.header-inner ul li a:hover .nav-icon {
    color: #b80000;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-width: 235px;
}

.header-trust-badge {
    color: #424242;
    background: #f6f6f6;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.cart-action {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #424242;
    background: #f6f6f6;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.cart-action:hover {
    color: #b80000;
    background: #fff;
    border-color: #e0b5b5;
}

.marquee {
    height: 50px;
    background: linear-gradient(90deg, #151515 0%, #8f0000 48%, #b80000 100%);
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(184, 0, 0, 0.22);
}

.marquee p {
    display: inline-block;
    padding: 10px;
    margin: 0;
    animation: scroll-left 30s linear infinite;
}

.marquee:hover p {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
    background-color: #555;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    z-index: 2;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content .btn {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero .btn {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.section-title {
    text-align: center;
    /* margin: 40px 0; */
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width: 900px){
    .section-title {
    text-align: center;
    /* margin: 40px 0; */
    font-size: 26px;
    font-weight: bold;
}
}

.section-subtitle {
    text-align: center;
    color: #777;
}

.block-section {
    width: 100%;
    margin: 42px 0 52px;
}

.product-block-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eeeeee;
}

.product-block-copy {
    max-width: 760px;
}

.product-block-title {
    margin: 0;
    text-align: left;
    color: #151515;
    line-height: 1.15;
}

.product-block-subtitle {
    margin: 8px 0 0;
    max-width: 620px;
    text-align: left;
    color: #666;
    line-height: 1.6;
}

.product-block-action {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding-bottom: 2px;
}

.block-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: #303030;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.block-view-all:hover {
    border-color: #b80000;
    background: #fff7f7;
    color: #b80000;
    transform: translateY(-1px);
}

.block-view-all span {
    font-size: 16px;
    line-height: 1;
}

.products-grid,
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 22.5px));
    gap: 30px;
}

.block-empty-state {
    grid-column: 1 / -1;
    width: 100%;
    padding: 34px 22px;
    border: 1px dashed #efcaca;
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
    text-align: center;
    box-shadow: 0 12px 30px rgba(184, 0, 0, 0.05);
}

.block-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border: 1px solid #f1d1d1;
    border-radius: 50%;
    background: #fff;
    color: #b80000;
    font-size: 22px;
}

.block-empty-state__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #b80000;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.block-empty-state h3 {
    margin: 0 0 8px;
    color: #151515;
    font-size: 21px;
    font-weight: 850;
}

.block-empty-state p {
    max-width: 460px;
    margin: 0 auto;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .products-grid,
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(4, calc(25% - 22.5px));
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .products-grid,
    .packages-grid {
        grid-template-columns: repeat(2, calc(50% - 15px));
    }
}

@media (max-width: 576px) {
    .products-grid,
    .packages-grid {
        grid-template-columns: repeat(2, calc(50% - 6px));
    }
}
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.product-card h3 {
    font-size: 18px;
    margin-top: 0;
    text-align: left;
    margin-bottom: 0px;
}

.product-card a:has(h3) {
    color: #252525;
    text-decoration: none;
}
.product-card p {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card .price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.price-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.price-values {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
}

.product-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 999px;
    background: #198754;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.product-price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 0;
}

.product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.product-current-price {
    color: #202020;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
}

.cart-special-label {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #b80000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .product-card .price {
        gap: 5px;
        margin: 9px 0;
        padding-top: 8px;
    }

    .price-topline {
        gap: 5px;
    }

    .price-values {
        width: 100%;
        justify-content: flex-end;
    }

    .product-discount-badge {
        padding: 3px 6px;
        font-size: 10px;
    }

    .product-price-stack {
        align-items: flex-end;
    }

    .product-old-price {
        font-size: 10px;
    }

    .product-current-price {
        font-size: 16px;
        letter-spacing: 0;
    }

    .cart-special-label {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .product-current-price {
        font-size: 15px;
    }

    .cart-special-label,
    .product-discount-badge {
        font-size: 9px;
    }
}

.product-card .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.product-card .button-group-top {
    gap: 8px;
}

.product-card .button-group-top .btn-primary,
.product-card .button-group-top .btn-secondary {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    box-shadow: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-card .button-group-top .btn-primary {
    border: 1px solid #b80000;
    background: #b80000;
    color: #fff;
}

.product-card .button-group-top .btn-primary:hover {
    border-color: #980000;
    background: #980000;
    color: #fff;
    transform: translateY(-1px);
}

.product-card .button-group-top .btn-secondary {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #303030;
}

.product-card .button-group-top .btn-secondary:hover {
    border-color: #b80000;
    background: #fff7f7;
    color: #b80000;
    transform: translateY(-1px);
}

.button-group-top {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 900px) {
    .button-group-top {
        display: inline;
        gap: 10px;
    }

    .product-card .button-group-top {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

.button-group-bottom {
    display: flex;
}

.button-group-top .btn-primary,
.button-group-top .btn-secondary {
    flex-grow: 1;
}

.button-group-bottom .btn-whatsapp {
    width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
    padding: 12px 25px; /* Slightly larger padding */
    border-radius: 8px; /* More rounded corners */
    text-decoration: none;
    font-weight: bold; /* Bold text */
    border: none; /* Remove borders for flat design */
    transition: all 0.3s ease; /* Smooth transitions */
    box-shadow: none; /* Remove shadows */
    display: inline-flex; /* Use flex for alignment */
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between icon and text if any */
    font-size: 14px; /* Added consistent font size */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-primary {
    border: 1px solid #b80000;
    background-color: #b80000;
    color: #fff;
}
.btn-primary:hover {
    border-color: #980000;
    background-color: #980000;
    color: #fff;
}

.add-to-cart-btn,
.add-to-cart-btn * {
    cursor: pointer;
}

.add-to-cart-btn {
    position: relative;
    z-index: 3;
}

.add-to-cart-btn > * {
    pointer-events: none;
}

.add-to-cart-btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
}

.btn-full-width {
    width: 100%;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #545b62;
}
.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}
.btn-whatsapp:hover {
    background-color: #1da851;
}
.info-bar {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.info-bar .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.info-item h4 {
    margin-top: 0;
    font-size: 18px;
}
.info-item p {
    color: #666;
    margin-bottom: 0;
}
footer {
    background-color: #333;
    color: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ff6f61;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col p {
    color: #ccc;
    text-decoration: none;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -390px;
    width: 390px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -18px 0 45px rgba(16, 24, 40, 0.16);
    padding: 0;
    transition: right 0.3s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eeeeee;
}

.cart-footer {
    margin-top: auto;
    padding: 16px 18px 20px;
    border-top: 1px solid #eeeeee;
    background: #fff;
}

#cart-sidebar.open {
    right: 0;
}
#cart-sidebar h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #151515;
}

.cart-header {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    background: #fff;
    color: #151515;
}

#cart-close {
    width: 34px;
    height: 34px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #f7f7f7;
    color: #424242;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

#cart-close:hover {
    border-color: #e0b5b5;
    background: #fff7f7;
    color: #b80000;
}

.cart-header h3 {
    margin: 0;
    padding: 0;
    border: none;
}

#cart-close {
    width: 34px;
    height: 34px;
    border: 1px solid #ead7d7;
    border-radius: 8px;
    background: #fff5f5;
    color: #b80000;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Styles */
.product-detail-page {
    margin-bottom: 56px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.product-gallery-card,
.product-info-panel {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.product-gallery-card {
    min-width: 0;
    overflow: hidden;
    padding: 14px;
    position: relative;
}

.product-info-panel {
    min-width: 0;
    padding: 24px;
}

.product-detail-title {
    margin: 0 0 14px;
    color: #151515;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.detail-price {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fafafa;
}

.detail-discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #b80000;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.detail-price-values {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.detail-old-price {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.detail-current-price {
    color: #151515;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.product-detail-description {
    margin: 0 0 18px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.detail-actions + .product-detail-description,
.same-day-shipping-notice + .product-detail-description {
    margin-top: 18px;
}

.detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.detail-actions .btn-primary,
.detail-actions .btn-secondary {
    width: 100%;
    min-height: 50px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 0;
}

.detail-add-cart {
    border: 1px solid #b80000;
    background: #b80000;
    color: #fff;
}

.detail-add-cart:hover {
    border-color: #980000;
    background: #980000;
}

.detail-buy-now {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #303030;
}

.detail-buy-now:hover {
    border-color: #b80000;
    background: #fff7f7;
    color: #b80000;
}

.same-day-shipping-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(22, 163, 74, 0.22);
    border-radius: 8px;
    background: #ecfdf3;
    color: #166534;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.same-day-shipping-notice i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 13px;
}

.swiper-container {
    width: 100%;
}

.gallery-top {
    height: 430px;
    width: 100%;
}

.gallery-top .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-top .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: zoom-in;
}

.gallery-thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.55;
    border: 1px solid transparent;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    background: #fafafa;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #b80000;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 0, 0, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: #b80000;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.14);
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-gallery-nav::after {
    content: none !important;
    display: none !important;
}

.product-gallery-nav::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

.product-gallery-nav-next {
    right: 12px;
}

.product-gallery-nav-prev {
    left: 12px;
}

.product-gallery-nav-next::before {
    transform: rotate(45deg);
    margin-left: -2px;
}

.product-gallery-nav-prev::before {
    transform: rotate(225deg);
    margin-right: -2px;
}

.product-gallery-nav:hover {
    border-color: #b80000;
    background: #b80000;
    color: #fff;
    transform: translateY(-50%) scale(1.04);
}

.product-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.88);
    padding: 28px;
}

.product-gallery-lightbox.is-open {
    display: flex;
}

.product-gallery-lightbox__image {
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.product-gallery-lightbox__close,
.product-gallery-lightbox__nav {
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.product-gallery-lightbox__close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.product-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 64px;
    border-radius: 12px;
    transform: translateY(-50%);
    font-size: 42px;
    line-height: 1;
}

.product-gallery-lightbox__nav--prev {
    left: 26px;
}

.product-gallery-lightbox__nav--next {
    right: 26px;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping on mobile */
    align-items: center;
    gap: 0;
    padding: 12px 0;
    margin: 6px 0 18px;
    list-style: none;
    background-color: transparent;
    border-bottom: 1px solid #eeeeee;
    border-radius: 0;
    box-shadow: none;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}
.breadcrumb::-webkit-scrollbar {
    /* Hide scrollbar for Chrome, Safari, Opera */
    display: none;
}

.breadcrumb-item {
    display: flex;
    flex-shrink: 0; /* Prevent items from shrinking */
    align-items: center;
    color: #777;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.breadcrumb-item a {
    color: #555;
    text-decoration: none;
    white-space: nowrap; /* Ensure link text doesn't wrap */
    transition: color 0.2s ease;
}
.breadcrumb-item a:hover {
    color: #b80000;
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 9px;
    padding-left: 9px;
    color: #b7b7b7;
    font-weight: 700;
    content: "›";
}

.breadcrumb-item.active {
    color: #151515;
    font-weight: 800;
    white-space: nowrap; /* Ensure active item text doesn't wrap */
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        width: 100%; /* Full width on mobile */
        padding: 10px 0; /* Adjust padding for smaller screens */
        margin-bottom: 14px;
    }
}

/* Checkout Page Styles */
.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-label {
    margin-bottom: 0;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-control {
    border-radius: 8px;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-option .form-check-label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background-color: #fff;
}

.payment-method-option input[type="radio"]:checked + .form-check-label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background-color: #0c710e;

}

.payment-method-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-method-option.selected {
    background-color: #fff7f7;
    border-color: #b80000;
}

.form-check-label {
    margin-bottom: 0;
}

.payment-method-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.payment-method-option.selected {
    background-color: #fff7f7;
    border-color: #b80000;
}

.form-check-label {
    margin-bottom: 0;
}

/* Hide main navigation and cart toggle on small screens */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .header-inner {
        justify-content: center;
    }

    .brand-link {
        min-width: 150px;
    }

    .brand-logo {
        width: 150px;
        height: 52px;
    }

    .main-nav,
    .nav-right {
        display: none;
    }
}

/* Show main navigation and cart toggle on larger screens */
@media (min-width: 769px) {
    .main-nav {
        display: flex; /* Original display property */
    }
    .nav-right {
        display: flex; /* Original display property */
    }
}

@media (max-width: 1100px) and (min-width: 769px) {
    .header-inner {
        gap: 14px;
    }

    .brand-link,
    .nav-right {
        min-width: 160px;
    }

    .header-trust-badge {
        display: none;
    }

    .header-inner ul li a {
        padding: 9px 10px;
        font-size: 13px;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .brand-link,
    .nav-right {
        min-width: auto;
    }

    .brand-logo {
        width: 140px;
        height: 50px;
    }

    .header-inner ul li a {
        padding: 9px;
    }
}

#cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px 18px;
    background: #fafafa;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    background: #fff;
    padding: 10px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-image {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    background: #f7f7f7;
    flex-shrink: 0;
}

.cart-item-content {
    flex-grow: 1;
    min-width: 0;
}

.cart-item-title {
    margin: 0;
    color: #202020;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.cart-item-meta {
    margin: 5px 0 0;
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

.remove-from-cart-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #f0d2d2;
    border-radius: 8px;
    background: #fff7f7;
    color: #b80000;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.remove-from-cart-btn:hover {
    border-color: #b80000;
    background: #fff;
}

.cart-empty-message {
    margin: 34px 0;
    padding: 26px 16px;
    border: 1px dashed #dddddd;
    border-radius: 8px;
    background: #fff;
    color: #666;
    text-align: center;
    font-weight: 700;
}

.cart-recommendations {
    padding: 14px 18px;
    border-top: 1px solid #eeeeee;
    background: #fff;
}

.cart-recommendations-header {
    margin-bottom: 10px;
    color: #151515;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
}

.cart-recommendations-list {
    position: relative;
    height: auto;
    max-height: none;
    overflow: hidden;
    padding: 0 20px 18px;
}

.cart-recommendations-list .swiper-wrapper {
    align-items: stretch;
}

.cart-recommendations-list .swiper-slide {
    height: auto !important;
}

.cart-recommendations-nav,
.recommended-products-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(184, 0, 0, 0.18);
    border-radius: 50%;
    background: #fff;
    color: #b80000;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.12);
    transform: translateY(-50%);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.cart-recommendations-nav:hover,
.recommended-products-nav:hover {
    border-color: #b80000;
    background: #b80000;
    color: #fff;
}

.cart-recommendations-nav.swiper-button-disabled,
.recommended-products-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}

.cart-recommendations-nav-prev,
.recommended-products-nav-prev {
    left: 4px;
}

.cart-recommendations-nav-next,
.recommended-products-nav-next {
    right: 4px;
}

.cart-recommendations-pagination {
    display: none !important;
}

.cart-recommendations-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #d8d8d8;
    opacity: 1;
}

.cart-recommendations-pagination .swiper-pagination-bullet-active {
    background: #b80000;
}

.cart-recommendation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    min-width: 0;
    padding: 8px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fafafa;
}

.cart-recommendation-image {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    background: #fff;
    overflow: hidden;
}

.cart-recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.cart-recommendation-content {
    min-width: 0;
    flex: 1;
    max-width: 100%;
}

.cart-recommendation-title {
    display: block;
    width: 100%;
    max-width: 100%;
    color: #202020;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.cart-recommendation-title:hover {
    color: #b80000;
}

.cart-recommendation-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}

.cart-recommendation-price {
    color: #b80000;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.cart-recommendation-add {
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid #b80000;
    border-radius: 7px;
    background: #b80000;
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

.cart-recommendation-add:hover {
    background: #980000;
    border-color: #980000;
}

#cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fafafa;
    color: #151515;
    font-size: 15px;
    font-weight: 800;
}

#cart-summary span:last-child {
    color: #b80000;
}

.cart-checkout-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 12px 16px;
    background: #b80000;
    color: #fff;
    border: 1px solid #b80000;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.cart-checkout-btn:hover {
    background: #980000;
    border-color: #980000;
}

.whatsapp-support-widget {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: max-content;
    max-width: calc(100vw - 44px);
    pointer-events: none;
}

body.cart-sidebar-open .whatsapp-support-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
}

.whatsapp-support-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-support-toggle:hover {
    background: #20bf5a;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.42);
}

.whatsapp-support-card {
    width: min(330px, calc(100vw - 34px));
    padding: 16px;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    box-shadow: 0 18px 48px rgba(16, 24, 40, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-support-card.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-support-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #8a94a6;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.whatsapp-support-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 22px;
}

.whatsapp-support-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.24);
}

.whatsapp-support-avatar i {
    line-height: 1;
}

.whatsapp-support-head strong {
    display: block;
    color: #101828;
    font-size: 15px;
    font-weight: 850;
}

.whatsapp-support-head span {
    display: block;
    margin-top: 2px;
    color: #667085;
    font-size: 12px;
    font-weight: 650;
}

.whatsapp-support-message {
    margin: 14px 0;
    padding: 12px;
    border-radius: 10px;
    background: #f0fdf4;
    color: #166534;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.whatsapp-support-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    border-radius: 9px;
    background: #16a34a;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.whatsapp-support-action:hover {
    background: #15803d;
    color: #fff;
    text-decoration: none;
}

.empty-cart-page {
    display: flex;
    justify-content: center;
    padding: 70px 15px;
}

.empty-cart-card {
    width: 100%;
    max-width: 540px;
    padding: 36px 28px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    text-align: center;
}

.empty-cart-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0d2d2;
    border-radius: 50%;
    background: #fff7f7;
    color: #b80000;
    font-size: 28px;
}

.empty-cart-kicker {
    display: block;
    margin-bottom: 8px;
    color: #b80000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.empty-cart-card h1 {
    margin: 0 0 10px;
    color: #151515;
    font-size: 28px;
    font-weight: 800;
}

.empty-cart-card p {
    max-width: 390px;
    margin: 0 auto 24px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.empty-cart-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid #b80000;
    border-radius: 8px;
    background: #b80000;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.empty-cart-action:hover {
    border-color: #980000;
    background: #980000;
    color: #fff;
    text-decoration: none;
}

/* Mobile Bottom Navigation Styles */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff; /* Or a color that fits the design */
    padding: 10px 0;
    border-top: 1px solid #ddd;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333; /* Adjust color as needed */
    font-size: 12px;
    font-weight: 500;
    padding: 5px;
    flex: 1; /* Distribute space evenly */
}

.mobile-bottom-nav .mobile-nav-item .mobile-nav-icon {
    width: 20px;
    min-width: 20px;
    margin-bottom: 4px;
    color: #555; /* Icon color */
    font-size: 17px;
    line-height: 1;
    text-align: center;
}

.mobile-bottom-nav .mobile-nav-item:hover {
    color: #b80000; /* Hover color for text */
}

.mobile-bottom-nav .mobile-nav-item:hover .mobile-nav-icon {
    color: #b80000; /* Hover color for icon */
}

/* Hide mobile bottom nav on larger screens */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Show mobile bottom nav on small screens */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Add padding to body to prevent content from being hidden by fixed bottom nav */
    }
}

/* Product Image Aspect Ratio */
.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #fafafa;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; /* Center the image within the container */
    padding: 8px;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    width: max-content;
    min-width: 200%;
    animation: marquee-scroll 24s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.marquee-group {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 50%;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 1.5rem;
}

.marquee-separator {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 1.5rem;
    font-size: 1.2rem;
    opacity: 0.6;
}

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

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee {
        height: 42px;
        font-size: 12px;
    }

    .marquee-content {
        animation-duration: 18s;
    }

    .marquee-group {
        min-width: 100vw;
    }

    .marquee-item,
    .marquee-separator {
        padding: 0 1rem;
    }
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-success {
    color: #fff;
    background-color: #28a745;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Star Rating Styles */
.stars i {
    font-size: 1rem !important; /* Force size */
    display: inline-block !important; /* Force display */
    color: inherit !important; /* Inherit color from parent .stars div */
    font-family: "Font Awesome 5 Free" !important; /* Force Font Awesome font */
    font-weight: 900 !important; /* Force solid icon weight */
}
.stars .far {
    /* For empty stars */
    font-weight: 400 !important; /* Force regular icon weight */
}

.product-card .product-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 0;
    text-align: center;
    margin-bottom: 0px;
    line-height: 1.35;
}

.product-card .product-description {
    font-size: 13px;
    color: #666;
    flex-grow: 1;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    padding: 12px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background-color: #fafafa;
    max-width: 100%;
    animation: fadeIn 0.6s ease-in-out;
}

.extras-box {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: 8px;
}

.extras-review {
    background-color: #fff7f7;
    color: #b80000;
    border: 1px solid #f0d2d2;
}

.extras-stock {
    background-color: #fff;
    color: #424242;
    border: 1px solid #eeeeee;
}

.icon-dot {
    width: 10px;
    height: 10px;
    background-color: #e53935;
    border-radius: 50%;
    box-shadow: 0 0 6px #f8bbd0;
    margin-right: 8px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Footer Redesign Styles */
.main-footer-redesign {
    background-color: #fff;
    /* padding: 40px 0; */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #eee;
}

.main-footer-redesign .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 30px;
}
.footer-logo-section img {
    max-height: 80px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #666;
    text-decoration: none;
    display: block;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col ul li a:hover {
    color: #b80000;
    transform: translateX(3px);
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.footer-social .social-icons a {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-social .social-icons a:hover {
    color: #b80000;
    transform: translateY(-2px);
}

.footer-copyright-section a {
    transition: color 0.25s ease;
}

.footer-copyright-section a:hover {
    color: #b80000 !important;
}

.footer-copyright-section {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-top: 1px solid #eee;
}
.footer-copyright-section .container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    text-align: left;
}
.footer-copyright-section span {
    font-size: 0.9rem;
    color: #666;
}

/* Media Queries for Footer */
@media (max-width: 992px) {
    .footer-columns-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col {
        text-align: center;
    }
    .footer-col ul {
        text-align: center;
    }
    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-columns-grid {
        grid-template-columns: 1fr;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col ul {
        text-align: center;
    }
    .footer-social .social-icons {
        justify-content: center;
    }
    .footer-copyright-section .container {
        text-align: center;
    }
}

.package-contents {
    user-select: none;
    margin-top: 18px;
    font-size: 14px;
    color: #555;
    border-radius: 8px;
    background-color: #fafafa;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #eeeeee;
}

.package-contents ul {
    padding-left: 0px;
    margin: 0;
    margin-top: 15px;
}

.package-contents ul li {
    margin-bottom: 8px;
    background-color: #fff;
    padding: 10px 10px !important;
    border-radius: 8px;
    border: 1px solid #eeeeee;
}

.package-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #151515;
}

.package-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 10px !important;
}

.package-product-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eeeeee;
}

.package-product-content {
    font-weight: 700;
}

.package-product-content a {
    color: inherit;
    text-decoration: none;
}

.package-product-content span {
    color: #6c757d;
    font-weight: 500;
}

@media screen and (max-width: 900px) {
    button.btn-primary.add-to-cart-btn {
        width: 100%;
        margin-bottom: 5px;
    }

    a.btn-secondary {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-gallery-card,
    .product-info-panel {
        box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
    }

    .product-info-panel {
        padding: 18px;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .gallery-top {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        margin-bottom: 36px;
    }

    .product-gallery-card {
        padding: 10px;
    }

    .gallery-top {
        height: 300px;
    }

    .gallery-thumbs {
        height: 82px;
    }

    .detail-price {
        padding: 12px;
    }

    .detail-current-price {
        font-size: 21px;
    }

    .detail-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .detail-actions .btn-primary,
    .detail-actions .btn-secondary {
        min-height: 48px;
    }
}
/* Styles moved from home.blade.php */
.info-item i {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #b80000; /* Or another color that fits the theme */
}
.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile-specific styles for homepage blocks */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
    }

    .block-section {
        margin: 30px 0 38px;
    }

    .product-block-header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .product-block-copy {
        max-width: none;
    }

    .product-block-title,
    .product-block-subtitle {
        text-align: center;
        width: 100%;
    }

    .product-block-subtitle {
        margin-top: 7px;
    }

    .product-block-action {
        width: 100%;
        padding-bottom: 0;
    }

    .block-view-all {
        width: 100%;
        min-height: 44px;
    }

    .block-empty-state {
        padding: 28px 16px;
    }

    .block-empty-state h3 {
        font-size: 18px;
    }

    .product-card .product-rating {
        flex-direction: column;
        align-items: center;
    }

    .product-card .product-rating .stars {
        margin-right: 0 !important; /* Remove existing right margin */
        margin-bottom: 5px; /* Add space between stars and text */
    }
}
/* Order Tracking Page Styles */
.order-tracking-page-container {
    padding: 50px 15px; /* Add vertical padding and keep horizontal padding from container */
    max-width: 100%; /* Ensure it uses full width on smaller screens */
}

.order-tracking-container {
    max-width: 800px;
    margin: auto;
}

.order-tracking-page-container .page-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.order-tracking-form-card {
    padding: 30px;
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 6px 12px rgba(0,0,0,0.1); /* More pronounced shadow */
    background-color: #fff;
    border: 1px solid #eee;
}

.order-tracking-form-card .form-group {
    margin-bottom: 20px;
}

.order-tracking-form-card label {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: block;
    color: #555;
    font-weight: 500;
}

.order-code-input {
    padding: 12px 15px; /* More padding */
    border: 2px solid #ddd; /* Slightly thicker border */
    border-radius: 8px; /* More rounded */
    width: 100%;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-code-input:focus {
    border-color: #b80000;
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 0, 0, 0.12);
}

.order-details-card {
    margin-top: 30px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    border: 1px solid #eee;
}

.order-details-card .section-title {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    color: #333;
    text-align: left; /* Override global section-title centering */
}

.order-details-card .section-subtitle {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    color: #333;
    text-align: left; /* Override global section-subtitle centering */
}

.order-details-card p {
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
}

.order-details-card strong {
    color: #333;
}

.order-details-card .list-group-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-details-card .list-group-item:last-child {
    border-bottom: none;
}

.order-details-card .product-image-small {
    width: 60px; /* Slightly larger image */
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 8px; /* More rounded */
    border: 1px solid #eee;
}

.order-details-card .product-info-small {
    font-weight: 500;
    flex-grow: 1;
}

.order-details-card .product-info-small a {
    text-decoration: none;
    color: #b80000;
    font-weight: 600;
}

.order-details-card .product-info-small span {
    margin-left: 10px;
    color: #6c757d;
    font-weight: normal;
}

.error-message-card {
    margin-top: 30px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    border: 1px solid #eee;
    text-align: center;
}

.error-message-card p {
    color: #dc3545;
    font-size: 1.1em;
    margin: 0;
}

/* Responsive adjustments for order tracking page */
@media (max-width: 768px) {
    .order-tracking-page-container .page-title {
        font-size: 28px;
    }

    .order-tracking-form-card,
    .order-details-card,
    .error-message-card {
        padding: 20px;
        margin-left: 15px; /* Add horizontal margin for smaller screens */
        margin-right: 15px;
    }

    .order-details-card .section-title,
    .order-details-card .section-subtitle {
        font-size: 20px;
    }

    .order-details-card .product-image-small {
        width: 50px;
        height: 50px;
    }
}
/* Usage Areas Filter Buttons */
.usage-area {
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.usage-areas-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eeeeee;
}

.usage-areas-title {
    color: #151515;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.usage-areas-subtitle {
    margin: 6px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.usage-areas-filter-buttons-container {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    min-width: 0;
}

.usage-areas-filter-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    flex-grow: 1;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.usage-areas-filter-buttons::-webkit-scrollbar {
    height: 6px;
}

.usage-areas-filter-buttons::-webkit-scrollbar-thumb {
    background-color: #d8d8d8;
    border-radius: 99px;
}

.usage-areas-filter-buttons::-webkit-scrollbar-track {
    background-color: #f7f7f7;
}

.usage-area-button {
    flex-shrink: 0;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: #303030;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 800;
}

.usage-area-button:hover {
    border-color: #b80000;
    background: #fff7f7;
    color: #b80000;
    transform: translateY(-1px);
}

.usage-area-button.selected {
    border-color: #b80000;
    background-color: #b80000;
    color: #fff;
}

.clear-filter-icon-btn {
    flex-shrink: 0;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid #f0d2d2;
    border-radius: 8px;
    background: #fff7f7;
    color: #b80000;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.clear-filter-icon-btn:hover {
    border-color: #b80000;
    background-color: #fff;
}

.product-search-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #fff8f8);
}

.product-search-copy {
    min-width: 180px;
}

.product-search-title {
    color: #171717;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.product-search-subtitle {
    margin: 5px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.45;
}

.product-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 560px;
}

.product-search-input {
    width: 100%;
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-search-input:focus {
    border-color: #b80000;
    box-shadow: 0 0 0 3px rgba(184, 0, 0, 0.09);
}

.product-search-submit,
.product-search-clear {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-search-submit {
    border: 1px solid #b80000;
    background: #b80000;
    color: #fff;
    box-shadow: 0 8px 18px rgba(184, 0, 0, 0.16);
}

.product-search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(184, 0, 0, 0.2);
}

.product-search-clear {
    border: 1px solid #f0d2d2;
    background: #fff7f7;
    color: #b80000;
}

.product-search-clear:hover {
    background: #fff;
}

.product-empty-state {
    grid-column: 1 / -1;
    width: 100%;
    padding: 28px 18px;
    border: 1px dashed #efcaca;
    border-radius: 8px;
    background: #fffafa;
    color: #8c1a1a;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}

/* Adjust card padding for filter section */
.card.p-3 {
    padding: 15px !important; /* Reduce padding */
}

/* Responsive adjustments for filter buttons */
@media (max-width: 768px) {
    .whatsapp-support-widget {
        right: 14px;
        bottom: 86px;
    }

    .whatsapp-support-toggle {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .whatsapp-support-card {
        width: min(312px, calc(100vw - 28px));
    }

    .usage-area {
        padding: 14px;
        margin-bottom: 18px;
    }

    .product-search-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .product-search-form {
        max-width: none;
        flex-wrap: wrap;
    }

    .product-search-input {
        flex-basis: 100%;
    }

    .product-search-submit,
    .product-search-clear {
        flex: 1;
        justify-content: center;
    }

    .usage-areas-header {
        flex-direction: column;
        gap: 12px;
    }

    .clear-filter-icon-btn {
        width: 100%;
    }

    .usage-areas-filter-buttons {
        padding-left: 0;
        padding-right: 0;
    }
    .usage-areas-filter-buttons-container {
        padding-left: 0;
        padding-right: 0;
    }
    .card.p-3 {
        padding: 10px !important; /* Further reduce padding on mobile */
    }
    .card h5.mb-3 {
        margin-bottom: 10px !important; /* Adjust heading margin */
    }

    /* Checkout Page Product List Mobile Adjustments */
    .checkout-cart-item .cart-item-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .checkout-cart-item .cart-item-name-wrapper {
        width: 100%;
        margin-bottom: 5px;
    }

    .checkout-cart-item .cart-item-qty-price-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .checkout-cart-item .cart-item-qty-price-wrapper .quantity-selector {
    }

    .checkout-cart-item .cart-item-qty-price-wrapper .item-subtotal {
        font-size: 15px;
        font-weight: bold;
        text-align: right;
        margin-top: 5px; /* Add margin-top back via CSS */
        flex-shrink: 0; /* Prevent it from shrinking */
    }
}
