html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    background: #f5f7fb;
}

.card {
    border: 0;
    border-radius: 14px;
}

.card-shadow {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.product-card {
    transition: .2s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e9ecef;
}

.product-img-sm {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    background: #e9ecef;
}

.admin-stat {
    border-left: 5px solid #212529;
}

.table td, .table th {
    vertical-align: middle;
}

.footer {
    background: #fff;
}

.badge {
    font-weight: 600;
    letter-spacing: .01em;
}

.company-logo-preview {
    max-width: 120px;
    max-height: 70px;
    object-fit: contain;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 8px;
}

@media print {
    body {
        background: #fff;
    }

    .card-shadow {
        box-shadow: none !important;
        border: 1px solid #ddd;
    }

    a[href]:after {
        content: "";
    }
}

/* Home Slider */
.ecommerce-slider {
    border-radius: 18px;
    overflow: hidden;
    background: #111827;
}

.slider-item {
    min-height: 430px;
    background: linear-gradient(120deg, #111827, #374151);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 70px;
    color: #fff;
}

.slider-content {
    max-width: 650px;
    position: relative;
    z-index: 5;
}

.ecommerce-slider .carousel-control-prev,
.ecommerce-slider .carousel-control-next {
    z-index: 3;
    width: 7%;
}

.ecommerce-slider .carousel-indicators {
    z-index: 6;
}

.slider-content .lead {
    color: rgba(255,255,255,.86);
}

.slider-img-sm {
    width: 130px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    background: #e9ecef;
}

.current-slider-preview {
    width: 100%;
    max-width: 520px;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

.special-offer-hero {
    background: linear-gradient(120deg, #7f1d1d, #dc2626, #f97316);
}

.offer-ribbon {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

@media (max-width: 767px) {
    .slider-item {
        min-height: 360px;
        padding: 42px 28px;
    }

    .slider-content h1 {
        font-size: 2rem;
    }
}

/* Daraz-style category image grid on home page */
.daraz-category-section {
    background: #f5f5f5;
    padding: 18px 0 0;
}

.daraz-section-title {
    font-size: 24px;
    font-weight: 500;
    color: #222;
    margin: 0 0 8px;
}

.daraz-category-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    background: #fff;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

.daraz-category-card {
    height: 152px;
    padding: 14px 8px 10px;
    text-align: center;
    color: #111;
    text-decoration: none;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: all .16s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.daraz-category-card:hover {
    color: #f85606;
    box-shadow: 0 2px 10px rgba(0,0,0,.14);
    position: relative;
    z-index: 2;
    transform: translateY(-1px);
}

.daraz-category-img-box {
    width: 86px;
    height: 86px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.daraz-category-img-box img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    display: block;
}

.daraz-category-placeholder {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.daraz-category-name {
    width: 100%;
    min-height: 38px;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.category-img-sm {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

.category-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 11px;
}

.category-preview-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
}

@media (max-width: 1199px) {
    .daraz-category-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .daraz-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .daraz-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .daraz-category-card {
        height: 140px;
    }

    .daraz-category-img-box,
    .daraz-category-img-box img {
        width: 76px;
        height: 76px;
    }
}

/* Daraz-style Just For You product section */
.daraz-just-section {
    background: #f5f5f5;
    padding: 0 0 24px;
}

.daraz-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.daraz-product-card-wrap {
    min-width: 0;
}

.daraz-product-card {
    display: block;
    height: 100%;
    background: #fff;
    color: #212121;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .16s ease-in-out;
    overflow: hidden;
}

.daraz-product-card:hover {
    color: #212121;
    box-shadow: 0 2px 12px rgba(0,0,0,.16);
    transform: translateY(-2px);
    border-color: #eee;
}

.daraz-product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    overflow: hidden;
}

.daraz-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-in-out;
}

.daraz-product-card:hover .daraz-product-img-wrap img {
    transform: scale(1.03);
}

.daraz-product-info {
    padding: 9px 10px 10px;
}

.daraz-product-title {
    min-height: 38px;
    font-size: 14px;
    line-height: 19px;
    color: #212121;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.daraz-product-price {
    margin-top: 7px;
    color: #f85606;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.daraz-product-discount {
    margin-top: 2px;
    min-height: 18px;
    color: #555;
    font-size: 12px;
    line-height: 18px;
}

.daraz-old-price {
    color: #9e9e9e;
    text-decoration: line-through;
    margin-right: 5px;
}

.daraz-stock-line {
    margin-top: 5px;
    color: #888;
    font-size: 12px;
    line-height: 16px;
}

@media (max-width: 1199px) {
    .daraz-product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .daraz-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .daraz-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .daraz-product-title {
        font-size: 13px;
    }

    .daraz-product-price {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .daraz-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Discount display for Featured Products section */
.featured-product-price {
    color: #f85606;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.featured-product-discount-line {
    margin-top: 3px;
    font-size: 13px;
    line-height: 18px;
}

.featured-old-price {
    color: #9e9e9e;
    text-decoration: line-through;
    margin-right: 6px;
}

.featured-discount-text {
    color: #555;
}


/* Daraz-style product listing for Home, Featured Products, Just For You, and Offers */
.daraz-home-product-section {
    background: #f5f5f5;
    padding: 0 0 20px;
}

.daraz-product-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.daraz-view-offer-link {
    color: #f85606;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.daraz-view-offer-link:hover {
    color: #d9480f;
    text-decoration: underline;
}

.daraz-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.daraz-product-card-wrap {
    min-width: 0;
}

.daraz-product-card {
    display: block;
    height: 100%;
    min-height: 304px;
    background: #fff;
    color: #212121;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .16s ease-in-out;
    overflow: hidden;
}

.daraz-product-card:hover {
    color: #212121;
    box-shadow: 0 2px 12px rgba(0,0,0,.16);
    transform: translateY(-2px);
    border-color: #eee;
}

.daraz-product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    overflow: hidden;
}

.daraz-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-in-out;
}

.daraz-product-card:hover .daraz-product-img-wrap img {
    transform: scale(1.03);
}


.daraz-product-info {
    padding: 9px 10px 10px;
}

.daraz-product-title {
    min-height: 38px;
    font-size: 14px;
    line-height: 19px;
    color: #212121;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.daraz-product-price {
    margin-top: 7px;
    color: #f85606;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.daraz-product-discount {
    margin-top: 2px;
    min-height: 18px;
    color: #555;
    font-size: 12px;
    line-height: 18px;
}

.daraz-old-price {
    color: #9e9e9e;
    text-decoration: line-through;
    margin-right: 5px;
}

.daraz-stock-line {
    margin-top: 4px;
    color: #888;
    font-size: 12px;
    line-height: 16px;
}

@media (max-width: 1199px) {
    .daraz-product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .daraz-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .daraz-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .daraz-product-card {
        min-height: 270px;
    }

    .daraz-product-title {
        font-size: 13px;
    }

    .daraz-product-price {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .daraz-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* bKash manual payment section */
.bkash-payment-box {
    border: 1px solid #f6c1d9;
    background: #fff7fb;
    border-radius: 12px;
    padding: 16px;
}

.bkash-logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2136e;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.bkash-merchant-number {
    display: inline-block;
    background: #fff;
    color: #212121;
    border: 1px dashed #e2136e;
    border-radius: 8px;
    padding: 8px 12px;
}

/* Nagad manual payment section */
.nagad-payment-box {
    border: 1px solid #ffd0a8;
    background: #fff8f1;
    border-radius: 12px;
    padding: 16px;
}

.nagad-logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f58220;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.nagad-merchant-number {
    display: inline-block;
    background: #fff;
    color: #212121;
    border: 1px dashed #f58220;
    border-radius: 8px;
    padding: 8px 12px;
}


.product-description-text {
    white-space: pre-wrap;
    font-size: 16px;
    line-height: 1.75;
    color: #555;
}


.special-offer-small-banner {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff3e6;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.special-offer-small-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .special-offer-small-banner {
        height: 130px;
        border-radius: 10px;
    }
}


/* ===============================
   Professional Role Based Top Menu
   =============================== */

.ecommerce-navbar {
    background: #1f2428;
    min-height: 72px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
    z-index: 1050;
}

.ecommerce-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    white-space: nowrap;
}

.brand-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #ff5a00, #ff8a00);
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(255,90,0,0.35);
}

.ecommerce-nav-link {
    color: rgba(255,255,255,0.78) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 13px !important;
    border-radius: 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .ecommerce-nav-link:hover,
    .ecommerce-nav-link:focus {
        color: #fff !important;
        background: rgba(255,255,255,0.08);
    }

.ecommerce-dropdown {
    border: none;
    border-radius: 14px;
    padding: 10px;
    min-width: 210px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.16);
}

    .ecommerce-dropdown .dropdown-item {
        font-size: 14px;
        font-weight: 600;
        border-radius: 10px;
        padding: 10px 12px;
        color: #333;
    }

        .ecommerce-dropdown .dropdown-item:hover {
            background: #fff3e8;
            color: #ff5a00;
        }

.user-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    padding: 9px 15px !important;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

    .user-pill:hover {
        background: rgba(255,255,255,0.14);
        color: #fff !important;
    }

.register-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff5a00, #ff8a00);
    color: #fff !important;
    padding: 9px 18px !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(255,90,0,0.30);
}

    .register-btn:hover {
        color: #fff !important;
        transform: translateY(-1px);
    }

.custom-toggler {
    border: 1px solid rgba(255,255,255,0.20);
}

    .custom-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    filter: invert(1);
}

.main-content {
    min-height: calc(100vh - 130px);
    background: #f5f6fa;
}

.footer {
    font-size: 14px;
}

@media (max-width: 991px) {
    .ecommerce-navbar {
        min-height: auto;
        padding: 10px 0;
    }

    .navbar-nav {
        margin-top: 14px;
        align-items: stretch !important;
    }

    .ecommerce-nav-link,
    .user-pill,
    .register-btn {
        padding: 11px 12px !important;
        justify-content: flex-start;
        border-radius: 10px;
    }

    .ecommerce-dropdown {
        box-shadow: none;
        border-radius: 10px;
        background: rgba(255,255,255,0.05);
    }

        .ecommerce-dropdown .dropdown-item {
            color: rgba(255,255,255,0.85);
        }

            .ecommerce-dropdown .dropdown-item:hover {
                background: rgba(255,255,255,0.08);
                color: #fff;
            }

        .ecommerce-dropdown .dropdown-item-text {
            color: rgba(255,255,255,0.65) !important;
        }
}
/* ===============================
   New Order Notification
   =============================== */

.order-notification-link {
    position: relative;
    color: #fff !important;
    font-size: 20px;
    padding: 9px 14px !important;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    min-width: 46px;
    text-align: center;
}

.order-notification-link:hover,
.order-notification-link:focus {
    background: rgba(255,255,255,0.14);
    color: #fff !important;
}

.order-bell-icon {
    line-height: 1;
}

.order-notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ff3b30;
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(255,59,48,0.35);
}

.new-order-badge {
    background: #ff3b30;
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    margin-left: 12px;
}

@media (max-width: 991px) {
    .order-notification-link {
        display: inline-flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        min-width: 100%;
        padding: 11px 12px !important;
        border-radius: 10px;
    }

    .order-notification-link::after {
        content: " New Orders";
        font-size: 14px;
        font-weight: 700;
        margin-left: 8px;
    }

    .order-notification-badge {
        top: 8px;
        right: 12px;
    }





    .custom-toggler {
        width: 50px;
        height: 46px;
        border: 2px solid rgba(255, 255, 255, 0.35) !important;
        border-radius: 9px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
    }

        .custom-toggler:focus {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
        }

    .custom-menu-icon {
        width: 24px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .custom-menu-icon span {
            display: block;
            width: 24px;
            height: 3px;
            background: #ffffff;
            border-radius: 999px;
        }




}

/* ===============================
   Professional 5 Column Site Footer
   =============================== */
.site-footer {
    background: #111827;
    color: #d1d5db;
    margin-top: 40px;
    border-top: 4px solid #f97316;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 22px;
    padding: 38px 0 28px 0;
    align-items: start;
}

.footer-brand-box,
.footer-column {
    min-width: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.2;
    text-decoration: none;
}

.footer-brand:hover {
    color: #ffffff;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
    padding: 3px;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.footer-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
}

.footer-description {
    max-width: 360px;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    word-break: break-word;
}

.footer-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer-trust-list span {
    display: inline-block;
    background: rgba(249, 115, 22, 0.12);
    color: #fed7aa;
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.footer-column h6,
.footer-contact h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

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

.footer-column ul li {
    margin-bottom: 9px;
    word-break: break-word;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: all .2s ease;
}

.footer-column a:hover {
    color: #f97316;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.14);
    color: #fb923c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.footer-contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 2px;
}

.footer-contact-item p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.45;
    word-break: break-word;
}

.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #f97316;
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #9ca3af;
    font-size: 13px;
}

.footer-developed a {
    color: #f97316;
    text-decoration: none;
    font-weight: 900;
}

.footer-developed a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand-box {
        grid-column: span 3;
    }
}

@media (max-width: 767px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0 22px 0;
    }

    .footer-brand-box {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .site-footer {
        margin-top: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand-box {
        grid-column: span 1;
    }

    .footer-brand {
        font-size: 19px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1050;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.40);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-floating-btn::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.18);
    z-index: -1;
}

.whatsapp-floating-btn:hover {
    color: #ffffff;
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.48);
}

