* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- COLORS & SIZING (tweak to match exact design) ---------- */
:root {
    --topbar-bg: #2f3438;
    /* dark thin top strip */
    --accent-blue: #0da05b;
    /* pill/button primary */
    --accent-blue-dark: #054522;
    /* pill hover */
    --muted: #7c8a94;
    /* subtitle color */
    --search-bg: #d8dfda;
    /* slight blue search background */
    --header-border: #10440c;
    /* divider color below header */
    --card-h: 140px;
    /* card height — tweak if you need larger cards */
    --gap: 18px;
}

body {
    overflow-x: hidden;
    background: linear-gradient(135deg, #3f7d67, #317d63);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    padding-top: 156px;
}

/* Top thin strip */
.topbar {
    background: var(--topbar-bg);
    color: #dfe9ef;
    font-size: 13px;
    line-height: 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.topbar a {
    color: #c9d6dd;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Main header */
/* HEADER */
.main-header {
    border-bottom: 1px solid var(--header-border);
    padding: 15px 0;
    position: fixed;
    top: 26px;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* BRAND */
.brand img {
    height: 58px;
}

.animated-text {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff, #ffa500, #800080);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.brand-logo {
    height: 42px;        /* navbar height control */
    width: auto;
    object-fit: contain;
}

.brand-text {
    margin-left: 8px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.brand-tagline {
    font-size: clamp(16px, 1.8vw, 12px);
    font-weight: 600;
    color: #079651;
}

.brand-name {
    font-size: clamp(20px, 2.5vw, 18px);
    font-weight: 700;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .brand-name {
        font-size: 14px;
    }
    .brand-tagline {
        display: none;   /* mobile me hide */
    }
}



/* LOGIN ICON */
.login-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: .3s;
}

/* Tooltip final version */
.login-tooltip {
    position: absolute;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
    z-index: 20;
}

/* Tooltip arrow */
.login-tooltip::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
}

/* Tooltip visible class */
.login-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Shake Animation */
@keyframes shake {
    0% {
        transform: translateX(-50%)
    }

    25% {
        transform: translateX(calc(-50% - 3px))
    }

    50% {
        transform: translateX(calc(-50% + 3px))
    }

    75% {
        transform: translateX(calc(-50% - 2px))
    }

    100% {
        transform: translateX(-50%)
    }
}

.shake {
    animation: shake .5s;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }

    .login-text,
    .cart-text {
        display: none !important;
    }
}


/* review */

@media (min-width: 768px) {
    .content-box {
        display: none;
    }
}

/* CATEGORY ROW */
.category-row {
    background: #f2f3f2;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-row.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* WRAPPER - scrolls on small screens */
.category-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Mobile view */
@media (max-width: 576px) {
    .category-wrapper {
        gap: 10px !important;
    }
}

.custom-scrollbar{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 50px;  
}

/* Mobile only */
@media (max-width: 768px) {
    .custom-scrollbar {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        gap:10px;
        justify-content: flex-start;
    }

    .category-row{
        top: 170px;
    }

    .custom-scrollbar::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .scroll-item {
        flex: 0 0 auto;
        padding: 8px 14px;
        border-radius: 20px;
        background: #f5f5f5;
        font-size: 14px;
        cursor: pointer;
        white-space: nowrap;
    }
}


/* CATEGORY PILL BUTTON */
.cat-pill {
    background: #f6f5f5;
    border: 1px solid #1f1f1f;
    color: #10440c;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
}

/* HOVER EFFECT */
.cat-pill:hover {
    background: #8e8c8c;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(99, 255, 88, 0.25);
    transform: translateY(-2px);
}

/* MOBILE SCROLL ONLY FOR CATEGORY SECTION */
.category-wrapper {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 5px;
    flex-wrap: nowrap;
    justify-content: flex-start;

    /* smooth UX */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* items */
.cat-pill {
    display: inline-flex;
    white-space: nowrap;
    flex-shrink: 0;
}


/* Base dot */
.carousel-indicators .indicator-dot {
    width: 28px;
    height: 4px;
    border-radius: 10px;
    background: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    margin-right: 8px;
    /* Smooth transition */
    transition: width 0.45s ease, background 0.3s ease;
}

/* Active dot becomes wider */
.carousel-indicators .indicator-dot.active {
    width: 20px;
    /* Smoothly expands */
    background: #fff;
}

/* Running fill bar */
.carousel-indicators .indicator-dot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #10440c;
    border-radius: 10px;

    /* Smooth fill */
    transition: width linear;
}

/* Start fill animation only on active */
.carousel-indicators .indicator-dot.active::after {
    animation: fillBar var(--carousel-time) linear forwards;
}

/* Keyframes for fill */
@keyframes fillBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.hero-slide {
    background: #111e4f;
    border-radius: 22px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 100px !important;
        border-radius: 16px;
    }
}


/* Banner Image */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
}


/* ===== NAVIGATION BUTTONS ===== */
.custom-nav {
    width: 46px;
    height: 46px;
    background: #f2f8ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.custom-nav span {
    color: #0b84d1;
    font-size: 22px;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* ===== INDICATOR DOTS ===== */
/* Card box */
/* ---- Parent Arrow Position ---- */
.slider-wrapper {
    position: relative;
}

.slider-arrows {
    position: absolute;
    bottom: -40px;
    right: 50px;
    display: flex;
    gap: 10px;
}

.custom-arrow {
    width: 32px !important;
    height: 32px !important;
    background: #0a643f;
    color: #fff !important;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.custom-arrow:hover {
    transform: scale(1.1);
}

/* FIX BIG ARROWS */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    color: #fff !important;
}


@media (max-width: 768px){
    .custom-nav{
        top: 70%;
         width: 20px;
    height: 30px;
    }
    .hero-slide{
        margin-top: 60px;
    }
    .carousel-indicators {
    top: 90%;
}
}

/* ---- Card box ---- */
.deal-card {
    background: rgb(250, 250, 250);
    border-radius: 14px;
    position: relative;
    padding: 12px;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* FULL BORDER ANIMATION */
.deal-card::before,
.deal-card::after {
    content: "";
    position: absolute;
    border: 2px solid #0a4f29;
    height: 0;
    width: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-radius: 8px;
    transition: width 0.45s ease, height 0.45s ease;
}

.deal-card::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.deal-card::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.deal-card:hover::before {
    width: 100%;
    height: 100%;
}

.deal-card:hover::after {
    width: 100%;
    height: 100%;
}

/* ---- IMAGE WRAP ---- */
.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.img-wrap:hover .product-img {
    transform: scale(1.08);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* Product Image */
.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out;
}

/* ---- IMAGE WRAP ---- */
.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

/* Product Image hover zoom still works on image hover */
.img-wrap:hover .product-img {
    transform: scale(1.08);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* Product Image */
.product-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out;
}

/* Add to Cart Button */
/* Add to Cart Button */
.add-btn {
    position: absolute;
    bottom: 1px;
    left: 14px;
    right: 14px;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 0px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Show Add to Cart button on card hover */
.deal-card:hover .add-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Cart icon inside button is initially hidden */
.cart-icon {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 16px;
    font-weight: bold;
}

.product-info {
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Product Title */
.product-info h6 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s ease-in-out;
}

/* Price Styling */
.product-info .price {
    font-size: 16px;
    font-weight: 700;
    color: #0a4f29;
    /* Dark green */
    margin-bottom: 4px;
}

/* Strike-through for original price */
.product-info .price .strike {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-left: 6px;
}

/* Savings text */
.product-info .save {
    font-size: 14px;
    font-weight: 600;
    color: #ff4d6d;
    /* Highlight savings in pink/red */
}

/* Optional: hover effect on product title */
.deal-card:hover .product-info h6 {
    color: #198754;
    /* Slight color change on card hover */
}


/* Show cart icon only when hovering the Add to Cart button */
.add-btn:hover .cart-icon {
    opacity: 1;
}


.deal-card:hover .add-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Wishlist icon positioned at card bottom-right */
.wishlist-btn {
    position: absolute;
    bottom: 12px;
    /* card bottom padding */
    right: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

.deal-card:hover .wishlist-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Tooltip */
.wishlist-btn:hover::after {
    content: "Add to Wishlist";
    position: absolute;
    bottom: 50px;
    /* above the button */
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
}

/* Scroll Wrapper */
.category-scroll {
    overflow-x: auto;
    padding: 10px 0px;
    scrollbar-width: thin;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

/* Hide scrollbar on mobile */
.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Category Box */
.cat-box {
    text-align: center;
    min-width: 150px;
}

/* Updated Category Item */
.category-item {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #f7f8fc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: 0.3s ease;
    border: 3px solid transparent;
    position: relative;

    /* Modern SVG style background */
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='80' cy='80' r='72' stroke='%230d6efd' stroke-width='3' fill='none' stroke-dasharray='6 10' stroke-opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.2s;
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.25));
}

/* Hover Effect */
.category-item:hover {
    background: #eef3ff;
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Category Title */
.cat-title {
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #ffffff;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 576px) {
    .category-item {
        width: 150px;
        height: 150px;
    }

    .cat-box {
        min-width: 120px;
    }

    .cat-title {
        font-size: 14px;
    }
}

/* ===================== BOTTOM BANNER ===================== */
.bottom-banner img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

/* ===== BRAND CARDS ===== */
.brand-card-modern {
    width: 100%;
    height: 250px;
    /* adjust height as you like */
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.brand-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* FULL IMAGE COVER */
    object-position: center;
    /* CENTER PERFECT */
    display: block;
}

/* Backgrounds */
.bg-dark {
    background: #1c1c1c;
}

.bg-yellow {
    background: #fff8d8;
}

.bg-peach {
    background: #ffe7db;
}

/* Product Image */


/* Pagination dots */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #0d6efd;
}

/* overall section */
.testimonial-section {
    position: relative;
    overflow: visible;
    padding-bottom: 30px;
}

/* container white inset look (optional if you already have) */
.container {
    position: relative;
}


/* Background Image + Transparent Layer */
.background-overlay {
    background: url('../../images/comba/review.png') center/cover no-repeat;
    border-radius: 16px;
    overflow: hidden;
    min-height: 500px;
}

/* testimonial card (exact look like reference) */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 22px 22px 40px;
    position: relative;
    height: var(--card-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #bddcd5 0%, #9fdebc 100%);
}

/* quote */
.testimonial-card .quote {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 36px;
    color: #0d6efd;
    opacity: 0.9;
    line-height: 0.6;
}

/* review */
.testimonial-card .review {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
}

/* name */
.testimonial-card .name {
    font-weight: 700;
    font-size: 13px;
    color: #0f1724;
}

/* avatar */
.testimonial-card .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    position: absolute;
    right: 12px;
    bottom: 12px;
    object-fit: cover;
}

/* clear swiper backgrounds to avoid any dark/black artifacts */
.verticalSwiper,
.verticalSwiper .swiper-wrapper,
.verticalSwiper .swiper-slide {
    background: transparent !important;
}

/* set swiper container height based on card size and gap so there is no stray area */
.verticalSwiper {
    /* show 3 rows by default (desktop). On smaller screens breakpoints in JS adjust slidesPerView */
    height: calc((var(--card-h) * 3) + (var(--gap) * 2));
    overflow: visible;
    position: relative;
}

/* when mobile (1 card) adjust height */
@media (max-width:767.98px) {
    .verticalSwiper {
        height: calc(var(--card-h) * 1);
        /* only one card visible */
    }
}

@media (min-width:768px) and (max-width:991.98px) {
    .verticalSwiper {
        height: calc((var(--card-h) * 2) + var(--gap));
        /* two cards visible */
    }
}

/* pagination style (vertical dots) */
.verticalSwiper .swiper-pagination {
    position: absolute;
    right: -18px;
    /* place dots slightly outside to match ref */
    top: 6px;
    bottom: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: auto;
}

.verticalSwiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #d0d6dd;
    opacity: 1;
    border-radius: 50%;
}

.verticalSwiper .swiper-pagination-bullet-active {
    background: #0d6efd;
    transform: scale(1.05);
}

/* bottom colorful strip (reference) */


/* small visual polish */
.testimonial-section h2 {
    line-height: 1.05;
}

.footer-section ul li {
    cursor: pointer;
    transition: 0.2s;
}


.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle img {
    width: 35px;
    height: 35px;
    filter: brightness(100%) contrast(100%);
}

.title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.sub {
    margin: 0;
    font-size: 15px;
    color: #111;
}

.divider {
    width: 2px;
    height: 55px;
    background: rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .feature-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .divider {
        display: none;
    }
}


/* Footer background */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #c5e8d4, #63d8b3, #0e7c61);
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: url('../../images/comba/footer.webp');
    opacity: 0.09;
    background-size: cover;
    background-position: center;
}

