.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}
/* --- 1. GLOBAL STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        .product-img-box {
  position: relative;
}

/* ===============================
   PRODUCT IMAGE BOX
================================ */
.product-img-box {
  position: relative;
  overflow: hidden;
}

/* ===============================
   ENVA ASSURED BADGE (BOTTOM RIGHT)
================================ */
.assured-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;

  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;

  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  gap: 6px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  z-index: 10;

  letter-spacing: 0.4px;
}

/* Emoji */
.assured-badge::before {
  font-size: 14px;
}

/* ===============================
   HOVER MICRO-ANIMATION
================================ */
.shop-product-card:hover .assured-badge {
  transform: translateY(-2px) scale(1.03);
  transition: all 0.25s ease;
}

/* ===============================
   ADD TO CART BAR (UNCHANGED)
================================ */
.add-to-cart-bar {
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  transition: bottom 0.3s ease;
}

.shop-product-card:hover .add-to-cart-bar {
  bottom: 0;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  .assured-badge {
    font-size: 11px;
    padding: 5px 10px;
    bottom: 10px;
    right: 10px;
  }
}

        
/* ================= OLD ENVA NAVBAR ================= */
.main-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 5%;
  background:#fff;
  position:fixed;
  top:0;left:0;width:100%;
  z-index:2000;
  border-bottom:1px solid #eee;
  padding: 30px;
}


