/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

@font-face {
  font-family: 'Kiedga';
  src: url(Fonts/Kiedga.ttf);
  font-family: 'Shohid Salam';
  src: url(Fonts/Shohid_Salam.ttf);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;

}

html, body {
  max-width: 100%;
  overflow-x: hidden;

}

@media (max-width: 576px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}




.navbar {
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}

/* Logo */
.navbar-brand img {
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.25));
  transition: transform 0.4s ease;
}

.navbar-brand img:hover {
  transform: scale(1.06);
}

/* Nav Links */
.nav-link {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  position: relative;
  padding: 6px 0;
  transition: all 0.35s ease;
}

/* Hover underline glow */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #9b9b9b);
  transition: width 0.35s ease;
}

.nav-link:hover {
  color: #ffffff !important;
}

.nav-link:hover::after {
  width: 100%;
}

/* Cart Icon */
.bi-bag {
  font-size: 20px;
  color: #fff;
  transition: all 0.35s ease;
}

.nav-link:hover .bi-bag {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
  transform: translateY(-1px);
}


/* ===== Floating Cart Button ===== */
#floatingCartBtn {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #000, #2b2e33);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 20%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

#floatingCartBtn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

#floatingCartBtn i {
  font-size: 22px;
}

/* Cart count badge */
#floatingCartBtn .cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #fff;
  color: #000;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
  font-weight: 600;
}




/* Cart Count */
.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;

  min-width: 18px;
  height: 18px;
  padding: 0 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ffffff, #d9d9d9);
  color: #111;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;

  border-radius: 999px;

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  border: 1px solid rgba(0, 0, 0, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle pop effect when cart updates */
.cart-count.updated {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}


/* Toggler / Hamburger */
.navbar-toggler {
  border: none;
  padding: 6px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== Mobile Offcanvas Style ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px; 
    background: #2b2e33;
    backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 16px 0 0 16px;
    transform: translateX(100%); 
    transition: transform 0.2s ease;
    z-index: 1050; 
  }

  .navbar-collapse.show {
    transform: translateX(0); /* slide in */
  }

  .navbar-nav {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    font-size: 15px;
    letter-spacing: 2px;
    padding: 12px 0;
  }

  /* Optional: Dark overlay behind menu */
  .navbar::before {
    content: '';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b2e33;
    z-index: 1040;
  }

  .navbar-collapse.show ~ .navbar::before {
    display: block;
  }
}

/* ===== Mobile Close Button ===== */
.close-btn {
  display: none; /* default hidden for desktop */
}

@media (max-width: 991px) {
  .close-btn {
    display: block; /* দেখাবে শুধু mobile */
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    background: none;
    border: none;
    color: #f5f6f7;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1060;
  }

  .close-btn:hover {
    color: #7b7f85;
  }
}

.nav-link i,
.dropdown-item i {
  font-size: 0.9rem;
  opacity: 0.8;
}


/* Cart Count */
.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: white;
  color: black;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .search-form {
    width: 100%;
    margin: 10px 0;
  }

  .search-form input {
    width: 100%;
  }

  .search-form button {
    width: 40px;
  }
}


/* ================= Desktop Hover Dropdown ================= */
@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-out;
  }

  .dropdown-menu {
    display: block; /* override bootstrap default */
    opacity: 0;
    transform: translateY(15px); /* smooth slide down */
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    background: #7b7f85;
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  }

  .nav-item.dropdown:hover > .dropdown-menu {
    pointer-events: auto;
  }

  /* Dropdown items hover animation */
  .nav-item.dropdown .dropdown-item {
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    position: relative;
  }

  .nav-item.dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #fff, #bfbfbf);
    transition: width 0.25s ease;
  }

  .nav-item.dropdown .dropdown-item:hover {
    color: #000;
    background: linear-gradient(90deg, #ffffff, #bfbfbf);
    border-radius: 6px;
    transform: translateX(5px);
  }

  .nav-item.dropdown .dropdown-item:hover::before {
    width: 100%;
  }
}

/* ================= Mobile Dropdown (Vertical Expand) ================= */
@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-menu {
    flex-direction: column;
    padding-left: 12px;
    margin: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.25s ease;
    background-color: #7b7f85;
    border-radius: 10px;
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: flex;
    animation: slideDown 0.25s ease forwards;
  }

  .nav-item.dropdown .dropdown-item {
    color: #fff;
    padding: 12px 0;
    background: none;
    transition: all 0.25s ease;
  }

  .nav-item.dropdown .dropdown-item:hover {
    color: #000;
    background: linear-gradient(90deg, #ffffff, #bfbfbf);
    border-radius: 6px;
    transform: translateX(5px);
  }

  /* Smooth slide down animation for mobile */
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}