/* Newsletter */
.newsletter-box {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(14px);
}

.newsletter-input-box input {
    border: none;
}

.newsletter-input-box input:focus {
    outline: none;
    box-shadow: none;
}

/* Footer Lists */
.footer-list li {
    margin-bottom: 10px;
    color: black;
    cursor: pointer;
    transition: 0.3s;
}

.footer-list li:hover {
    transform: scale(1.05);
    font-weight: bold;
}

/* Social Icons */
.footer-social img {
    transition: 0.3s;
}

.footer-social img:hover {
    transform: scale(1.15);
}

/* Payment Icons */
.footer-payment img {
    transition: 0.3s;
}

.footer-payment img:hover {
    transform: scale(1.1);
}

/* Footer Heading */
.footer-heading {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 8px;
}

/* Responsive */
@media (max-width: 576px) {
    .newsletter-box {
        text-align: center;
    }

    .newsletter-input-box {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input-box button {
        width: 100%;
    }
}


/* login css  */

.center-login {
    min-height: 100vh;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 900px;
    height: 520px;
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.register-container {
    width: 900px;
    height: 520px;
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.resgister-left {
    width: 50%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 50px;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #106852 transparent;
    /* Firefox */
    /* avoids scrollbar overlap */
}

/* Chrome, Edge, Safari */
.resgister-left::-webkit-scrollbar {
    width: 6px;
}

.resgister-left::-webkit-scrollbar-track {
    background: transparent;
}

.resgister-left::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6c757d, #343a40);
    border-radius: 10px;
}

.resgister-left::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #495057, #212529);
}


/* LEFT */
.login-left {
    width: 50%;
    padding: 50px;
}

.login-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #777;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

.form-group input:focus {
    border-color: #4CAF50;
}

.options {
    margin-bottom: 20px;
    font-size: 14px;
}

.options a {
    color: #4CAF50;
    text-decoration: none;
}

.btn-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background-color: #28a745;
    /* normal color */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* Hover = 100% dark */
.btn-link:hover {
    background-color: #000;
    /* full dark */
    color: #fff;
}


.signup {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}

.signup a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

/* RIGHT */
.login-right {
    width: 50%;
    background: url("../../images/comba/loginbg.png") center/cover no-repeat;
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        width: 95%;
    }

    .login-left,
    .login-right {
        width: 100%;
    }

    .login-right {
        height: 220px;
    }
}


