/* =========================
   DESKTOP / LAPTOP NAVBAR
========================= */

.navbar {
    width: 100%;
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== FORCE DROPDOWN RESET ===== */
.navbar ul,
.navbar li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Parent */
.navbar .dropdown {
    position: relative !important;
}

/* Dropdown menu */
.navbar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;

    display: none !important;
    flex-direction: column !important;

    background: #111 !important;
    min-width: 200px !important;

    padding: 6px 0 !important;
    border-radius: 6px !important;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 9999 !important;
}

/* Hover show */
.navbar .dropdown:hover>.dropdown-menu {
    display: flex !important;
}

/* Links */
.navbar .dropdown-menu li a {
    display: block !important;
    width: 100% !important;

    padding: 10px 16px !important;
    color: #fff !important;
    text-decoration: none !important;
    background: transparent;
}

/* Hover effect */
.navbar .dropdown-menu li a:hover {
    background: red;
    color: #fff;
}

/* =========================
   LOGO WITH CIRCLE BADGE
========================= */

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;

    /* 🔥 LEFT side fix */
    justify-content: flex-start;

    /* agar navbar ke andar hai */
    position: relative;
    left: 0;
}

/* Logo Box */
.logo-box {
    position: relative;
    display: inline-block;
}

/* Logo Image */
.logo-box img {
    width: 50px;
    /* adjust as needed */
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    /* round logo if needed */
    border: 2px solid red;
    transition: transform 0.3s ease;
}

/* Circle Badge */
.logo-badge {
    position: absolute;
    top: 0;
    right: -10%;
    /* thoda right se bahar */
    transform: translate(50%, -50%);
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Badge scaling with logo */
.logo-box img {
    width: 50px;
    height: 50px;
}

.logo-box .logo-badge {
    width: calc(50px / 2);
    /* half of logo width */
    height: calc(50px / 2);
    font-size: calc(50px / 6);
}

.logo-box {
    position: relative;
    display: flex;
    align-items: center;
    /* vertical center alignment */
    gap: 8px;
    /* logo aur badge ke beech space */
}

/* Logo Image */
.logo-box img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

/* Circle Badge */
.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: red;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* MOBILE OPTIMIZED */
@media (max-width: 768px) {
    .logo-box img {
        width: 40px;
        height: 40px;
    }

    .logo-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* MOBILE OPTIMIZED */
@media (max-width: 768px) {
    .logo-box img {
        width: 40px;
        height: 40px;
    }

    .logo-box .logo-badge {
        width: calc(40px / 2);
        height: calc(40px / 2);
        font-size: calc(40px / 6);
    }
}

/* BRAND CONTAINER */
.brand-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Stylish Text */
.stylish-text {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: red;
    text-transform: uppercase;
    -webkit-text-stroke: 1px white;
    /* white border around letters */
    letter-spacing: 1px;
    margin: 0;
}

.stylish-text h1 span {
    color: red;
}

/* Boot House Text */
.boot-house-text {
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    /* white color */
    margin: 0;
    letter-spacing: 0.5px;
}

.since {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: 400;
    color: #ddd;
    margin: 4px 0 0 0;
    letter-spacing: 0.4px;
}

/* MOBILE OPTIMIZED */
@media (max-width: 768px) {
    .logo-group {
        gap: 8px;
    }

    .logo-box img {
        width: 40px;
        height: 40px;
    }

    .stylish-text {
        font-size: 20px;
    }

    .boot-house-text {
        font-size: 14px;
    }
}

/* HIDE MOBILE TOGGLE ON DESKTOP */
.menu-toggle {
    display: none;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links li {
    position: relative;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
}

/* UNDERLINE HOVER EFFECT */
.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: red;
    transition: 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: #111;
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.dropdown-menu li a {
    padding: 12px 15px;
    display: block;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

.dropdown-menu li a:hover {
    background: red;
    color: #fff;
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* SEARCH */
.search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
}

.search-input {
    width: 0;
    opacity: 0;
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
    outline: none;
    transition: 0.3s ease;
}

/* SEARCH HOVER EXPAND */
.search-wrap:hover .search-input {
    width: 180px;
    opacity: 1;
}

/* CART OVERLAY */
#cartOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

/* CART PANEL */
#cartPanel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 360px;
    max-width: 90%;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    z-index: 1000;
}

/* ACTIVE STATES */
#cartPanel.active {
    right: 0;
}

#cartOverlay.active {
    opacity: 1;
    visibility: visible;
}

/* HEADER */
.cart-header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

#closeCart {
    font-size: 26px;
    cursor: pointer;
}

/* CONTENT */
.cart-content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

/* FOOTER */
.cart-footer {
    padding: 16px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    display: block;
    margin-top: 10px;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
}