/* CART SIDEBAR */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 380px;
  max-width: 95%;
  height: 100vh;
  background: linear-gradient(145deg, #2b2e33, #7b7f85);
  backdrop-filter: blur(15px);
  z-index: 9999;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  border-radius: 0 10px 10px 0;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
}



/* Show sidebar */
.cart-sidebar.show {
  right: 0;
}

/* HEADER */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f5f6f7;
  padding-bottom: 15px;
}

.cart-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f5f6f7;
}

.close-cart {
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.3s;
  color: #f5f6f7;
}

.close-cart:hover {
  color: #7b7f85;
}

/* CART ITEMS */
.cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.cart-item-name {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
}



/* SIZE SELECT */
.cart-size {
  margin-bottom: 6px;
  padding: 5px 8px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  transition: all 0.3s ease;
}

.cart-size:focus {
  outline: none;
  border-color: #222;
}



/* TOTAL AND CHECKOUT */
.cart-footer {
  gap: 12px;
}

.cart-footer a{
    text-decoration: none;
    color: #000;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.2rem;
  color: #f5f6f7;
  padding-top: 5px;
  border-top: 1px solid #f5f6f7;
}


.cart-delete-btn {
  background: #2b2e33 ;
  color: #f5f6f7;
  font-size: 14px;
  padding: 6px 9px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cart-delete-btn:hover {
  background: #f5f6f7;
  color: #2b2e33;
  transform: scale(1.1);
}



/* ✅ FIXED CHECKOUT BUTTON (Sidebar Only) */
.cart-sidebar .checkout-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cart-sidebar .checkout-btn:hover {
  background: #f5f6f7;
  color: #2b2e33;
}

/* EMPTY CART */
.empty-cart {
  text-align: center;
  color: #eee;
  font-size: 14px;
  margin-top: 30px;
}

/* RESPONSIVE */
@media(max-width: 576px){
  .cart-sidebar {
    width: 100%;
    padding: 20px;
    border-radius: 0;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Typography */


.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-family: "Shohid Salam";
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 34px;
  opacity: 0.9;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-content .btn {
  padding: 10px 30px;
  border-radius: 50px;
}

.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  animation: reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.text-hidden {
  opacity: 0;
  transform: translateY(20px); /* slide from top */
  pointer-events: none;
}

.text-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Framer-style reveal animation */
.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  animation: reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .top-text {
    font-size: 12px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .navbar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-content .btn {
    font-size: 14px;
    padding: 8px 22px;
  }

  .top-text {
    display: none;
  }
}

/* Featured Section */
.featured-section {
  padding: 100px 0;
  background: #fff;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.featured-header h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: #000;
}

.featured-header p {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-weight: 700;
}

/* Grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

/* Item */
.featured-item {
  display: flex;
  flex-direction: column;
}

.featured-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f5f5;
  transition: transform 0.6s ease;
  border-radius: 10px;
}

.featured-item:hover img {
  transform: scale(1.03);
}

.product-name {
  margin-top: 14px;
  font-size: 1rem;
  color: #111;
  font-weight: 700;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-header {
    flex-direction: column;
    gap: 20px;
  }

  .featured-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-section {
    padding: 70px 0;
  }
}

/* Initial state */
.header-animate {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active state */
.header-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Featured items base state */
.featured-item {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Visible state */
.featured-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Info ticker section */
.info-ticker {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 24px 0;
}

/* Track */
.ticker-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
}

/* Item */
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #111;
  white-space: nowrap;
}

.ticker-item i {
  font-size: 1.3rem;
  color: #000;
}

/* Infinite scroll */
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile tweak */
@media (max-width: 576px) {
  .ticker-track {
    gap: 50px;
    animation-duration: 18s;
  }
}

/* What's New Section */
.whats-new {
  padding: 120px 0;
  background: #fff;
}

/* Header */
.whats-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}

.whats-new-header h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
}

.whats-new-header p {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-weight: 700;
}

/* Grid */
.whats-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.news-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 16px;
  background: #f4f4f4;
  border-radius: 10px;
}

.news-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.news-card p {
  font-size: 1rem;
  color: #555;
  font-weight: 700;
}

/* ===== Shared scroll animation ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .whats-new-header {
    flex-direction: column;
    gap: 20px;
  }

  .whats-new-grid {
    grid-template-columns: 1fr;
  }

  .whats-new-header h2 {
    font-size: 2.4rem;
  }
}


/* Glassmorphic Footer */
.footer {
  width: 100%;
  padding: 100px 0 40px; /* vertical only */
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(0,0,0,0.1);
}