.whatsapp-floating-icon {
    width: 36px;
    height: 36px;
    fill: #ffffff;
    display: block;
}

@media (max-width: 575px) {
    .whatsapp-floating-btn {
        right: 16px;
        bottom: 18px;
        width: 56px;
        height: 56px;
        border-width: 3px;
    }

    .whatsapp-floating-icon {
        width: 31px;
        height: 31px;
    }
}

/* SEO / Marketing / Policy Pages */
.policy-page {
    max-width: 1180px;
    margin: 0 auto;
}

.policy-hero {
    background: linear-gradient(135deg, #111827, #1f2937, #f97316);
    color: #ffffff;
    border-radius: 24px;
    padding: 46px 42px;
    margin-bottom: 26px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    position: relative;
}

.policy-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -90px;
    top: -90px;
}

.policy-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.policy-hero h1 {
    font-size: 38px;
    line-height: 1.12;
    font-weight: 900;
    margin: 0 0 12px 0;
}

.policy-hero p {
    max-width: 850px;
    color: #f3f4f6;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.policy-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.policy-summary-card,
.policy-main-card,
.policy-note-box,
.policy-disclaimer {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.policy-summary-card {
    padding: 18px;
}

.policy-summary-card span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 6px;
}

.policy-summary-card strong {
    display: block;
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
}

.policy-summary-card p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.policy-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.policy-main-card {
    padding: 24px;
}

.policy-main-card h2 {
    color: #111827;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 12px 0;
}

.policy-main-card h3 {
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
}

.policy-main-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-check-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.policy-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #374151;
    line-height: 1.55;
}