.sidebar {
    background: #fff;
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 10px;
}

.sidebar h5 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.sidebar label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    cursor: pointer;
}


/* ===== PRODUCT PAGE UI ===== */

.product-title {
    font-size: 26px;
    font-weight: 600;
}

.product-short-desc {
    font-size: 14px;
    color: #6c757d;
}

.price-box {
    margin: 15px 0;
}

.price-new {
    font-size: 28px;
    font-weight: 700;
    color: #dc3545;
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s ease;
}

.thumb-img:hover {
    border: 2px solid #dc3545;
}

.img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    display: block;
}

/* ZOOM */
#lens {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid #dc3545;
    background: rgba(255, 255, 255, .3);
    display: none;
    cursor: crosshair;
    pointer-events: none;
}

#zoomResult {
    position: fixed;
    top: 30%;
    left: 50%;
    width: 650px;
    height: 450px;
    border: 1px solid #ddd;
    background-repeat: no-repeat;
    background-size: 200%;
    display: none;
    z-index: 999;
    background-color: #fff;
}

/* RIGHT PANEL */
.product-info label {
    font-size: 14px;
}

.delivery-box {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.qty-box {
    display: flex;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.qty-box button {
    width: 35px;
    border: none;
    background: #f8f9fa;
}

.qty-box input {
    width: 50px;
    text-align: center;
    border: none;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-buttons .btn {
    flex: 1;
    padding: 12px;
    font-weight: 600;
}

.share-box {
    margin-top: 20px;
    font-size: 14px;
}

.share-box a {
    margin-left: 10px;
    text-decoration: none;
    font-size: 24px;
}

/* RELATED */
.deal-card {
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 10px;
    transition: all .2s ease;
}

.deal-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}



/* Wishlist Item Card */
.wishlist-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

/* Product Image */
.wishlist-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Info Section */
.wishlist-info {
    flex: 1;
}

.wishlist-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

/* Price */
.wishlist-item .price {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.wishlist-item .price .old {
    font-size: 13px;
    color: #888;
    margin-left: 6px;
    text-decoration: line-through;
}

/* Delete Button */
.wishlist-delete {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.wishlist-delete:hover {
    color: #a71d2a;
    transform: scale(1.1);
}

/* Empty Wishlist Text */
.content p {
    font-size: 16px;
    color: #666;
}


/* sidebar css  */



/* whislist css  */

.dashboard {
    display: flex;
    align-items: flex-start; /* ⭐ THIS IS THE FIX */
    gap: 20px;
}


.content {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    margin: 50px 0px;
}

.page-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px
}




/* side alert  */

.side-alert {
    position: fixed;
    top: 20px;
    right: -350px;
    padding: 14px 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

.side-alert.show {
    right: 20px;
    opacity: 1;
}

.side-alert.success {
    background: #198754;
}

.side-alert.error {
    background: #dc3545;
}

.side-alert.info {
    background: #0d6efd;
}


/* profile section css  */

.profile-form {
    max-width: 600px;
}

.profile-form .row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 16px;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #0d6efd;
}

.btn-save {
    background: #0d6efd;
    color: #fff;
    padding: 12px 26px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.btn-save:hover {
    background: #0b5ed7;
}


/* manage addresses css  */

/* ADDRESS CARD */
.addr-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    background: #fff;
}

/* HEADER */
.addr-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

/* DEFAULT BADGE */
.addr-badge {
    background: #28a745;
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* DELETE BUTTON */
.addr-delete {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    color: #dc3545;
    cursor: pointer;
}

/* FORM */
.addr-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* FORM ROW */
.addr-row {
    display: flex;
    gap: 10px;
}

/* BUTTONS */
.addr-btn-add,
.addr-btn-save {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}


/* review css  */
/* TAB CONTAINER */
.tab-content {
    background: #fff;
    border-radius: 0 0 12px 12px;
}

/* NAV TABS */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none;
    padding: 12px 20px;
    font-weight: 500;
    color: #555;
    background: #f3f3f3;
    margin-right: 8px;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: #e9e9e9;
}

.nav-tabs .nav-link.active {
    background: #fff;
    color: #000;
    font-weight: 600;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

/* DESCRIPTION TEXT */
#desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* REVIEW TAB */
#review {
    max-width: 600px;
}

/* RATING SELECT */
#review select {
    font-size: 14px;
    border-radius: 8px;
    padding: 8px;
}

/* REVIEW TEXTAREA */
#review textarea {
    border-radius: 10px;
    resize: none;
    height: 120px;
    font-size: 14px;
}

/* SUBMIT BUTTON */
#review button {
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 500;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {
    #review {
        max-width: 100%;
    }

    #review select {
        width: 100% !important;
    }

    .nav-tabs .nav-link {
        padding: 10px 14px;
        font-size: 14px;
    }
}