/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-container {
  max-width: 1320px;     /* Bootstrap 5 container (lg+) */
  margin: 0 auto;
  padding: 0 12px;      /* SAME horizontal padding as navbar */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;

}


.footer-brand h2 {
  font-family: 'Kiedga';
    font-size: 40px;
    font-weight: 500;

}

/* Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #555;
    opacity: 0.9;
    font-weight: 700;
}

/* Links */
.footer-column a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: 0.3s ease;
    position: relative;
}

/* Underline Hover Animation */
.footer-column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #555;
    transition: 0.4s ease;
    opacity: 0.8;
}

.footer-column a:hover {
    color: #555;
}

.footer-column a:hover::after {
    width: 100%;
}

/* Bottom Footer */
.footer-bottom {
  max-width: 1320px;
  margin: 60px auto 0;
  padding: 20px 12px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
}


/* Section */
.shop-section {
  padding: 120px 0;
}

/* Header */
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}

.shop-header h2 {
  font-size: 3rem;
  font-weight: 300;
}

.shop-header p {
  max-width: 360px;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
}

/* Grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

/* Card */
.shop-card {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f5f5;
  transition: transform 0.6s ease;
}

.shop-card:hover img {
  transform: scale(1.04);
}

/* Info */
.shop-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.price {
  font-size: 0.95rem;
  color: #555;
}

/* Button */
.add-to-cart {
  margin-top: 10px;
  padding: 10px 0;
  border-radius: 50px;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.add-to-cart:hover {
  background: #000;
  color: #fff;
}

.product-details {
  margin-top: 10px;
  padding: 10px 0;
  border-radius: 50px;
  border: 1px solid #000;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #000;
}


.product-details:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-header {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-header h2 {
    font-size: 2.2rem;
  }
}

/* Pagination  Section */
.pagination-wrapper {
  margin: 90px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-numbers a{
  text-decoration: none;
}

/* Arrows */
.page-arrow {
  border: none;
  background: transparent;
  font-size: 20px;
  color: #777;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.25s ease;
}

.page-arrow:hover {
  color: #000;
}

.page-arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Numbers */
.page-number,
.page-ellipsis {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #777;
}

.page-number {
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.page-number:hover {
  background: rgba(0,0,0,0.05);
  color: #000;
}

.page-number.active {
  background: #e5e5e5;
  color: #000;
  font-weight: 600;
}

.page-ellipsis {
  pointer-events: none;
}



.product-page {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 120px auto 80px auto; /* added more top margin */
  padding: 0 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
  transition: transform 0.3s ease;
}

.product-page:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Keep default image normal so height stays same */
.product-image .img-default {
  width: 100%;
  display: block;
}

/* Hover image positioned on top */
.product-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

/* Animation */
.product-image .img-default {
  animation: fadeDefault 6s infinite;
}

.product-image .img-hover {
  animation: fadeHover 6s infinite;
}

@keyframes fadeDefault {
  0% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0; }
  95% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeHover {
  0% { opacity: 0; }
  45% { opacity: 0; }
  50% { opacity: 1; }
  95% { opacity: 1; }
  100% { opacity: 0; }
}

.product-info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-info h2 {
  font-size: 32px;
  margin: 10px 0 15px 0;
  color: #222;
  font-weight: 600;
}

.price {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: bold;
}

.add-to-cart {
  margin-top: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.add-to-cart:hover {
  background: transparent;
  color: #000;
  transform: translateY(-3px);
}

.accordion-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .product-page {
    flex-direction: column;
    margin: 80px 20px 40px 20px;
  }

  .product-image,
  .product-info {
    width: 100%;
  }

  .product-info h2 {
    font-size: 26px;
  }

  .price {
    font-size: 18px;
  }

  .add-to-cart {
    font-size: 14px;
    padding: 10px 20px;
  }
}




/* About Section */
.about-image {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 6px;
  object-fit: cover;
}





/* Contact Section */
.contact-section {
  padding: 120px 0; /* SAME as .shop-section */
  background: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

/* Left title */
.contact-title {
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: #000;
}

/* Right content */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 420px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-block p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-title {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2.4rem;
  }

  .contact-info {
    gap: 30px;
  }
}



/* =========================
   OUR NEWS / WHAT'S NEW
   Same spacing as shop-section
========================= */

.whats-new {
  padding: 120px 0; /* SAME as .shop-section */
  background: #fff;
}

/* Header */
.whats-new-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px;
}

.whats-new-header h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
  color: #000;
}

.whats-new-header p {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-weight: 600;
}

/* Grid */
.whats-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.news-card {
  display: flex;
  flex-direction: column;
}

/* Image */
.news-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f4f4f4;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: transform 0.6s ease;
}

