* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

:root {
    --header-height-desktop: 140px;
    --header-height-mobile: 110px;
}

body {
    background-color: white;
    color: #333;
}

a {
    text-decoration: none;
}

section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 1000;
    top: 0;
}

.top-head {
    height: 10px;
    background-color: rgba(186, 7, 22);
}

/* Header Main Section */
.header-main {
    margin: 0 auto;
    padding-top: 1vh;
}

.below-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Logo */
.logo {
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.logo-minimal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(186, 7, 22);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.logo-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.logo-title {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1;
    flex-shrink: 0;
}

.logo-bold {
    font-size: 28px;
    font-weight: 900;
    color: rgb(44, 43, 43);
    letter-spacing: -1px;
}

.logo-light {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Search Bar */
.search {
    flex: 1;
    max-width: 500px;
    min-width: 250px;
    position: relative;
}

.search form {
    display: flex;
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid rgba(186, 7, 22);
}

.search form input[type="search"] {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 16px;
    color: black;
    letter-spacing: 0.5px;
}

.search form input[type="submit"] {
    padding: 12px 24px;
    border: none;
    background-color: rgba(186, 7, 22);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-transform: capitalize;
    white-space: nowrap;
}

.search form input[type="submit"]:hover {
    background-color: rgba(186, 7, 22);
}

/* Search dropdown styles */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-result {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    display: flex;
    align-items: center;
}

.search-result:hover {
    background: #f8f9fa;
}

.search-result.selected {
    background: #f0f7ff;
}

.search-result img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}

.search-result .product-info {
    flex: 1;
    min-width: 0;
}

.search-result .product-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result .product-meta {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 3px;
}

.search-result .product-price {
    color: #e74c3c;
    font-weight: bold;
}

.search-result .product-price .old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
    font-size: 0.9em;
}