.checkout-btn:hover {
    background: red;
}

/* MOBILE NAVBAR */
@media (max-width: 768px) {

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        position: relative;
        background: #000;
        z-index: 1100;
    }

    /* Hamburger */
    #mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 20px;
        cursor: pointer;
        z-index: 1200;
    }

    #mobile-menu .bar {
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Nav links */
    .nav-links {
        position: fixed;
        /* fixed to prevent scroll jump */
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        flex-direction: column;
        background: #111;
        transition: left 0.3s ease;
        padding-top: 70px;
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        position: relative;
    }

    .nav-links a {
        display: block;
        padding: 16px;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        border-bottom: 1px solid red;
        transition: 0.3s;
    }

    .nav-links a:hover {
        background: red;
        color: #fff;
    }

    /* Dropdowns */
    .dropdown-menu {
        display: none;
        flex-direction: column;
        background: #222;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
    }

    .dropdown-menu a {
        padding: 12px 20px;
        font-size: 15px;
        border-bottom: 1px solid #333;
    }

    .dropdown-menu a:hover {
        background: red;
        color: #fff;
    }

    /* Search bar */
    .search-wrap {
        padding: 12px 16px;
        border-bottom: 1px solid red;
    }

    .search-input {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        border: none;
        outline: none;
        font-size: 14px;
    }

    .search-btn {
        display: none;
    }

    /* Cart icon */
    .nav-cart {
        font-size: 22px;
        color: #fff;
        padding: 14px 16px;
        cursor: pointer;
        border-bottom: 1px solid red;
    }
}

/* Location Dropdown */
.location-dropdown {
    position: relative;
}

/* Dropdown container (hidden by default) */
.dropdown-map {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    max-width: 90vw;
    /* mobile friendly */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    /* hidden initially */
    z-index: 999;
}

/* Show map on hover (desktop) */
.location-dropdown:hover .dropdown-map {
    display: block;
}

/* Arrow styling */
.location-dropdown .arrow {
    margin-left: 4px;
}

/* MOBILE: Click to open */
@media (max-width: 768px) {
    .dropdown-map {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
    }
}

