
/* ======================================================
MOBILE STYLES (Phones)
====================================================== */
@media (max-width:767px) {

/* ======================================================
GENERAL
====================================================== */

body{
overflow-x:hidden;
padding-bottom:80px;
}

.container{
max-width:100%;
padding:0 12px;
}

.section-title{
font-size:18px;
padding:0 12px;
}

.section-wrapper{
padding:15px 0;
}

/* ======================================================
HIDE DESKTOP ELEMENTS
====================================================== */

.main-header,
.navbar,
.top-bar{
display:none;
}

/* ======================================================
MOBILE HEADER
====================================================== */

.mobile-header{
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 16px;
background:#fff;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index: 999999;
transition:box-shadow .3s ease;
}

.mobile-header.scrolled{
box-shadow:0 3px 10px rgba(0,0,0,0.12);
}

.mobile-menu-btn{
  position:relative;
  z-index:9999999;
}

.mobile-menu-btn,
.mobile-search-trigger{
background:none;
border:none;
font-size:22px;
cursor:pointer;
}

.mobile-logo img{
height:38px;
width:auto;
object-fit:contain;
}

.mobile-cart{
position:relative;
font-size:22px;
}

.mobile-cart-count{
position:absolute;
top:-6px;
right:-8px;
background:#e60023;
color:#fff;
font-size:11px;
padding:2px 6px;
border-radius:50%;
font-weight:bold;
}

.mobile-search-panel {
  display: none;
}

.mobile-search-panel.active {
  display: block;
}

.mobile-search-panel{
  position: fixed;
  top: 65px; /* match your header height */
  left: 0;
  width: 95%;
  align-items: center;
  background: #fff;
  z-index: 99999; /* 🔥 very important */
  padding: 10px;
  border-top: 1px solid #eee;
}

.mobile-search-box {
  display: flex;
  width: 100%;
  position: relative;
}

.mobile-search-box input {
  width: 100%;           /* ✅ fill wrapper */
  padding: 10px;
  border: 1px solid #ddd;
  border-right: none;
  box-sizing: border-box; /* 🔥 critical */
}

.mobile-search-box button {
  flex-shrink: 0;        /* 🔥 stops shrinking */
  padding: 10px 15px;
  background: #c6a85b;
  color: #fff;
  border: none;
}

.mobile-search-input-wrapper {
  position: relative;   /* anchor for dropdown */
  flex: 1;              /* take full width in flex */
  min-width: 0;
}

#mobileSearchResults {
  position: absolute;
  top: 100%;   /* directly below input */
  left: 0;
  width: 100%; /* match input width */
  background: #fff;
  border: 1px solid #ddd;
  max-height: 300px;
  overflow-y: auto;
  z-index: 99999;
}


/* ==============================
SEARCH PAGE MOBILE
============================== */

/* FORCE proper grid */
.search-page .product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr) !important;
    gap:8px !important;
}

/* 🔥 REMOVE FORCED HEIGHT */
.search-page .product-image{
    flex:0 0 auto;
}

/* 🔥 REMOVE ABSOLUTE POSITION */
.search-page .product-image img{
    position:static !important;
    width:100%;
    height:auto;
    display:block;
}

/* 🔥 REMOVE ANY FAKE HEIGHT TRICK */
.search-page .product-image::before,
.search-page .product-image::after{
    display:none !important;
    content:none !important;
}

/* 🔥 TIGHT CARD */
.search-page .product-card{
    padding:6px;
}

/* FIX title spacing */
.search-page .product-card h4{
    margin:4px 0 2px;   /* 🔥 reduce gap */
    font-size:14px;
    line-height:1.2;
}

/* compact text */
.search-page .weight{
    margin:0 0 2px;
}

.search-page .price{
    margin:2px 0;
}

/* button tighter */
.search-page .btn-outline{
    margin-top:4px;
    padding:5px;
    width:80%;
    font-size:14px;
}

/* No products */
.search-page p{
    font-size:14px;
}