/* Cart Section */
.cart-section {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

.cart-section p i {
    color: rgba(186, 7, 22);
    font-size: 26px;
}

/* Cart icon with badge */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count, .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: rgb(44, 43, 43);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.cart-badge {
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn i {
    color: rgba(186, 7, 22);
    font-size: 26px;
}

/* Mobile Search Section */
.mobile-search-section {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(186, 7, 22);
}

.smallscreen {
    width: 100%;
    padding: 10px 0;
}

.smallscreensearch form {
    display: flex;
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    border: 1.5px solid rgba(186, 7, 22);
}

.smallscreensearch form input[type="search"] {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 16px;
    color: black;
    letter-spacing: 0.5px;
}

.smallscreensearch form input[type="submit"] {
    padding: 12px 20px;
    border: none;
    background-color: rgba(186, 7, 22);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-transform: capitalize;
    white-space: nowrap;
}

/* Navigation */
nav {
    display: flex;
    background-color: rgba(186, 7, 22);
    overflow: hidden;
    margin: 5px 0;
    padding: 15px;
    /* border: 1px solid green; */
}

.navleft button {
    padding: 15px 25px;
    background-color: rgb(44, 43, 43);
    color: white;
    border: none;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    cursor: not-allowed;
    display: none;
}

.navleft button i {
    margin-right: 8px;
}

.navright {
    display: flex;
    /* flex-wrap: wrap; */
    /* align-items: center; */
    justify-content: flex-start;
    align-items: flex-start;
    /* flex: 1; */
    gap: 15px;
    padding: 0 20px;
    /* border: 1px solid black; */
}

.navright p {
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    color: white;
    padding: 5px 0;
    transition: opacity 0.3s ease;
    font-size: 13px;
    white-space: nowrap;
    text-transform: capitalize;
}

.navright p:hover {
    opacity: 0.8;
}

.navright a {
    border-bottom: 2px dotted rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Animation for the infinite scroll */
@keyframes scroll-cycle {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Banner Section */
.banner {
    min-height: 45vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url(images/1.png);
    margin-top: calc(var(--header-height-desktop) - 15px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    overflow: hidden;
    position: relative;
}

.bannerleft {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bannerleft h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.bannerleft h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    /* background: rgba(186, 7, 22); */
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.bannerleft p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    display: none;
}

.bannerright {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.carousel-container {
    width: 100%;
    max-width: 430px;
    position: relative;
    overflow: hidden;
    background-color: white;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}
.badge-offer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.badge-offer p {
    position: absolute;
    top: 15px;
    left: -25px;
    width: 120px;
    padding: 8px 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* X mark in corner */
.badge-offer p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
}
.carousel-item img {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 15px;
    margin-bottom: 10vh;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background-color: white;
}

.product-info h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(72, 70, 70);
    text-transform: lowercase;
}

.price-button {
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(186, 7, 22);
}

.price-button button {
    color: white;
    background-color: rgba(186, 7, 22);
    border: none;
    padding: 9px;
    font-size: .8rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.carousel-nav button {
    background-color: rgba(186, 7, 22);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background-color: #d04141;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgb(26, 24, 24);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: rgba(186, 7, 22);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2ecc71;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 5;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: none;
}

/* Loading spinner styles */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    width: 100%;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

/* WHATSAPP CHAT */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    text-decoration: none;
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp:hover {
    transform: scale(1.1);
}

.chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #f9fffb;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease forwards;
    z-index: 999;
}

.chat-header {
    background: #25d366;
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.chat-header .close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 14px;
    width: fit-content;
}

.chat-footer {
    background: #25d366;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    border-radius: 0 0 15px 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.chat-footer:hover {
    background: #20b958;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Products Section */
.featured-products {
    margin-top: 2.3vh;
}

.section-header {
    text-align: left;
    margin-bottom: 1.3vh;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 230px;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 15px 5px 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    width: 230px;
    min-width: 230px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    padding: 5px 10px !important;
    border-radius: 3px !important;
    font-size: 0.8rem !important;
    font-weight: bold !important;
    z-index: 600 !important;
    color: white !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

.product-badge.new { background: #2ecc71 !important; }
.product-badge.trending { background: #9b59b6 !important; }
.product-badge.hot { background: #e74c3c !important; }
.product-badge.sale { background: #e67e22 !important; }
.product-badge.best { background: #3498db !important; }
.product-badge.limited { 
    background: #f1c40f !important;
    color: #333 !important;
}
.product-badge.exclusive { background: #1abc9c !important; }

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: 40px;
    color: rgb(72, 70, 70);
    text-transform: lowercase;
}

.product-content {
    padding: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: rgba(186, 7, 22);
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Other Products Section */
.other-products {
    margin-top: 4vh;
}

.other-products .products-grid {
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    padding-top: 10px;
}

.other-products .section-header {
    background-color: rgba(186, 7, 22);
    color: white;
    padding: 1.3vh;
}

.other-products .section-header .section-title {
    color: white;
}

/* Why Us Features */
.whyus-features {
    margin-top: 5vh;
}

.whyushead {
    text-align: center;
    position: relative;
}

.whyushead h1 {
    position: relative;
    display: inline-block;
    font-weight: 400;
}

.whyushead h1::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3.4px;
    border-radius: 50px;
    background: rgba(186, 7, 22);
}

.inline-features {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.inline-item {
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    text-align: left;
}

.inline-item i {
    font-size: 36px;
    color: rgba(186, 7, 22);
    padding: 15px;
    border-radius: 50%;
}

.inline-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.inline-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.divider {
    width: 2px;
    background: #e5e7eb;
}

/* Newsletter */
.newsletter {
    background: #eceaea;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    gap: 8vw;
    margin: auto;
}

.newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    font-size: 50px;
    color: rgba(186, 7, 22);
}

.text h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 5px;
}

.text p {
    font-size: 14px;
    color: #6b7280;
}

.newsletter-form {
    display: flex;
    background: #f1f3f7;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(186, 7, 22);
}

.newsletter-form input {
    border: none;
    outline: none;
    padding: 15px 20px;
    width: 260px;
    font-size: 15px;
    background: white;
}

.newsletter-form button {
    border: none;
    background: rgba(186, 7, 22);
    padding: 0 30px;
    font-size: 15px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

/* Footer */
.footer {
    background: #1d1c1c;
    padding: 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-container .logo {
    margin-bottom: 1.5vh;
}

.footer-container .logo-bold {
    font-weight: 900;
    color: white;
}

.footer-container .logo-light {
    color: rgba(186, 7, 22);
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 15px;
    position: relative;
    color: white;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 2px;
    background: rgba(186, 7, 22);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 8px 0;
    color: white;
}

.footer-section ul li a {
    text-decoration: none;
    transition: 0.3s;
    color: white;
}

.footer .about p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: white;
}

.footer .contacts ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer .contacts i {
    font-size: 16px;
    color: white;
}

.footer .social-icons a {
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-right: 6px;
    border-radius: 6px;
    background: white;
}

.footer .social-icons i {
    color: rgba(186, 7, 22);
}

.footer-bottom {
    border-top: 1.2px solid white;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: white;
}

/* Responsive Design */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .below-top {
        padding: 12px 0;
    }
    
    .search {
        max-width: 400px;
    }
    
    .logo-bold {
        font-size: 24px;
    }
    
    .logo-light {
        font-size: 12px;
    }
    
    .navright {
        gap: 12px;
        padding: 0 15px;
    }
    
    .navright p {
        font-size: 13px;
    }
}

/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
    .top-head {
        height: 7px;
    }
    
    .header-main {
        margin: 0 auto;
        padding-top: 0vh;
        padding-left: .1vw;
        padding-right: 1vw;
    }
    
    .mobile-search-section {
        display: block;
    }
    
    .mobile-search-section form {
        border: 2px solid white;
    }
    
    .below-top {
        gap: 10px;
    }
    
    .logo-minimal {
        gap: 8px;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-bold {
        font-size: 22px;
    }
    
    .logo-light {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .search {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cart-section {
        order: 3;
        margin-left: auto;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    nav {
        flex-direction: column;
        display: none;
    }
    
    .navleft button {
        width: 100%;
        text-align: left;
        padding: 12px;
        font-size: 14px;
        display: block;
    }
    
    .navright {
        justify-content: center;
        padding: 10px;
        flex-direction: column;
        gap: 0;
        padding: 0;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .navright p {
        font-size: 14px;
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        width: 100%;
        min-width: 100%;
    }
    
    .navright p:last-child {
        border-bottom: none;
    }
    
    .nav-active {
        display: flex;
    }
    
    /* Banner */
    .banner {
        flex-direction: column;
        margin-top: 110px;
        border-radius: 0;
        min-height: auto;
        padding: 20px 0;
        margin-top: calc(var(--header-height-mobile) + 30px);
    }
    
    .bannerleft {
        padding: 20px 15px;
        text-align: center;
        align-items: center;
        width: 100%;
         /* border: 1px solid red; */
    }
    
    .bannerleft h1 {
        font-size: 1.5rem;
        /* border: 1px solid red; */
    }
    
    .bannerleft p {
        font-size: 1.1rem;
    }
    
    .bannerright {
        width: 100%;
    }
    
    .carousel-container {
        max-width: 700px;
    }
    
    .carousel-item {
        min-height: 220px;
    }
    
    .carousel-item img {
        max-height: 220px;
        padding: 15px;
        margin-bottom: 4vh;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: .9rem;
    }
    
    /* Featured Products */
    .featured-products {
        margin-top: 2.3vh;
        padding: 0 15px;
    }
    
    .section-header {
        text-align: left;
        margin-bottom: 1.3vh;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 5px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .products-grid {
        grid-auto-columns: 200px;
        gap: 12px;
        padding: 10px 5px 15px 5px;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-card {
        width: 200px;
        min-width: 200px;
        padding: 12px;
    }
    
    .product-badge {
        top: 10px;
        left: 10px;
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .product-image {
        height: 180px;
        margin-bottom: 12px;
    }
    
    .product-title {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 8px;
    }
    
    .current-price {
        font-size: 15px;
    }
    
    .original-price {
        font-size: 13px;
    }
    
    /* Other Products */
    .other-products {
        margin-top: 2.3vh;
        padding: 1vh;
    }
    
    /* Why Us Features */
    .inline-features {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 7vh;
        margin-bottom: 4vh;
        gap: 1.5vh;
    }
    
    .inline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .divider {
        display: none;
    }
    
    /* Newsletter */
    .newsletter {
        flex-direction: column;
        gap: 2vw;
        padding: 30px 40px;
    }
    
    /* Footer */
    .footer {
        padding: 20px;
        margin-bottom: 1px;
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .payment-icons img {
        height: 25px;
        margin-left: 10px;
        filter: brightness(0) invert(1);
    }
}

/* For very small screens */
@media screen and (max-width: 400px) {
    .products-grid {
        grid-auto-columns: 180px;
    }
    
    .product-card {
        width: 180px;
        min-width: 180px;
        padding: 10px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-title {
        font-size: 12px;
        min-height: 34px;
    }
}

/* Small screens for whatsapp */
@media screen and (max-width: 500px) {
    .whatsapp {
        bottom: 25px;
        right: 10px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}