/* Hover zoom */
.news-card:hover img {
  transform: scale(1.04);
}

/* Title */
.news-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

/* Description */
.news-card p {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  line-height: 1.5;
}

/* =========================
   Scroll Reveal Animation
========================= */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px) {
  .whats-new-header {
    flex-direction: column;
    gap: 20px;
  }

  .whats-new-header h2 {
    font-size: 2.4rem;
  }

  .whats-new-grid {
    grid-template-columns: 1fr;
  }
}


/* Craft & Quality Section */
.craft-section {
  padding: 120px 0; /* same vertical rhythm as shop/about sections */
  background: #fff;
}

.craft-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Text */
.craft-text {
  max-width: 420px;
}

.craft-text h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: #000;
}

.craft-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  font-weight: 600;
}

/* Image */
.craft-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .craft-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .craft-text h2 {
    font-size: 2.4rem;
  }

  .craft-image img {
    max-width: 100%;
  }
}

/* =========================
   Size Chart Table
========================= */

.size-chart-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.size-chart {
  width: 100%;
  border-collapse: collapse;
  background: #7b7f85;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Header */
.size-chart thead {
  background: #2b2e33;
}

.size-chart th {
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 700;
  color: #f5f6f7;
  text-align: center;
  border-bottom: 2px solid #f5f6f7;
}

.size-chart th span {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
}

/* Body */
.size-chart td {
  padding: 16px;
  font-size: 15px;
  text-align: center;
  color: #f5f6f7;
  border-bottom: 1px solid #f5f6f7;
  font-weight: 600;
}



/* Responsive */
@media (max-width: 576px) {
  .size-chart th,
  .size-chart td {
    font-size: 14px;
    padding: 12px 8px;
  }
}


/* Caption */
.size-chart-caption {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
  text-align: center;
  letter-spacing: 0.6px;
  font-weight: 700;
}


/* Exchange Policy (Navbar Aligned) */
.exchange-policy {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.policy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 28px;
  color: #111;
}

.policy-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  padding: 14px 0;
}

.policy-row:last-child {
  border-bottom: none;
}

.policy-row i {
  font-size: 18px;
  color: #000;
  flex-shrink: 0;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .exchange-policy {
    padding: 30px 0;
  }

  .policy-row {
    font-size: 14px;
  }
}


.input-error {
  border: 2px solid #dc3545 !important;
}


.input-error { border: 1px solid red; }
.checkout-btn {
  background: #000;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  display: block;
  text-decoration: none;
}

/* Back To Top Button */
/* From Uiverse.io by vinodjangid07 */ 
.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2b2e33;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
}

.svgIcon path {
  fill: white;
}

.button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: #7b7f85;
  align-items: center;
}

.button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.button::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}

/* ===============================
   CHECKOUT PAGE
=============================== */

.checkout-section {
  padding: 120px 0;
}

.checkout-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}

/* LEFT SIDE */

.checkout-left h2 {
  font-size: 3rem;
  font-weight: 300;
}


/* TABLE WRAPPER */
.checkout-table-wrapper {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px #e8e8e8;   /* cleaner than border */
}


/* TABLE */
.checkout-table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.checkout-table thead {
  background: #f9f9f9;
}

.checkout-table th {
  padding: 16px 12px;
  text-align: left;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #444;
  border-bottom: 1px solid #e5e5e5;
}

/* BODY CELLS */
.checkout-table td {
  padding: 18px 12px;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}

/* Vertical column separators (soft) */
.checkout-table th:not(:last-child),
.checkout-table td:not(:last-child) {
  border-right: 1px solid #f3f3f3;
}

/* Remove last row bottom border */
.checkout-table tbody tr:last-child td {
  border-bottom: none;
}


/* RIGHT SIDE */
/* ============================= */
/* BEAUTIFUL CHECKOUT RIGHT SIDE */
/* ============================= */

.checkout-right {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 0 0 1px #e8e8e8;   /* same style as table */
}

/* Title */
.checkout-right h3 {
  margin-bottom: 25px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Inputs */
.checkout-right input,
.checkout-right textarea,
.checkout-right select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.3s ease;
  font-family: inherit;
}