.logo{font-size:22px;font-weight:700;letter-spacing:2px}
.nav-links a{
  margin:0 18px;
  text-decoration:none;
  color:#000;
  font-weight:600;
}
.header-actions{display:flex;align-items:center;gap:20px}
.search-bar{
  display:flex;align-items:center;
  border:1px solid #ddd;border-radius:25px;
  padding:12px 20px;
}
.search-bar input{
  border:none;outline:none;font-size:13px;
}
.icon-group a{color:#000;margin-left:12px;font-size:18px}

/* spacing for fixed navbar */
.page-top-spacing{margin-top:120px}

        

body { font-family: var(--text-sans); background-color: #fff; overflow-x: hidden; }

/* Login/Register Text Style */
.login-register {
    color: #23A6F0; /* Primary brand blue */
    text-decoration: none;
    font-weight: 700;
    font-size: 14px; /* Matches Figma h6/link style */
    display: flex;
    align-items: center;
    gap: 5px;
    
}

/* Breadcrumb Styling */
.breadcrumb-section {
    padding: 40px 0;
    background: #FAFAFA;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb .home { font-weight: 700; color: #252B42; }
.breadcrumb .current { color: #BDBDBD; font-weight: 700; }
.breadcrumb i { font-size: 10px; margin: 0 10px; color: #BDBDBD; }

/* 5 Images Row Styling */
.category-row {
    display: flex;
    gap: 15px; /* Spacing between cards */
    padding: 20px 0;
}

.shop-cat-card {
    flex: 1; /* Each card takes exactly 1/5th of the row */
    position: relative;
    height: 250px; /* Adjust height based on your image aspect ratio */
    overflow: hidden;
}

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

.shop-cat-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Slight darken to make text readable */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.overlay h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 14px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-top: 20px;
}

/* Result Count Text */
.filter-left p {
    font-weight: 700;
    color: #737373;
    font-size: 14px;
}

/* Middle View Toggles */
.filter-middle {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #737373;
    font-weight: 700;
    font-size: 14px;
}

.view-btn {
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 5px;
    cursor: pointer;
    color: #252B42;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: #ECECEC; /* Highlighted state from Figma */
}

/* Right Side Actions */
.filter-right {
    display: flex;
    gap: 15px;
}

.sort-dropdown {
    background: #F9F9F9;
    border: 1px solid #DDDDDD;
    color: #737373;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

.blue-filter-btn {
    background: #23A6F0; /* Exact Figma blue */
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.blue-filter-btn:hover {
    background: #1b84c1;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* The Main Grid Container */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    column-gap: 30px; /* Horizontal space between cards */
    row-gap: 80px;    /* Large vertical space between rows per Figma */
    padding-bottom: 80px;
}

.shop-product-card {
    text-align: center;
    width: 100%;
}

/* Image Box - Tall Portrait Style */
.product-img-box {
    width: 100%;
    height: 400px; /*Adjust height to match your image aspect ratio */
    overflow: hidden;
    margin-bottom: 25px;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps images from stretching */
}

/* Text and Price Styling */
.shop-product-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #252B42;
    margin-bottom: 10px;
}

.shop-product-info p {
    font-size: 14px;
    color: #737373;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-prices {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.shop-prices .old {
    color: #BDBDBD;
    margin-right: 10px;
}

.shop-prices .new {
    color: #23856D; /* The specific dark green for new prices */
}

/* Color Circles */
.shop-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.blue { background-color: #23A6F0; }
.green { background-color: #23856D; }
.orange { background-color: #E77C40; }
.black { background-color: #252B42; }

/* Responsive: 2 images in a row on tablets */
@media (max-width: 992px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 image in a row on mobile */
@media (max-width: 600px) {
    .shop-product-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Global */
.main-footer {
    background-color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

/* Footer Top Bar */
.footer-top {
    background-color: #FAFAFA; /* Light gray background from Figma */
    padding: 40px 0;
}

.footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand-row .logo {
    font-size: 24px;
    font-weight: 700;
    color: #252B42;
}

.social-icons {
    display: flex;
    gap: 20px;
}
.shop-categories {
    margin-top: 50px;
}

.social-icons a {
    color: #23A6F0; /* Primary blue color for icons */
    font-size: 24px;
}

/* Footer Middle (Links) */
.footer-middle {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns as seen in design */
    gap: 30px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 700;
    color: #252B42;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    text-decoration: none;
    color: #737373;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #23A6F0;
}

/* Newsletter Input */
.subscribe-form {
    display: flex;
    height: 50px;
}
.cart-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cart-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 420px;
  text-align: center;
  z-index: 10000;
  pointer-events: auto; /* 🔥 IMPORTANT */
}

.size-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.size-btn {
  padding: 10px 16px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
  pointer-events: auto; /* 🔥 IMPORTANT */
}

.size-btn.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}



.confirm-cart-btn {
  width: 100%;
  background: #1e6bff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.cancel-btn {
  margin-top: 12px;
  cursor: pointer;
  color: #555;
}

.subscribe-form input {
    background: #F9F9F9;
    border: 1px solid #E6E6E6;
    border-radius: 5px 0 0 5px;
    padding: 0 20px;
    flex: 1;
    font-size: 14px;
}

.subscribe-form button {
    background-color: #23A6F0;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    font-weight: 400;
    cursor: pointer;
}

.form-text {
    font-size: 12px;
    color: #737373;
    margin-top: 10px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #FAFAFA;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 14px;
    font-weight: 700;
    color: #737373;
    text-align: left;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter { grid-column: span 2; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter { grid-column: span 1; }
    .footer-brand-row { flex-direction: column; gap: 20px; text-align: center; }
}
/* Grid Layout */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces 4 cards in a row */
    gap: 30px; /* Spacing between cards */
    margin-top: 40px;
}

/* Image Container with Hover Logic */
.product-img-box {
    position: relative;
    overflow: hidden;
    background-color: #F5F5F5;
    border-radius: 4px;
}

.product-img-box img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* Add to Cart Bar */
.add-to-cart-bar {
    text-decoration: none ;
    position: absolute;
    bottom: -50px; /* Hidden state */
    left: 0;
    width: 100%;
    background: #000000; /* Solid black to match Wishlist */
    color: #ffffff;
    border: none;
    padding: 12px 0;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

/* Hover Transitions */
.shop-product-card:hover .add-to-cart-bar {
    bottom: 0; /* Slide up */
    opacity: 1;
}

.shop-product-card:hover img {
    transform: scale(1.05); /* Slight aesthetic zoom */
}

/* Price Styling */
.shop-prices .new {
    color: #23856D; /* Green price from Figma */
    font-weight: 700;
    margin-left: 10px;
}

.shop-prices .old {
    color: #BDBDBD;
    text-decoration: line-through;
}

/* Color Dots Styling */
.shop-dots {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}
.dot { height: 16px; width: 16px; border-radius: 50%; display: inline-block; }
.blue { background-color: #23A6F0; }
.green { background-color: #23856D; }
.orange { background-color: #E77C40; }
.black { background-color: #252B42; }


/* ================================
   SHOP CATEGORIES — MOBILE FIX
================================ */

@media (max-width: 768px) {

  .shop-categories {
    padding: 20px 0;
    margin-top: 70px;
  }

  .category-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px 10px;
  }

  .category-row::-webkit-scrollbar {
    display: none;
  }

  .shop-cat-card {
    min-width: 140px;
    height: 180px;
    flex: 0 0 auto;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

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

  .shop-cat-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.15)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
    color: #fff;
  }

  .shop-cat-card h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .shop-cat-card p {
    font-size: 11px;
    opacity: 0.9;
  }
}
/* =========================
   MOBILE NAVBAR FIX
========================= */

.mobile-header {
  display: none;
}

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

  /* hide desktop header */
  header.container {
    display: none !important;
  }

  /* show mobile header */
  .mobile-header {
    display: block;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }

  .top-bar {
    background: #000;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 6px 0;
  }

  .nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
  }

  .mobile-logo {
    font-size: 18px;
    font-weight: 700;
  }

  .menu-toggle {
    font-size: 20px;
    cursor: pointer;
  }

  .nav-icons i {
    margin-left: 12px;
    font-size: 16px;
  }

  /* hidden menu */
  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .mobile-nav a {
    padding: 14px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
    font-weight: 600;
  }

  /* show when active */
  .mobile-nav.active {
    display: flex;
  }
}
/* =====================================
   MOBILE — PRODUCTS VERTICAL LIST
===================================== */
@media (max-width: 768px) {

  /* product grid becomes single column */
  .shop-product-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;  /* 1 product per row */
    gap: 20px;
    padding: 0 15px;
  }

  /* product card full width */
  .shop-product-card {
    width: 100%;
  }

  /* image fits properly */
  .product-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
}

/* hide mobile icons by default (desktop) */
.menu-toggle,
.search-icon{
  display:none;
}

/*new navbarss ans 
/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter { grid-column: span 2; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter { grid-column: span 1; }
    .footer-brand-row { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 768px) {

  /* ---------- NAVBAR ---------- */
  .main-header{
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .logo{
    font-size: 18px;
  }

  .nav-links{
    display: none;   /* hide big menu on mobile */
  }

  .header-actions{
    gap: 10px;
  }

  .search-bar{
    display: none;   /* hide search on very small screens */
  }

  .icon-group a{
    font-size: 16px;
    margin-left: 8px;
  }

  /* spacing under fixed navbar */
  .page-top-spacing{
    margin-top: 90px;
  }
}

/* hide mobile-only icons on desktop */
.menu-toggle,
.search-icon{
  display:none;
}

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

  /* hide desktop menu + big search */
  .nav-links{ display:none; }
  .search-bar{ display:none; }

  /* show toggle + mobile search */
  .menu-toggle,
  .search-icon{
    display:inline-block;
    font-size:18px;
    color:#000;
    cursor:pointer;
  }

  /* navbar layout */
  .main-header{
    display:grid;
    grid-template-columns: 40px 1fr auto;
    align-items:center;
    padding:12px 16px;
  }

  /* center logo */
  .logo{
    text-align:center;
    font-size:18px;
  }

  /* right side icons */
  .header-actions{
    display:flex;
    align-items:center;
    gap:12px;
  }

  .icon-group a{
    font-size:16px;
    margin-left:6px;
  }

  /* spacing under fixed navbar */
  .page-top-spacing{
    margin-top:100px;
  }
}
/* ================= HEADER ACTION SPACING ================= */

/* Desktop spacing */
.header-actions{
  display:flex;
  align-items:center;
  gap:18px;   /* space between blocks */
}

/* Space between icons inside icon-group */
.icon-group{
  display:flex;
  align-items:center;
  gap:14px;   /* space between icons */
}

/* Mobile spacing */
@media (max-width:768px){

  .header-actions{
    gap:14px;   /* space between toggle, search, icons */
  }

  .icon-group{
    gap:12px;   /* tighter but clean */
  }

  .menu-toggle,
  .search-icon{
    margin-right:4px; /* little breathing space */
  }
}

/* ================= MOBILE MENU ================= */
.mobile-nav{
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid #eee;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  z-index:1500;

  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.mobile-nav a{
  display:block;
  padding:15px 20px;
  text-decoration:none;
  color:#000;
  font-weight:600;
  border-bottom:1px solid #f1f1f1;
}

/* when JS adds .active */
.mobile-nav.active{
  max-height:300px;
}


/* ================= MOBILE SEARCH ================= */
.mobile-search{
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  z-index:1600;

  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

/* when JS adds .active */
.mobile-search.active{
  max-height:90px;
}

.mobile-search-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px 20px;
}

.mobile-search-box input{
  flex:1;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:25px;
  outline:none;
  font-size:14px;
}

.close-search{
  font-size:20px;
  color:#000;
  cursor:pointer;
}


/* ================= TOGGLE ICON ================= */
.menu-toggle{
  cursor:pointer;
  font-size:18px;
}

/* ================= SEARCH ICON ================= */
.search-icon{
  cursor:pointer;
  font-size:18px;
}

/* hide on desktop */
.menu-toggle,
.search-icon{
  display:none;
}

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

  .menu-toggle,
  .search-icon{
    display:inline-block;
    font-size:18px;
    cursor:pointer;
  }
}

/* ================= MOBILE MENU ================= */
.mobile-nav{
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid #eee;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  z-index:1500;

  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.mobile-nav a{
  display:block;
  padding:15px 20px;
  text-decoration:none;
  color:#000;
  font-weight:600;
  border-bottom:1px solid #f1f1f1;
}

.mobile-nav.active{
  max-height:300px;
}

/* ================= MOBILE SEARCH ================= */
.mobile-search{
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  z-index:1600;

  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.mobile-search.active{
  max-height:90px;
}

.mobile-search-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px 20px;
}

.mobile-search-box input{
  flex:1;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:25px;
  outline:none;
}

.close-search{
  font-size:20px;
  cursor:pointer;
}
/* ===============================
   SHOP CATEGORIES (FINAL)
================================ */

.shop-categories {
  width: 100%;
  margin: 50px 0;
}

/* SCROLL CONTAINER */
.category-row {
  display: flex;
  flex-wrap: nowrap;              /* 🔥 REQUIRED */
  gap: 20px;

  overflow-x: auto;               /* 🔥 REQUIRED */
  overflow-y: hidden;

  width: 100%;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}

/* hide scrollbar */
.category-row::-webkit-scrollbar {
  display: none;
}
.category-row {
  scrollbar-width: none;
}

/* CATEGORY CARD (5 VISIBLE) */
.category-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: calc((100% - 80px) / 5);

  height: 230px;
  border-radius: 20px;
  overflow: hidden;
  background: #e5e5e5;

  scroll-snap-align: start;
  cursor: pointer;

  transition: transform 0.35s ease;
}

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

/* IMAGE */
.category-img {
  width: 100%;
  height: 100%;
  position: relative;
}

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

/* OVERLAY */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.15)
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.category-overlay h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.final-price {
  font-weight: 600;
  font-size: 16px;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

/* Strike price */
.original-price {
  color: #9e9e9e;
  font-size: 14px;
  text-decoration: line-through;
}

/* Final price */
.final-price {
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.shop-product-info {
  text-align: center;
}

.price-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.product-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Hover Bar */
.hover-cart-bar {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  background: #000;
  padding: 14px 0;
  text-align: center;
  transition: all 0.35s ease;
}

.hover-cart-bar button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.out-stock-btn {
  background: #555 !important;
  cursor: not-allowed;
}

/* Show on hover */
.product-img-box:hover .hover-cart-bar {
  bottom: 0;
}

/* =================================
   MOBILE CATEGORY SCROLL
================================= */

@media (max-width:768px){

  .shop-categories .container{
    padding:0;
  }

  .category-row{
    display:flex;
    flex-wrap:nowrap;
    gap:12px;

    overflow-x:auto;
    overflow-y:hidden;

    padding:0 15px 12px;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  /* hide scrollbar */
  .category-row::-webkit-scrollbar{
    display:none;
  }

  .category-row{
    scrollbar-width:none;
  }

  /* category cards */
  .category-card{
    flex:0 0 130px;
    min-width:130px;
    height:170px;

    border-radius:16px;
    overflow:hidden;

    scroll-snap-align:start;
  }

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

  .category-overlay{
    background:linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.2)
    );
  }

  .category-overlay h4{
    font-size:12px;
    letter-spacing:1px;
  }

}
/* ===============================
   MOBILE CATEGORY SPACING FIX
================================ */
@media (max-width:768px){

  .shop-categories{
    margin-top: 90px;   /* pushes category section down */
  }

}

/* ===============================
   MOBILE CATEGORY SIZE UPGRADE
================================ */
@media (max-width:768px){

  .category-card{
    flex:0 0 160px;     /* card width */
    min-width:160px;

    height:200px;       /* card height */
    border-radius:18px;
  }

  .category-overlay h4{
    font-size:14px;     /* slightly bigger title */
  }

}
/* ===============================
   MOBILE FOOTER IMPROVEMENT
================================ */
@media (max-width:768px){

  .footer-grid{
    grid-template-columns: repeat(2,1fr);
    gap:30px;
  }

  .footer-col h5{
    font-size:14px;
  }

  .footer-col ul li a{
    font-size:13px;
  }

  .newsletter{
    grid-column: span 2; /* newsletter takes full width */
    margin-top:10px;
  }

  .subscribe-form{
    width:100%;
  }

  .subscribe-form input{
    flex:1;
  }

  .footer-bottom p{
    text-align:center;
    font-size:12px;
  }

}