/* Load more button */
#loadMoreBtn{
    width:90%;
    padding:12px;
    border:none;
    background:#000;
    color:#fff;
    border-radius:8px;
    font-size:14px;
}

/* Fix bottom spacing (for sticky nav/cart) */
.search-page{
    padding-bottom:100px;
}


/* ======================================================
MOBILE MENU
====================================================== */

.mobile-menu{
position:fixed;
top:0;
left:-100%;
width:80%;
height:100%;
background:#fff;
z-index:999999;
overflow-y:auto;
padding:20px;
transition:left .3s ease;
}

.mobile-menu.open{
left:0;
}

.mobile-menu-top{
display:flex;
justify-content:space-between;
align-items:center;
font-size:18px;
font-weight:600;
margin-bottom:20px;
}

.mobile-close{
background:none;
border:none;
font-size:24px;
cursor:pointer;
}

.mobile-menu-section{
margin-bottom:25px;
}

.mobile-menu-section h4{
font-size:16px;
font-weight:700;
margin-bottom:10px;
}

.mobile-menu-section a{
display:block;
padding:12px 0;
font-size:15px;
color:#333;
text-decoration:none;
border-bottom:1px solid #eee;
}

.mobile-cat-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
border-bottom:1px solid #eee;
}

.mobile-cat-title{
font-weight:600;
text-decoration:none;
color:#333;
}

.mobile-toggle{
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.mobile-category.active .mobile-toggle{
transform:rotate(180deg);
}

.mobile-subcats{
display:none;
padding-left:15px;
}

.mobile-subcats a{
display:block;
padding:8px 0;
font-size:14px;
color:#555;
text-decoration:none;
}

.mobile-subcategory {
  margin-bottom: 5px;
}

/* subcategory header */
.mobile-subcat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* child category list */
.mobile-childcats {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
}

/* child links */
.mobile-childcats a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #555;
}
/* ======================================================
MOBILE OVERLAY
====================================================== */

.mobile-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
z-index:1000;
opacity:0;
pointer-events:none;
transition:opacity .3s ease;
}

.mobile-overlay.show{
opacity:1;
pointer-events:auto;
}
}

/* ======================================================
INDEX PAGE MOBILE STYLES
====================================================== */

@media (max-width: 767px) {
    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }

    /* Force 2:1 ratio */
    .mobile-slider {
        aspect-ratio: 2 / 1;
        height: auto;
    }

    /* Text styling */
    .index-page .hero-slider .slide-content h2 {
        font-size: 16px;
        padding: 8px;
        text-align: center;
    }

    /* Shop By Category */
    
    .index-page .categories,
    .index-page .exclusive-section {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    
    .index-page .categories {
        margin-top: 10px;   /* reduce gap */
        padding-top: 0;
    }
    
    .index-page .categories .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .index-page .categories .category-card img {
        width: 100%;
        border-radius: 8px;
    }

    .index-page .categories .category-card h3 {
        font-size: 14px;
        margin-top: 6px;
        text-align: center;
    }

    /* Exclusive For You */
    

    /* MOBILE - FORCE 2 COLUMNS */

   
    .exclusive-section {
        margin-top: 0;
        padding-top: 0;
    }
    
    .exclusive-section .exclusive-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:0 10px;
    }
    
    .exclusive-section .section-title{
    font-size:22px;
    }
    
    .exclusive-section .exclusive-card h4{
    font-size:14px;
    }
    
    .exclusive-section .price{
    font-size:14px;
    }
    
    .exclusive-section .btn-outline{
    font-size:13px;
    padding:6px 10px;
    }

   /* ======================================================
INSTAGRAM SLIDER
====================================================== */

.insta-slider-wrapper{
position:relative;
padding:10px 12px;
}

.instagram-slider{
display:flex;
gap:12px;
overflow-x:auto;
scroll-behavior:smooth;
}

.instagram-slider::-webkit-scrollbar{
display:none;
}