/* Focus effect */
.checkout-right input:focus,
.checkout-right textarea:focus,
.checkout-right select:focus {
  outline: none;
  border-color: #000;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* Textarea resize control */
.checkout-right textarea {
  resize: vertical;
  min-height: 100px;
}

/* ✅ FIXED CHECKOUT PAGE BUTTON */
.checkout-right button {
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 10px;
}

.checkout-right button:hover {
  background: #fff;
  color: #000;
}



/* ============================= */
/* MOBILE RESPONSIVE CHECKOUT */
/* ============================= */

@media (max-width: 768px) {

  /* Stack layout */
  .checkout-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* Make table scrollable */
  .checkout-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
  }

  /* Minimum width so scroll appears */
  .checkout-table {
    min-width: 600px;
  }

  /* Smaller padding on mobile */
  .checkout-table th,
  .checkout-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  /* Right section spacing */
  .checkout-right {
    padding: 20px;
  }

  .checkout-right h3 {
    font-size: 1.1rem;
  }

  .checkout-right input,
  .checkout-right textarea,
  .checkout-right select {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .checkout-right button {
    padding: 11px;
    font-size: 0.9rem;
  }
}





  /* CART IMAGE */
.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}


.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* CHECKOUT IMAGE */
.checkout-product {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}


/* CHECKOUT CART FOOTER */
.checkout-cart-footer {
  display: flex;
  justify-content: space-between;   /* left & right */
  align-items: flex-start;
  padding: 25px 0;
  border-top: 1px solid #e5e5e5;
  gap: 40px;
}

/* ===================================== */
/* CONTINUE SHOPPING - FIXED VERSION */
/* ===================================== */

.checkout-cart-footer .continue {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;

  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;

  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;

  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

/* Sliding background */
.checkout-cart-footer .continue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: -1;   /* IMPORTANT FIX */
}

/* Hover background animation */
.checkout-cart-footer .continue:hover::before {
  transform: scaleX(1);
}

/* Text color change */
.checkout-cart-footer .continue:hover {
  color: #fff;
}

/* Arrow animation */
.checkout-cart-footer .continue .arrow {
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}

.checkout-cart-footer .continue:hover .arrow {
  transform: translateX(-6px);
}


/* RIGHT SIDE - Price Summary */
.checkout-cart-footer .subtotal {
  min-width: 260px;
  text-align: right;
}

/* Each row */
.checkout-cart-footer .subtotal div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Divider */
.checkout-cart-footer .subtotal hr {
  border: none;
  border-top: 1px solid #000;
  margin: 12px 0;
}

/* Grand Total */
.checkout-cart-footer .subtotal .grand {
  font-weight: 600;
  font-size: 1rem;
}

/* Price values */
#subtotal,
#deliveryText,
#finalTotal {
  font-weight: 500;
}

/* Optional Free style */
#deliveryText.free {
  color: #2b2e33;
}



 /* ============================= */
/* MOBILE FIX - CART FOOTER */
/* ============================= */

@media (max-width: 768px) {

  .checkout-cart-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  /* Continue button full width */
  .checkout-cart-footer .continue {
    width: 100%;
    text-align: center;
  }

  /* Price summary full width */
  .checkout-cart-footer .subtotal {
    width: 100%;
    min-width: unset;
    text-align: left;
  }

  /* Keep price rows horizontal */
  .checkout-cart-footer .subtotal div {
    justify-content: space-between;
  }

  /* Make divider softer on mobile */
  .checkout-cart-footer .subtotal hr {
    margin: 10px 0;
  }

  /* Grand total slightly larger */
  .checkout-cart-footer .subtotal .grand {
    font-size: 1.05rem;
  }
}


/* ============================= */
/* SIZE SELECT WRAPPER */
/* ============================= */

.size-select-wrapper {
  position: relative;
  display: inline-block;
}

/* Styled Select */
.size-select-wrapper select {
  padding: 6px 28px 6px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  transition: 0.2s ease;
}

/* Focus */
.size-select-wrapper select:focus {
  outline: none;
  border-color: #000;
  background: #fff;
}

/* Custom Dropdown Arrow */
.size-select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  pointer-events: none;
  color: #555;
  transition: transform 0.2s ease;
}

/* Rotate arrow on focus */
.size-select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}






/* ============================= */
/* QUANTITY MINIMAL STYLE */
/* ============================= */

.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty-box button {
  width: 28px;
  height: 28px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.qty-box button:hover {
  background: #f0f0f0;
}

.qty-box span {
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}





/* ============================= */
/* DELETE BUTTON MINIMAL */
/* ============================= */

.delete-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.delete-btn:hover {
  border-color: #000;
}