/* INFO BAR */
.info-bar {
    width: 100%;
    background: linear-gradient(90deg, #ff1d1d, #ff130f);
    /* premium gradient */
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

/* TEXT ANIMATION */
#infoText {
    display: inline-block;
    animation: slideText 3s ease-in-out infinite;
    position: relative;
    transition: transform 0.5s, opacity 0.5s;
}

/* Info Bar */
.info-bar {
    position: relative;
    /* ya sticky/fixed agar chahiye */
    background: #222;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
    z-index: 1;
    /* 🔹 BACKGROUND ME RAHNE KE LIYE */
}

/* Navbar, dropdowns, panels etc. */
.navbar,
.dropdown-menu,
.cart-panel,
.category-panel {
    position: relative;
    /* ya fixed jaise required */
    z-index: 10;
    /* 🔹 info bar ke upar aane ke liye */
}

/* KEYFRAMES FOR SLIDE/FADE EFFECT */
@keyframes slideText {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    90% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* MOBILE OPTIMIZED */
@media (max-width: 768px) {
    .info-bar {
        font-size: 14px;
        padding: 8px 0;
    }
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: #111;
    font-family: 'Poppins', sans-serif;
}

/* SLIDER CONTAINER */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* INDIVIDUAL SLIDE */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: translateX(100%);
    transition: all 1.2s ease-in-out;
    filter: brightness(0.5) contrast(1.1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

/* TEXT CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.45);
}

/* HEADING */
.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-section h1 span {
    color: var(--brand-red);
}

/* PARAGRAPH */
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #eee;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ff0000, #c40000);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(196, 0, 0, 0.35);
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(196, 0, 0, 0.45);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
        padding: 0 6%;
    }

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

    .hero-content p {
        font-size: 14px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
        padding: 0 6%;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

/* Category Section */
.category-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    /* real gap */
    padding: 60px 2%;
    /* 🔥 8% → 2% */
    flex-wrap: wrap;
}

.category-h1 {
    text-align: center;
    font-size: 36px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 50px;
    font-weight: 800;
    color: #333;
}

.category-h1 span {
    color: var(--brand-red);
}

/* CATEGORY ITEM */
.category-item {
    margin-bottom: 50px;
}

.category-card {
    position: relative;
    width: min(50vh, 410px);
    /* ⭐ as you asked */
    max-width: 100%;
    height: 500px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT */
.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
}

.category-overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

/* SUB GRID */
.sub-category-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.sub-category-grid.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

/* SUB CARD */
.sub-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    transition: transform .5s ease;
}

.sub-card:hover {
    transform: translateY(-6px);
}

.sub-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.sub-card h4 {
    padding: 14px;
    text-align: center;
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 900px) {
    .sub-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-section {
        gap: 16px;
        padding: 30px 16px;
    }

    .category-card {
        width: 100%;
        /* ⭐ mobile par full width */
        max-width: 100%;
        height: 350px;
    }
}

/* Featured Products Section */
.featured-section {
    padding: 60px 8%;
    background: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
    margin-bottom: 50px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.featured-card:hover .hover-img {
    opacity: 1;
}

.featured-card:hover .main-img {
    opacity: 0;
    transform: scale(1.08);
}

.off-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c40000;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
}

.featured-card h3 {
    padding: 16px;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
}

.price {
    padding: 0 16px 16px;
}

.old-price {
    font-family: 'Courier New', Courier, monospace;
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

.new-price {
    color: #c40000;
    font-weight: 700;
    font-family: 'Arial Black', Gadget, sans-serif;
}

.add-cart-btn {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 12px 0;
    background: #730000;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.add-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 0, 0, 0.35);
}

.cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.cart-item img {
    width: 55px;
    border-radius: 6px;
}

.remove-item {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: red;
    margin-left: auto;
}

.remove-item:hover {
    transform: scale(1.2);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.featured-card-link,
.featured-card {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {

    .featured-products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 🔥 2 per row */
        gap: 14px;
        padding: 10px;
    }

    .featured-card-link {
        display: block;
    }

    .featured-card {
        width: 100%;
        padding: 14px;
        border-radius: 14px;
    }

    /* IMAGE FIX — MOST IMPORTANT */
    .featured-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        /* 🔥 mota card */
        object-fit: cover;
        border-radius: 10px;
    }

    .featured-card h3 {
        font-size: 14px;
        line-height: 1.3;
        margin: 10px 0 6px;
    }

    .price {
        font-size: 13px;
    }

    .add-cart-btn {
        padding: 10px;
        font-size: 13px;
        border-radius: 10px;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {

    /* 🔥 OUTER SECTION */
    .featured-products {
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* 🔥 GRID */
    .featured-products-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* 🔥 LINK */
    .featured-card-link {
        width: 100%;
        margin: 0;
        padding: 0;
        display: block;
    }

    /* 🔥 CARD */
    .featured-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 12px;
        box-sizing: border-box;
    }

    .price {
        font-size: 13px;
    }

    .product-image {
        height: auto;
    }

    .off-tag {
        font-size: 12px;
        padding: 4px 10px;
    }

    .product-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        border-radius: 10px;
    }
}

/* @media (max-width: 768px) {
    .featured-products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .featured-card-link {
        display: grid;
        padding: 4px;
    }
}

@media (max-width: 768px) {
    .featured-card {
        display: grid;
        padding: 14px;
        /* mobile par thora zyada */


.featured-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-card-link .featured-card {
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.featured-card-link .featured-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* Why Choose Premium */
.why-clean {
    padding: 80px 8%;
    background: #ffffff;
    text-align: center;
}

.why-title {
    font-size: 36px;
    font-weight: 900;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 60px;
}

.why-title span {
    color: rgb(223, 10, 10);
}

.why-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-box {
    background: #fafafa;
    border-radius: 22px;
    padding: 45px 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.why-icon {
    font-size: 46px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.why-box:hover .why-icon {
    transform: scale(1.2);
}

.why-box h3 {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 15px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #666;
    line-height: 1.6;
}

/* TABLET */
@media (max-width: 992px) {
    .why-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .why-row {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 30px;
    }
}

/* Customer Reviews Section */
.reviews-section {
    padding: 80px 8%;
    background: #f8f8f8;
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 300px;
    background: #fff;
    border-radius: 22px;
    padding: 35px 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    scroll-snap-align: center;
    transition: transform 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.review-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.stars {
    color: #f5a623;
    margin-bottom: 12px;
    font-size: 16px;
}

.review-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.main-footer {
    background: #000;
    color: #ccc;
    padding: 70px 8% 20px;
}

/* OVERLAY */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 999;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CART PANEL */
.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
    z-index: 1000;
}

.cart-panel.active {
    right: 0;
}

/* HEADER */
.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cart-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* ITEMS */
.cart-items {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.cart-item h4 {
    font-size: 14px;
    margin: 0;
}

.cart-item span {
    font-size: 13px;
    color: #666;
}

/* FOOTER */
.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: #e63946;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    /* WhatsApp green */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: float 2s ease-in-out infinite;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

/* Hover Effect */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    /* subtle jump */
}

/* MOBILE OPTIMIZED */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn img {
        width: 25px;
        height: 25px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.social-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover,
.social-links a:hover {
    color: #fff;
}

.social-links a {
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #222;
    padding-top: 15px;
    font-size: 13px;
    color: #777;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}