.insta-item{
min-width:160px;
aspect-ratio:1/2;
border-radius:10px;
overflow:hidden;
flex-shrink:0;
}

.insta-item video{
width:100%;
height:100%;
object-fit:cover;
}

.insta-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#fff;
border:none;
font-size:22px;
width:36px;
height:36px;
border-radius:50%;
box-shadow:0 2px 6px rgba(0,0,0,0.2);
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}

.insta-arrow.left{
left:5px;
}

.insta-arrow.right{
right:5px;
}

/* ======================================================
FOOTER
====================================================== */

.footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 15px;
}

.flex-between {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.payment-icons {
    justify-content: center;
}

/* ======================================================
BOTTOM NAVIGATION
====================================================== */

.mobile-bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#fff;
display:flex;
justify-content:space-around;
align-items:center;
padding:10px 0;
border-top:1px solid #eee;
z-index:9999;
}

.mobile-bottom-nav a{
display:flex;
flex-direction:column;
align-items:center;
font-size:12px;
color:#333;
text-decoration:none;
}

.mobile-bottom-nav i{
font-size:18px;
margin-bottom:3px;
}

.cart-badge{
position:absolute;
top:-5px;
right:-8px;
background:red;
color:#fff;
font-size:10px;
padding:2px 6px;
border-radius:50%;
}

/* ==============================
CATEGORY PAGE MOBILE
============================== */

.category-page{
display:flex;
gap:50px;
width:100%;
margin:auto;
padding-top:10px;
}

.subcategory-page{
display:flex;
gap:50px;
width:100%;
margin:auto;
padding-top:10px;
}

/* ==============================
FILTER PANEL
============================== */

.filters{
position:fixed;
top: 70px;
bottom:-100%;
left:0;
width:100%;
background:#fff;
border-top-left-radius:20px;
border-top-right-radius:20px;
box-shadow:0 -5px 20px rgba(0,0,0,0.15);
padding:20px;
z-index:9999;
transition:0.3s;
max-height:80vh;
overflow:auto;
}

.filters.open{
bottom:0;
}

.filters h3{
font-size:18px;
margin-bottom:15px;
}

.filter-group{
margin-bottom:15px;
}

.filter-group label{
display:block;
font-size:14px;
margin-bottom:6px;
font-weight:600;
}

