/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
.navbar .logo {
  font-weight: 800;
  font-size: 24px;
}
.navbar nav a {
  margin-left: 20px;
  font-weight: 500;
}

/* Hero */
.hero {
  background: url('../images/hero-banner.png') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero-cart {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
}
.hero-text {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.hero-text-up {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-text-up p {
  font-size: 16px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 0;
}

.hero-text-up h1 {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  line-height: 0.8;
  text-transform: uppercase;
}

.white-bold {
  color: #fff;
  font-weight: 800;
}

.black-bold {
  color: #000000;
  font-weight: 800;
}

.hero-text-mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 600px;
  font-size: 18px;
}

/* Shop Collection */
.shop-collection {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop-collection:hover {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.shop-collection-cart {
  position: absolute;
  transform: translateX(-50%);
  background-color: #000000;
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop-collection-cart:hover {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Icons */
.icons {
    display: flex;
    justify-content: space-around;
    padding: 40px 10%;
    text-align: center;
}

.icons i {
    font-size: 30px;
    margin-bottom: 10px;
    background-color: black;
    color: white;
    border-radius: 50%;
    padding: 15px;
}

/* Explore Boxes */
.explore {
  display: flex;
  gap: 20px;
  padding: 40px 10%;
}

.explore-box {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.explore-box img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.explore-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.explore-box h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

/* Collection */
.collection {
  text-align: center;
  padding: 60px 5%;
}
.collection h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.collection .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product-card {
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, 0.3s ease;
  position: relative;
}

.product-card-idx {
  width: 100%;
  box-sizing: border-box;
  background: #f8f8f8;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, 0.3s ease;
  position: relative;
}

.product-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-card-idx .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 315px;
}

.product-card-idx img {
  width: 100%;
  height: 315px;
}

.product-card h4{
  font-weight: bolder;
  font-size: larger;
  text-align: left;
}

.product-card-idx h4{
  font-weight: bolder;
  font-size: larger;
  text-align: left;
}

.product-card p{
  margin-top: 5px;
  font-size: large;
  text-align: left;
}

.product-card-idx p{
  margin-top: 5px;
  font-size: large;
  text-align: left;
}

/* Story */
.story {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
}

.story-img {
  flex: 1;
}

.story-img img {
  width: 100%;
  border-radius: 8px;
}

.discover-btn {
  background-color: #111827;
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 20px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 15px;
}

.discover-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
   

/* Testimonials */
.testimonials {
  padding: 60px 10%;
  background-color: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.testimonials p {
  color: #444;
  font-size: 16px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: #f1f4fa;
  padding: 25px;
  border-radius: 8px;
  max-width: 450px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stars {
  font-size: 18px;
  color: #000;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.user-info strong {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.user-info span {
  font-size: 14px;
  color: #666;
}

/* CTA */
/* .cta {
  padding: 60px 10%;
  background: #21272E;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

.shop-btn{
  background-color: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop-btn:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  background-color: #fff;
  color: #000;
}

.footer {
  background-color: #21272E;
  color: #d1d5db;
  padding: 60px 10% 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.footer a:hover {
  color: #fff;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #d1d5db;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-subscribe label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-subscribe input {
  padding: 10px;
  width: 100%;
  max-width: 300px;
  background: #9ca3af;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
}

.footer-subscribe button {
  padding: 10px 18px;
  background: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.footer-subscribe button:hover {
  background: #e5e7eb;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

.footer-bottom a {
  color: #fff;
  font-weight: 500;
  margin-left: 6px;
} */

/* Shop Banner */
.shop-banner {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.shop-banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:center ;
}

/* Shop Layout */
.shop {
  display: flex;
  padding: 40px 8%;
  gap: 40px;
}

.shop-sidebar {
  min-width: 200px;
}

.shop-sidebar h4 {
  margin-bottom: 20px;
}

.shop-sidebar ul {
  list-style: none;
  padding: 0;
}

.shop-sidebar li {
  margin-bottom: 10px;
  cursor: pointer;
}

.shop-sidebar .active {
  font-weight: bold;
  text-decoration: underline;
}

/* Shop Content */
.shop-content {
  flex-grow: 1;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sort-dropdown label {
  margin-right: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  background: #000;
  border-radius: 4px;
  margin-bottom: 10px;
}

.add-btn {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 18px 20px;
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.add-btn:hover {
  transform: scale(1.05);
}

/* Subscribe Section */
.subscribe {
  background: #f6f6f6;
  text-align: center;
  padding: 50px 20px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #aaa;
  width: 300px;
}

.subscribe-form button {
  padding: 10px 20px;
  background: #222;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* image */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
}

.background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/contact-lady.avif') no-repeat center center/cover;
  filter: blur(1px);
  z-index: -1;
  height: 100% ;
  
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.form-container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.form-container h1 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #111;
}

.form-container p {
  margin-bottom: 25px;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit{
  background-color: #3f3f3f;
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.submit:hover{
  transform: scale(1.02);
}

@media (max-width: 480px) {
  .form-container {
    padding: 30px 20px;
  }
}

/* contact */

.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info p,
.contact-info li,
.contact-info h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info ul li a {
  text-decoration: none;
  color: #0066cc;
}

.map-container {
  flex: 1 1 450px;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}


/* product header */
.categories {
  background-color: #f8f8f8;
  padding: 10px 20px;
}
.cat-links {
  display: flex;
  justify-content: space-around;
}
.cat-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.cat-links a:hover {
  color: #000000;
  text-decoration: underline;
}
/* product font */
.product-font {
  font-family: Arial, sans-serif;
  margin: 20px;
  background: #f9f9f9;
}
.product {
  display: flex;
  gap: 30px;
  background-color: white;
  justify-content: center;
}
.product-title{
  font-size: 32px;
  font-weight: bold;
  text-align: left;
}
.product-sub-title {
  font-size: 18px;
  font-weight: bold;
}
.product-image {
  cursor: pointer;
  width: 350px;
  height: auto;
  border: 2px solid #ffffff;
  border-radius: 8px;
  margin-top: 40px;
}
.small-image {
  width: 3cm;
  height: 3cm;
  object-fit: cover; /* Optional: keeps the image nicely cropped */
  border: 2px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-right: 20px;
}
.quantity-container {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.qty-btn,
.qty-display {
  padding: 10px 16px;
  font-size: 16px;
  border: none;
  background: white;
  cursor: pointer;
  min-width: 40px;
  text-align: center;
}

.qty-display {
  pointer-events: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.buy-btns{
  display: flex;
}
.add-to-bag {  
  margin-right: 20px;
  padding: 12px 50px;
  font-size: 16px;
  color: rgb(0, 0, 0);
  border: 2px solid black;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
}
.buy-now{
  padding: 12px 100px;
  font-size: 16px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
}
/* for image enlarge */
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
/* Modal image */
.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 90%;
  animation: zoom 0.3s;
  border-radius: 4px;
}
@keyframes zoom {
  from {transform: scale(0.8)}
  to {transform: scale(1)}
}
/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* product price */
.price-section {
  font-family: Arial, sans-serif;
  margin: 0px;
}
.special-price-label {
  color: green;
  font-size: 14px;
  margin-bottom: 4px;
}
.price-details {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.discounted-price {
  color: #000;
  font-weight: bolder;
  font-size: 25px;
}
.original-price {
  color: #ff0000;
  text-decoration: line-through;
  font-size: 16px;
}
.discount-percent {
  color: green;
  font-size: 16px;
  font-weight: bold;
}
.variant{
  display: flex;
}

.product-size {
  font-size: 15px;
  background: none;
  border: 2px solid #ccc;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.product-size img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}
.product-size:hover {
  border-color: #000000;
}

/* You may also like */
.related-section {
  text-align: center;
}

.related-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 items per row */
  gap: 10px;
}
.color-button { 
  display: inline-block; 
  width: 32px;
  height: 40px; 
  border: 2px solid #ccc; 
  border-radius: 10px; 
  margin-right: 10px; 
  cursor: pointer; 
}
.color-button.active { 
    border-color: black; 
}
.carousel {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-top: 30px;
}

.carousel-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  margin-top: 10px;
}

.carousel-img:hover {
  border-color: #000;
}
.image-section {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.cart-icon img {
  width: 40px; 
  height: auto;
  display: inline-block;
  vertical-align: middle;
  /* margin-top: 10px; */
  cursor: pointer;
}
.cart-icon {
  position: relative;
  display: inline-block;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 4px 7px;
  font-size: 12px;
  font-weight: bold;
}
.product-size.active {
  background-color: #000;
  color: #fff;
}
@media (max-width: 768px) {
    /* Hero Section */
    .hero-text {
        padding: 20px;
        text-align: center;
    }

    .hero-text-up h1 {
        font-size: 2.2rem;
    }

    .hero-text-mid p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero {
        height: 70vh; /* Reduce from full height to 60% of viewport */
        background-size: cover;
        background-position: center;
    }

    .shop-collection {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Icons Row */
    .icons {
        display: flex;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .icons div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .icons i {
        font-size: 20px;
    }

    .icons p {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
    }

    /* Explore Section */
    .explore {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .explore-box img {
        width: 100%;
        height: auto;
    }

    .overlay h1 span {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .overlay p {
        font-size: 14px;
        line-height: 1.4 !important;
    }

    .overlay {
        padding: 15px;
        text-align: center;
    }

    .overlay h1 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    /* Collection Grid */
    
      .collection {
        padding: 40px 10px;
        text-align: center;
      }
    .collection .grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
    }

    .collection .grid > div {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .product-card-idx {
    position: relative;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    }

    .product-card-idx img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    }

    .collection h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .collection p {
        text-align: center;
        font-size: 1rem;
        padding: 0 15px;
    }

    .product-card img {
        width: 100%;
        height: auto;
    }

    .product-desc h4 {
        font-size: 1rem;
        margin: 10px 0 5px;
    }

    .product-desc p {
        font-size: 0.9rem;
    }

    /* Story Section */
    .story {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 20px;
        text-align: center;
    }

    .story-text h2 {
        font-size: 2rem !important;
    }

    .story-text p {
        font-size: 1rem;
    }

    .story-img img {
        width: 100%;
        height: auto;
    }

    .discover-btn {
        margin-top: 20px;
        padding: 10px 20px;
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 20px;
    }

    .testimonials h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .testimonial-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        padding: 15px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .testimonial-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .user-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .user-info img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
}
/* footer mobile */
/* Mobile responsive CTA and Footer */
/* @media (max-width: 768px) {
    .cta {
        text-align: center;
        padding: 30px 15px;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 14px;
        margin: 15px 0;
    }

    .shop-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-brand p,
    .footer-links a {
        font-size: 14px;
    }

    .footer-links h4 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .footer-socials a {
        margin: 0 8px;
        font-size: 20px;
    }

    .footer-subscribe {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 10px;
    }

    .footer-subscribe input[type="email"] {
        width: 100%;
        max-width: 300px;
        padding: 8px 12px;
        font-size: 14px;
    }

    .footer-subscribe button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .footer-bottom {
        text-align: center;
        font-size: 13px;
        padding: 15px 10px;
    }
} */
/* shop page */

@media (max-width: 768px) {
    /* Banner image full width, adjusted height */
    .shop-banner img.banner-img {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: cover;
    }

    /* Shop layout stacks vertically */
    .shop {
        flex-direction: column;
        padding: 1rem;
    }

    .shop-sidebar {
        display: block;
    }

    .shop-sidebar h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .shop-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
        list-style: none;
    }

    .shop-sidebar ul li {
        background-color: #f1f1f1;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        cursor: pointer;
    }

    .shop-sidebar ul li.active {
        background-color: black;
        color: white;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .shop-header h2 {
        font-size: 1.5rem;
    }

    .sort-dropdown {
        width: 100%;
    }

    .sort-dropdown select {
        width: 100%;
        padding: 0.5rem;
    }

    /* Product grid becomes single column */
    .product-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: space-between;
    }
    .product-card h4{
      font-size: medium;
    }

    .product-card p{
      font-size: medium;
    }

    .product-card {
        width: 48%; /* Show 2 products per row */
        margin-bottom: 15px;
    }

    /* Subscribe section */
    .subscribe {
        padding: 2rem 1rem;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 0.5rem;
    }

    .subscribe-form input {
        width: 100%;
        padding: 0.5rem;
    }

    .subscribe-form button {
        width: 100%;
        padding: 0.5rem;
    }
}

/* product-page*/

@media (max-width: 768px) {
  .product-container {
    padding: 1rem;
  }

  .product {
    flex-direction: column;
    align-items: center;
  }

  .image-section {
    display: flex;
    flex-direction: column-reverse;;
    align-items: center;
  }

  .carousel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    overflow-x: auto;
    margin-top: 10px;
    width: 100%;
    padding: 0 10px;
  }

  .carousel-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .product-info {
    width: 100%;
    padding: 0 1rem;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .product-sub-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555;
  }
  
  .discounted-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #111;
  }

  .original-price {
    text-decoration: line-through;
    color: #777;
    font-size: 1rem;
  }

  .discount-percent {
    color: #d32f2f;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .variant-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
  }

  .variant-options .size-section,
  .variant-options .color-section {
    flex: 1;
    min-width: 45%;
  }

  .qty-btn {
    padding: 0.3rem 0.8rem;
    font-size: 1.2rem;
  }

  .variant {
    flex-direction: column;
    gap: 1rem;
  }

  .size, .color {
    margin-right: 0;
    text-align: center;
  }

  .product-size, .color-button {
    margin: 5px;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .color-button {
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    padding: 0;
  }

  .buy-btns {
    display: flex;
    flex-direction: column;
  }

  .add-to-bag, .buy-now {
    padding: 0.8rem;
    font-size: 1rem;
    width: 100%;
  }

  .related-section h2 {
    text-align: center;
    font-size: 1.2rem;
  }

  .product-card img {
    width: 100%;
    height: 150px !important;
  }

  .add-btn{
    padding: 10px;
  }

  .description {
    padding: 1rem;
  }

  .description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Modal image max size */
  .modal-content {
    max-width: 90vw;
    max-height: 90vh;
  }

  .modal .close {
    top: 10px;
    right: 20px;
    font-size: 2rem;
  }
}

/*cart page*/
@media (max-width: 768px) {
    .cart-container {
        flex-direction: column-reverse;
        padding: 10px;
    }

    .cart-items,
    .cart-summary {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
        padding: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-item img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .cart-item-details {
        width: 100%;
    }

    .head {
        flex-direction: column;
        gap: 10px;
    }

    .cart-actions {
        text-align: center;
    }

    .cart-quantity-container {
        justify-content: center;
    }

    .cart-suggestions {
        flex-direction: column;
        align-items: center;
    }

    .cart-suggestions .item {
        flex-direction: column;
        align-items: center;
    }

    .cart-summary {
        width: 100%;
        margin-bottom: 20px;
        padding: 15px;
    }

    .add-jacket {
        padding: 10px 15px;
        font-size: 14px;
    }

    .cart-proceed {
        padding: 10px;
        font-size: 14px;
    }

    .cart-subtotal {
        text-align: center;
    }

    .cart-summary > div:nth-child(6) {
        flex-direction: column;
        gap: 12px;
    }

    .cart-summary > div:nth-child(6) > div {
        width: 100%;
    }
}.cta {
  text-align: center;
  padding: 2rem 1rem;
  background: #1d1d1f;
  color: #fff;
}
.cta h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.cta p {
  margin-bottom: 1rem;
}
.shop-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  background-color: white;
  color: #1d1d1f;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: #1d1d1f;
  color: #ccc;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-brand h3 {
  color: white;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-links h4 {
  color: white;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.25rem;
}
.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.footer-subscribe form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-subscribe input {
  padding: 0.6rem;
  border-radius: 8px;
  border: none;
}
.footer-subscribe button {
  padding: 0.6rem 1.2rem;
  background-color: white;
  color: #1d1d1f;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
.footer-socials a {
  margin-top: 1rem;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #ccc;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #888;
}

@media (min-width: 768px) {
  .footer-container {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
  }
  .footer-links {
      flex-direction: row;
      gap: 3rem;
  }
  .footer-subscribe form {
      flex-direction: row;
  }
  .footer-subscribe input {
      flex: 2;
  }
  .footer-subscribe button {
      flex: 1;
  }
}