.cart-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.qty-box-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;

}

.qty-btn-decrease {
    border: 1px solid #079651;
    border-radius: 5px 0 0 5px;
    background: #079651;
    width: 28px;
    height: 28px;
    font-size: 18px;
}

.qty-btn-increase {
    border: 1px solid #079651;
    border-radius: 0 5px 5px 0;
    background: #079651;
    width: 28px;
    height: 28px;
    font-size: 18px;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
}



.offer-card {
    border: 1px dashed #28a745;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    position: relative;
}

.offer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.offer-discount span {
    background: #28a745;
    color: #fff;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.offer-expiry {
    font-size: 12px;
    color: #dc3545;
}

.offer-code {
    font-weight: 700;
    letter-spacing: 1px;
    margin: 8px 0;
}

.offer-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.offer-condition {
    font-size: 13px;
    color: #777;
}

.offer-copy-btn {
    margin-top: 10px;
    border: none;
    background: #000;
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.category-pill-wrapper {
    position: relative;
}

.category-pill {
    transition: background 0.3s;
}

.rotate-icon {
    transition: transform 0.3s;
}

.category-pill-wrapper:hover .rotate-icon {
    transform: rotate(180deg);
}

.subcategories-dropdown,
.child-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
    background: #fff;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.child-dropdown {
    top: 0;
    left: 100%;
}