.filter-group input,
.filter-group select{
width:100%;
padding:10px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.filter-inline{
display:flex;
gap:10px;
}

.filter-inline input{
flex:1;
}

/* ==============================
FILTER BUTTON BAR
============================== */

.product-topbar{
position:sticky;
top:60px;
background:#fff;
padding:5px 0;
z-index:50;
border-bottom:1px solid #eee;
flex-direction:column;
align-items:flex-start;
gap:2px;
}

.product-topbar select{
padding:6px 10px;
border-radius:6px;
border:1px solid #ddd;
font-size:13px;
}


/* ==============================
PRODUCT GRID
============================== */
@media (max-width:767px){
  .product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
}

.mobile-filter-btn{
    display:block;
    position:sticky;
    top:60px;
    width:90%;
    margin:8px auto;
    padding:12px;
    border:none;
    background: var( --secondary);
    color:#fff;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
   
}

.category-page{
    flex-direction:column;
}

.filters{
    display:none;
    position:fixed;
    top:60;
    left:0;
    width:80%;
    height:100%;
    background:#fff;
    z-index:9999;
    padding:20px;
    overflow:auto;
    box-shadow:0 0 15px rgba(0,0,0,0.2);
}

.filters.active{
    display:block;
}


.close-filter{
float:right;
border:none;
background:none;
font-size:22px;
cursor:pointer;
}

/* ===============================
PRODUCT PAGE BASE LAYOUT
=============================== */

.product-page{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* ===============================
BREADCRUMB
=============================== */

.breadcrumb{
    font-size:14px;
    margin-bottom:20px;
    color:#666;
}

.breadcrumb a{
    color:#0FA4AF;
    text-decoration:none;
}

.breadcrumb span{
    color:#222;
}
/* ===============================
PRODUCT HERO SECTION
=============================== */

/* ===============================
MOBILE PRODUCT HERO
=============================== */

.product-hero{
    flex-direction:column;
    gap:20px;
    margin-bottom:40px;
}

/* gallery layout */

.product-page .product-gallery{
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* main product image */

.product-page .product-image{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-page .product-image img{
    width:80%;
    max-height:280px;
    object-fit:contain;
}

/* thumbnails row */

.product-page .thumbnails{
    display:flex;
    flex-direction:row;
    gap:10px;
    overflow-x:auto;
    padding-bottom:5px;
}

/* hide scrollbar (optional) */

.product-page .thumbnails::-webkit-scrollbar{
    display:none;
}

.product-page .thumbnails img{
    width:100px;
    height:100px;
    flex-shrink:0;
    object-fit:cover;
    cursor:pointer;
}
/* main image first */
.product-page .product-image{
    order:1;
}

/* thumbnails second */
.product-page .thumbnails{
    order:2;
}

/* product info */

.product-info h1{
    font-size:20px;
}

.price{
    font-size:20px;
}

/* quantity */

.quantity-dropdown{
    width:auto;
}

/* buttons */

.btn-primary
{
    width:100%;
    margin-top:10px;
}

/* trust badges */

.trust-badges{
    flex-direction:column;
    gap:6px;
}
/* ===============================
STICKY CART (MOBILE ONLY)
=============================== */

.sticky-cart{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:60px;
    background:#fff;
    border-top:1px solid #ddd;
    padding:12px 16px;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    z-index:99999;
    box-sizing:border-box;
}

.sticky-cart-price{
    font-size:18px;
    font-weight:bold;
    color:#0FA4AF;
}

.sticky-cart button{
    flex-shrink:0;
    background:#0FA4AF;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:6px;
    font-size:14px;
    cursor:pointer;
}

/* ===============================
B2B CARD
=============================== */

.b2b-card{
    margin-top:25px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:15px;
    background:#fafafa;
}

/* ===============================
DESCRIPTION
=============================== */

.description-section{
    margin-top:25px;
}

.desc-toggle{
    background:none;
    border:none;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.desc-content{
    margin-top:10px;
    display:none;
}

/* ===== Weight Range Horizontal Scroll ===== */

/* ===== Different Weight Products (Mobile) ===== */

.product-page .product-carousel{
    position:relative;
}

/* horizontal scroll */
.product-page .different-weight-products .product-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.product-page .different-weight-products .product-grid::-webkit-scrollbar{
    display:none;
}

/* product card fix */
/* Product card */
.product-page .different-weight-products .product-card{
    min-width:170px;
    flex:0 0 auto;
    display:block;
    text-align:center;
}

/* image fix */
.product-page .different-weight-products .product-image{
    width:100%;
}

.product-page .different-weight-products .product-image img{
    width:100%;
    height:auto;
    display:block;
}

/* button fix */
.product-page .different-weight-products .btn-outline{
    font-size:11px;
    padding:5px 6px;
    margin-top:4px;
}

/* arrows */

.product-page .different-weight-products .carousel-arrow{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:32px;
    height:32px;
    border:none;
    background:#fff;
    border-radius:50%;
    box-shadow:0 2px 6px rgba(0,0,0,0.25);
    z-index:5;
}

.product-page .different-weight-products .carousel-arrow.left{
    left:-5px;
}

.product-page .different-weight-products .carousel-arrow.right{
    right:-5px;
}
/* ===== similar-products (Mobile) ===== */

/* horizontal scroll */
.product-page .similar-products .product-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.product-page .similar-products .product-grid::-webkit-scrollbar{
    display:none;
}

/* product card fix */
/* Product card */
.product-page .similar-products .product-card{
    min-width:170px;
    flex:0 0 auto;
    display:block;
    text-align:center;
}

/* image fix */
.product-page .similar-products .product-image{
    width:100%;
}

.product-page .similar-products .product-image img{
    width:100%;
    height:auto;
    display:block;
}

/* button fix */
.product-page .similar-products .btn-outline{
    font-size:11px;
    padding:5px 6px;
    margin-top:4px;
}

/* arrows */

.product-page .similar-products .carousel-arrow{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:32px;
    height:32px;
    border:none;
    background:#fff;
    border-radius:50%;
    box-shadow:0 2px 6px rgba(0,0,0,0.25);
    z-index:5;
}

.product-page .similar-products .carousel-arrow.left{
    left:-5px;
}

.product-page .similar-products .carousel-arrow.right{
    right:-5px;
}

/* ===== Featured-products (Mobile) ===== */

/* horizontal scroll */
.product-page .featured-products .product-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

.product-page .featured-products .product-grid::-webkit-scrollbar{
    display:none;
}

/* product card fix */
/* Product card */
.product-page .featured-products .product-card{
    min-width:170px;
    flex:0 0 auto;
    display:block;
    text-align:center;
}

/* image fix */
.product-page .featured-products .product-image{
    width:100%;
}

.product-page .featured-products .product-image img{
    width:100%;
    height:auto;
    display:block;
}

/* button fix */
.product-page .featured-products .btn-outline{
    font-size:11px;
    padding:5px 6px;
    margin-top:4px;
}

/* arrows */

.product-page .featured-products .carousel-arrow{
    position:absolute;
    top:40%;
    transform:translateY(-50%);
    width:32px;
    height:32px;
    border:none;
    background:#fff;
    border-radius:50%;
    box-shadow:0 2px 6px rgba(0,0,0,0.25);
    z-index:5;
}

.product-page .featured-products .carousel-arrow.left{
    left:-5px;
}

.product-page .featured-products .carousel-arrow.right{
    right:-5px;
}    
}


/* ===============================
   CART PAGE - MOBILE
=============================== */

@media (max-width: 767px) {

  /* REMOVE ALL OUTER SPACE */
  body {
    margin: 0;
    padding: 0;
  }

  .cart-page {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* MAIN CONTAINER - FULL WIDTH */
  .cart-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 10px !important;
    box-sizing: border-box;
    display:flex;
    flex-direction: column;
  }
 
  /* REMOVE EXTRA GREY BACKGROUND GAP */
  .cart-items {
    width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
  }

  /* FIX TOP SPACING */
  .cart-header {
    margin: 5px 0 10px 0;
    text-align: center;
  }

  .cart-header h2 {
    font-size: 18px;
    margin: 0;
  }

  /* PRODUCT CARD */
  .cart-row {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  /* IMAGE */
  .col-image {
    display: flex;
    justify-content: flex-start; /* 🔥 LEFT ALIGN FIX */
  }

  .col-image img {
    width: 110px;
    height: auto;
    border-radius: 8px;
  }

  /* PRODUCT DETAILS */
  .col-product {
    text-align: left; /* 🔥 FIX */
    margin-top: 8px;
  }

  .col-product h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .col-product p {
    font-size: 13px;
    margin: 2px 0;
  }

  /* ACTIONS */
  .row-actions {
    display: flex;
    gap: 15px;
    margin-top: 6px;
  }

  .icon-btn {
    font-size: 13px;
    padding: 0;
  }

  /* PRICE */
  .col-price {
    margin-top: 6px;
    font-size: 14px;
  }

  /* QUANTITY */
  .col-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }

  .qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }

  .qty-input {
    width: 45px;
    text-align: center;
  }

  /* SUBTOTAL */
  .col-subtotal {
    margin-top: 6px;
    font-size: 14px;
  }

  .cart-total-line {
    display: flex;
    flex-direction: column;   /* 🔥 stack vertically */
    gap: 6px;
    font-size: 14px;
  }

  .cart-total-line .total-items,
  .cart-total-line .total-amount {
    display: block;
    width: 100%;
  }

  /* REMOVE HR GAP */
  hr {
    display: none;
  }

  /* INLINE TOTAL */
  .cart-total-line {
    margin-top: 10px;
    padding: 10px 0;
    font-size: 14px;
  }

  /* ===============================
     ORDER SUMMARY FIX
  =============================== */

  .cart-summary {
    width: 95%;
    margin: 10px auto 0 auto;
    padding: 12px;
    border-radius: 10px;
    background: #fff;

    /* 🔥 IMPORTANT FIX */
    position: static;   /* remove sticky causing overflow */
  }

  .cart-summary h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .summary-row {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .total-row {
    font-size: 15px;
    font-weight: bold;
  }

  /* BUTTON */
  .btn-checkout {
    width: 90%;
    padding: 12px;
    margin: 10px auto 0 auto; /* 👈 centers horizontally */
   display: block; /* 👈 required for margin auto to work */
    
  }

}

@media (max-width: 767px) {

  .cart-summary {
    position: sticky;
    bottom: 0;
    z-index: 100;
  }

}

/* ===========================
   Mobile Checkout Styles
=========================== */
@media (max-width: 767px) {
  .checkout-container {
    display: flex;
    flex-direction: column;   /* stack left + right */
    gap: 20px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    overflow-x: hidden;       /* ✅ prevent horizontal scroll */
  }

  /* Left side (shipping + payment) */
  .checkout-items {
    width: 100%;
  }

  .checkout-card {
    padding: 15px;
    margin-bottom: 20px;
  }

  .checkout-form .form-row {
    flex-direction: column;   /* stack inputs */
    gap: 12px;
  }

  .checkout-form .form-group {
    width: 100%;
  }

  .checkout-form input {
    width: 93%;
    padding: 10px;
    font-size: 14px;
  }

  /* Payment options */
  .payment-options {
    flex-direction: column;
    gap: 12px;
  }

  .payment-box {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px;
  }

  .payment-left {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .payment-title {
    font-size: 14px;
  }

  .payment-sub {
    font-size: 12px;
  }

  /* Right side summary */
  .checkout-summary {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .summary-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .summary-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

  .summary-details p {
    font-size: 13px;
    margin: 2px 0;
  }

  .summary-price {
    font-size: 14px;
    font-weight: 600;
  }

  .btn-place-order {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 20px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
  }

  /* Bottom mobile nav fix */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 8px 0;
    z-index: 1000;
  }

  .mobile-bottom-nav a {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: #333;
    text-decoration: none;
  }

  .mobile-bottom-nav i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
  }

  .cart-badge {
    position: absolute;
    top: 2px;
    right: 20%;
    background: red;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
  }
}

/* ============================= */
/* MOBILE RESPONSIVE CONTACT UI */
/* ============================= */

@media (max-width: 767px) {

  /* HERO SECTION */
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
  }

  /* CONTACT SECTION */
  .contact-section {
    flex-direction: column;
    margin-top: -60px;
    gap: 20px;
    padding: 0 15px 50px;
  }

  /* CARDS */
  .card {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
  }

  /* CONTACT INFO TEXT */
  .contact-info h3 {
    font-size: 16px;
  }

  .contact-info p {
    font-size: 13px;
  }

  /* SOCIAL ICONS */
  .social-links {
    text-align: center;
  }

  .social-links a {
    margin: 5px;
    padding: 8px;
  }

  /* FORM */
  .contact-form h2 {
    font-size: 20px;
    text-align: center;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
    padding: 8px;
  }

  .btn-submit {
    font-size: 14px;
    padding: 10px;
  }

  /* SUCCESS CARD */
  .success-card {
    font-size: 14px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .card {
    padding: 15px;
  }

  .btn-submit {
    padding: 9px;
  }
}

/* ======================================================
RESPONSIVE HELPERS
====================================================== */



@media (max-width:767px){
.desktop-only{display:none!important;}
.mobile-only{display:flex!important;}
}