.policy-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.policy-warning-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 14px;
    padding: 14px 16px;
    line-height: 1.6;
}

.policy-two-column {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: start;
}

.policy-note-box {
    background: #f8fafc;
    padding: 18px;
}

.policy-note-box p {
    margin-bottom: 0;
}

.policy-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.policy-tag-grid span {
    display: inline-flex;
    align-items: center;
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
}

.policy-step-list {
    display: grid;
    gap: 12px;
}

.policy-step-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 13px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
}

.policy-step-item span {
    width: 38px;
    height: 38px;
    background: #111827;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.policy-step-item p {
    margin: 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.policy-table th {
    background: #111827;
    color: #ffffff;
    padding: 12px;
    font-size: 14px;
    text-align: left;
}

.policy-table td {
    padding: 12px;
    border-top: 1px solid #e5e7eb;
    color: #374151;
    vertical-align: top;
}

.policy-table tr:nth-child(even) td {
    background: #f9fafb;
}

.contact-card .contact-line {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.5;
}

.contact-card .contact-line:last-child {
    border-bottom: none;
}

.policy-disclaimer {
    background: #f8fafc;
    color: #4b5563;
    padding: 18px;
    line-height: 1.6;
}

.faq-list h3 {
    margin-top: 18px;
}

.faq-list h3:first-child {
    margin-top: 0;
}

@media (max-width: 991px) {
    .policy-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .policy-content-grid,
    .policy-two-column {
        grid-template-columns: 1fr;
    }

    .policy-hero {
        padding: 36px 28px;
    }

    .policy-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .policy-hero {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-summary-grid {
        grid-template-columns: 1fr;
    }

    .policy-main-card {
        padding: 18px;
    }

    .policy-step-item {
        grid-template-columns: 34px 1fr;
    }

    .policy-step-item span {
        width: 32px;
        height: 32px;
    }
}

/* Optional product colour/size card action */
.product-card-action {
    padding: 0 12px 12px;
    background: #fff;
}
.product-card-action .btn {
    font-weight: 700;
}

.daraz-product-card-wrap {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.daraz-product-card-wrap .daraz-product-card {
    height: auto;
    flex: 1 1 auto;
}

.daraz-product-card-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
}

.daraz-product-card-wrap:hover .daraz-product-card {
    transform: none;
    box-shadow: none;
}