.category-pill-wrapper:hover > .subcategories-dropdown,
.position-relative:hover > .child-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f0f0f0;
}

.child-arrow {
    transition: transform 0.3s;
}

.dropdown-item:hover .child-arrow {
    transform: translateX(5px);
}



.section-title {
    font-size: 1.35rem;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.highlight-success {
    color: #7fefbb;
    position: relative;
}

/* View all link animation */
.view-all-link {
    color: #24ef90;
    position: relative;
    transition: color 0.3s ease;
}

.view-all-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #198754;
    transition: width 0.3s ease;
}

.view-all-link:hover {
    color: #146c43;
}

.view-all-link:hover::after {
    width: 100%;
}

/* Underline container */
.section-underline-wrapper {
    width: 100%;
    height: 3px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/* Animated underline */
.section-underline {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #198754, #34d399);
    border-radius: 10px;
    animation: underlineSlide 1.2s ease forwards;
}

/* Keyframes */
@keyframes underlineSlide {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}




/* sidebar css  */

.modern-filter {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.filter-section {
    margin-bottom: 20px;
}

.filter-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.category-box {
    border-bottom: 1px solid #eee;
    padding: 6px 0;
    background: linear-gradient(135deg, #4aed91 0%, #08fb5d 100%);
}

.category-head {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.category-head:hover {
    color: #198754;
}

.subcategory-box {
    display: none;
    padding-left: 10px;
    margin-top: 6px;
}

.subcategory-item {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    cursor: pointer;
}

.subcategory-item input {
    margin-right: 6px;
}

.modern-filter select {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #ddd;
}


/* filter section and filter css  */
/* FILTER SIDEBAR */
.filter-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    position: sticky;
    top: 90px;
}

.filter-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.filter-group {
    margin: 15px 0;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background: #f9f9f9;
    font-weight: 600;
    transition: .3s;
}

.filter-item {
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.filter-item:hover {
    background: #f2f6ff;
    transform: translateX(4px);
}

.filter-item input {
    cursor: pointer;
}

.clear-filter {
    width: 100%;
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    border: none;
    transition: .3s;
}

.clear-filter:hover {
    background: #000;
    transform: translateY(-2px);
}

/* PRICE RANGE */
.range-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

/* Discount Dropdown */
.discount-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease;
    opacity: 0;
}

.discount-dropdown.active {
    max-height: 300px;
    opacity: 1;
}

.discount-btn {
    width: 95%;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background: #f9f9f9;
    font-weight: 600;
    transition: .3s;
}

.discount-btn:hover {
    background: linear-gradient(135deg, #c9f7c5, #8ee4af);
    color: #000;
    transform: translateX(6px);
}

.arrow {
    transition: .3s;
}

.discount-toggle.open .arrow {
    transform: rotate(180deg);
}


/* Generic Dropdown */
.filter-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unit-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease;
    opacity: 0;
}

.unit-dropdown.active {
    max-height: 300px;
    opacity: 1;
}

.unit-btn {
    width: 95%;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background: #f9f9f9;
    font-weight: 600;
    transition: .3s;
}

.unit-btn:hover {
    background: linear-gradient(135deg, #c9f7c5, #8ee4af);
    transform: translateX(6px);
}

.arrow {
    transition: .3s;
}

.unit-toggle.open .arrow {
    transform: rotate(180deg);
}


/* ====== CATEGORY PAGE UI ====== */
/* TITLE */
.filter-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* DROPDOWN */
.category-dropdown {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
}

.category-dropdown.active {
    max-height: 300px;
    opacity: 1;
}

/* BUTTON */
.category-btn {
    width: 95%;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    font-weight: 600;
    text-align: left;
    transition: .3s;
}

.category-btn:hover {
    background: linear-gradient(135deg, #d4fbe6, #9be7c4);
    transform: translateX(6px);
}

/* ARROW */
.arrow {
    transition: .3s;
}

.category-toggle.open .arrow {
    transform: rotate(180deg);
}

.category-btn.selected {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    border-color: #0d6efd;
}

.unit-btn.selected {
    background: linear-gradient(135deg, #198754, #157347);
    color: #fff;
    border-color: #198754;
}

.discount-btn.selected {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
    font-weight: 600;
    border-color: #ff9800;
}

.sort-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sort-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.sort-select {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.sort-select:hover {
    border-color: #28a745;
}

.sort-select:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40,167,69,.15);
}

/* pagination css  */
/* ===== PAGINATION WRAPPER ===== */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

/* ===== PAGINATION LIST ===== */
.custom-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

/* ===== PAGE ITEM ===== */
.custom-pagination li a {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: linear-gradient(145deg, #f4f4f4, #ffffff);
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

/* ===== HOVER EFFECT ===== */
.custom-pagination li a:hover {
    background: linear-gradient(145deg, #000, #222);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ===== ACTIVE PAGE ===== */
.custom-pagination li.active a {
    background: linear-gradient(145deg, #000, #111);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transform: scale(1.05);
}

/* ===== DISABLED ===== */
.custom-pagination li.disabled a {
    pointer-events: none;
    opacity: 0.45;
    box-shadow: none;
}

/* ===== DOTS ===== */
.custom-pagination li.dots {
    font-size: 20px;
    font-weight: bold;
    color: #999;
    padding: 0 6px;
    display: flex;
    align-items: center;
}

/* ===== PREV / NEXT ICON SIZE ===== */
.custom-pagination li a {
    font-size: 15px;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 576px) {
    .custom-pagination {
        gap: 6px;
    }

    .custom-pagination li a {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 8px;
    }
}


/* SEARCH */
.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 10px 12px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s;
    background-color: ghostwhite;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
    outline: none;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.suggestions-dropdown .suggestion-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestions-dropdown .suggestion-item:hover {
    background: #f1f1f1;
}


/* policy css  */
.policy-wrapper {
    max-width: 1300px;
    margin: auto;
    padding: 50px 20px;
    font-family: system-ui, sans-serif;
}

.policy-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.policy-subtitle {
    color: #e1e1e1;
    margin-bottom: 30px;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.policy-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.policy-card ul {
    padding-left: 18px;
}

.policy-card ul li {
    margin-bottom: 6px;
}

.policy-card.highlight {
    background: #f6fff9;
    border-color: #198754;
}

@media (max-width: 576px) {
    .policy-title {
        font-size: 22px;
    }
}


/* Floating Button Wrapper */
.social-fab-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.social-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    position: relative;
    z-index: 5;
}

.social-icons {
    position: absolute;
    bottom: 70px;
    right: 50px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: absolute;
    transform: scale(0);
    opacity: 0;
}

/* colors */
.whatsapp { background:#25D366; }
.instagram { background:#E1306C; }
.facebook { background:#1877F2; }
.youtube { background:#FF0000; }


/* contact-form css  */



.contact-card {
    background: #fff;
    border-radius: 14px;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: 10px;
    padding: 10px 14px;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 .15rem rgba(25,135,84,.25);
}


/* Header */
.stories-title {
  font-size: 1.3rem;
}

.stories-viewall {
  color: #198754;
}

/* Divider */
.stories-divider {
  width: 60px;
  height: 3px;
  background: #198754;
  margin-bottom: 16px;
}

/* Scroll container */
.stories-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

/* Card */
.story-card {
  position: relative;
  min-width: 420px;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}

/* Video */
.story-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Label overlay */
.story-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
}

/* Hide scrollbar (optional) */
.stories-scroll::-webkit-scrollbar {
  display: none;
}
