/* styles.css */
/* Nav Right */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        /* Search Styles */
        #search-icon {
            font-size: 18px;
            cursor: pointer;
        }
        
        #search-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 20px;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-radius: 4px;
            padding: 20px;
            z-index: 1000;
            min-width: 300px;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        
        .popular-searches p {
            margin: 0 0 10px 0;
            font-size: 12px;
            color: #666;
        }
        
        .popular-searches ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .popular-searches li {
            margin-bottom: 5px;
        }
        
        .popular-searches a {
            color: #333;
            text-decoration: none;
            font-size: 13px;
        }
        
        .popular-searches a:hover {
            color: #666;
        }
        
        /* Cart Icon in Header */
        .header-cart {
            position: relative;
        }
        
        .cart-icon {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            padding: 8px;
            position: relative;
        }
        
        .header-cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Link without dropdown */
        .link {
            position: relative;
        }
.marquee-bar {
  position: relative;
  top: 0;
  width: 100vw;
  height: 30px;
  background-color: black;
  color: green;
  font-size: 14px;
  z-index: 1001; /* Higher than navbar */
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 0;
}
.marquee-placeholder {
  height: 30px; /* Reserve space so page below doesn't jump */
}
.logo-container {
    position: fixed;
    top: 85px;
    transition: top 0.3s ease;
    height: 170px;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 999;
    background: white;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

.logo-hidden {
  top: -150px !important; /* Hide logo above the screen */
}

.logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    width: 150px; /* Adjust size as needed */
    }
/* fixed header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: fixed;
  top:30px; /* Shift it below the marquee */
  left: 0;
  right: 0;
  padding: 15px 30px;
  width:100vw;
  margin: 0; 
  z-index:999; /* Must be below marquee */
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}

/* Left and right sections inside the navbar */

.nav-left {
  display: flex;
  flex: 1;
  gap: 20px;
  align-items: center;
}
.nav-right {
  gap: 20px; /* spacing between search and cart */
  align-items: center;
  display: flex;
}

/* Icon links (search and cart) */
.icon {
  font-size: 20px;
  color: black;
  margin-left: 20px;
  text-decoration: none;
}

.icon:hover {
  color: #555;
}

/* Navbar links (Categories, Men, Women, About, Orders & Returns) */
.dropdown, .link {
  text-decoration: none;
  color: black;
  font-size: 16px; /* Optional: adjust text size */
}

.dropdown:hover, .link:hover {
  color: #555;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background: white;
  padding: 10px 20px;
}

/* Top Links */
.nav-links > .dropdown > a, 
.nav-links > .link > a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  padding: 8px;
  display: inline-block;
}

/* Hover underline effect */
.nav-links a:hover {
  border-bottom: 2px solid black;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 40px; /* adjust so dropdown appears just below the text */
  left: 0;
  background: white;
  min-width: 200px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  flex-direction: column;
  border-top: 2px solid black;
  z-index: 100;
}

/* When dropdown is shown */
.dropdown:hover .dropdown-content {
  display: flex;
}

/* Columns inside dropdown (only for Men and Women) */
.dropdown-content.multi-column {
  flex-direction: row;
  min-width: 600px;
}

/* Each Column */
.column {
  display: flex;
  flex-direction: column;
  min-width: 150px;
  margin-right: 20px;
}

/* Headings inside columns */
.column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: black;
}

/* Links inside dropdown */
.column a {
  color: black;
  font-size: 14px;
  text-decoration: none;
  margin: 5px 0;
}

/* Hover effect on inner links */
.column a:hover {
  color: black;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
  transform: scale(0.95); /* Shrink on hover */
}

.price {
  color: grey;
  font-size: 22px;
}

footer {
    background-color:black;
    padding: 0px;
    text-align: center;
    color: white;
    padding-top: 30px;
  }
  body {
    background-color:white;
    margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  }
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color:whitesmoke;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover:not(.active) {
    background-color:white;
  }
  
  .active {
    background-color:#388E3C;
  }


/* Top Bar Styles */
.top-bar {
    display: flex;
    justify-content: space-between;
    background-color:white;
    padding: 10px 20px;
    font-size: 0.9em;
}

.top-bar a {
    color: #333;
    text-decoration: none;
    margin-right: 15px;
}

.top-bar a:hover {
    text-decoration: underline;
}

.nav-links {
    list-style: none;
    display: flex;
    position: fixed;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: gray;
}


    body {font-family: Verdana, sans-serif;}

    .mySlides 
    {
        display: none;
        
    }

    img 
    {
        vertical-align: middle;
        height: 450px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Slideshow container */
    .slideshow-container {
        width:100%;
        position: relative;
        margin:0 auto;
        padding-top: 60px;
        overflow: hidden; /* Prevents unwanted scroll/gaps */
        margin-top:-60px;
  
        
      }
      
      /* Caption text */
      .text {
        color:black;
        background-color:white;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
      }
      
      /* Number text (1/3 etc) */
      .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
      }
      
      /* The dots/bullets/indicators */
      .dot {
        height: 15px;
        width: 15px;
        margin: 0 2px;
        border-radius:100%;
        display: inline-block;
        transition: background-color 0.6s ease;
      }
      
      .active {
        background-color: #717171;
      }
      
      /* Fading animation */
      .fade {
        animation-name: fade;
        animation-duration: 1.5s;
      }
      
      @keyframes fade {
        from {opacity: .4} 
        to {opacity: 1}
      }
      
      /* On smaller screens, decrease text size */
      @media only screen and (max-width: 300px) 
        {.text {font-size: 11px}}
        
        .promo-banner {
          text-align: center;
          font-family: 'Playfair Display', serif;
          font-size: 30px; /* Reduced from 36px to 30px */
          margin: 40px auto;
          max-width: 90%;
          color: #000;
      }
      
      .promo-banner .bold-text {
          font-weight: 600;
      }
      
      .promo-banner .italic-text {
          font-style: italic;
          font-weight: 400;
      }
      
      .promo-banner .star {
          color: #7BC47F;
          margin: 0 10px;
          font-size: 34px; /* Slightly smaller star */
      }
      
      .promo-banner .know-more {
          color: #4CAF50;
          font-weight: bold;
          margin-left: 15px;
          text-decoration: underline;
          font-size: 24px; /* Slightly smaller KNOW MORE */
      }
      
      .promo-banner .know-more:hover {
          color: #388E3C;
      }
      
      .clickable-image {
          position: relative;
          width: 100%;
          cursor: pointer;
          background-color: #f9f9f9;
          overflow: hidden;
          text-align: center;
      }
      
      .full-image {
          display: block;
          width: 100%;
          height: auto; /* Maintain natural height */
          object-fit: contain; /* Show entire image without cropping */
          transition: transform 0.3s ease;
      }
      
      .clickable-image:hover .full-image {
          transform: scale(1.05);
      }
    
      .product-catalogue {
        text-align: center;
        background-color: #f8f9fc; /* Light grey background */
        padding: 50px 20px;
    }
    
    .product-catalogue h2 {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        margin-bottom: 40px;
        color: #000;
    }
    
     /* Product Grid */
         .product-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .product-card {
        background-color: white;
        position: relative;
        overflow: hidden;
        width: 250px;
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .product-card img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        z-index: 1;
    }
    
    .product-card:hover img {
        transform: scale(0.95); /* Shrink on hover */
    }
    
    .product-title {
        position: relative;
        z-index: 2;
        background: white;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 20px;
    }

/* product-1 jacket list .php */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align:center;
  padding: 20px;
  background-color: #f8f8f8;
  position: relative;
  padding-top: 100px;
}

header.back-home {
  background-color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: black;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 10px;
  text-align:left;
}
.header-title {
  margin: 0;
  font-size: 28px;
  color: #222;
  font-weight: bold;
  text-align: center !important
}

.product-gallery-1 {
  display: grid;
  gap: 20px;
  padding: 40px;
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
  background-color: #fff;
  text-decoration: none;
  color: inherit; /* Keeps text color consistent */
}

.product-card:hover {
  transform: scale(1.03);
  opacity: 1; /* Ensures price stays fully visible */
}

.product-card img {
  width: 100%;
  height: 300px; /* Same fixed height */
  object-fit: cover;
  display: block;
  object-position: center top;
  margin-top: -40px;
}

.product-card h2 {
  font-size: 18px;
  margin: 10px 0;
}

.product-card p {
  margin: 5px 0;
  font-size: 14px;
  color: #555;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.product-title {
    font-size: 22px;
    text-align: center;
    margin-top: auto;
    padding: 10px 8px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
@media (max-width: 1024px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}
/* before checkout page */
/* Reset */
* .header {
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.back-home {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: #666;
}

.header-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    text-align: center;
}

.jackets-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.jacket-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.jacket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.jacket-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jacket-photo {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.jacket-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.jacket-item:hover .jacket-img {
    transform: scale(1.05);
}

.jacket-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jacket-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    line-height: 1.3;
}

.jacket-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
    margin-top: auto;
}

.jacket-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.size-options {
    width: 100%;
}

.size-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.size-select:focus {
    outline: none;
    border-color: #3498db;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #34495e;
}

/* Product Detail Page */
        .product-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            display: flex;
            gap: 40px;
            background: white; /* Add white background to product area only */
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 50px;
        }
        
        .product-images {
            flex: 1;
            max-width: 500px;
            position: relative;
    
        }
        
        .product-info {
            flex: 1;
            max-width: 400px;
            padding: 20px 0;
        }
        
        .main-image-container {
            position: relative;
            margin-bottom: 15px;
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            background-color: #f0f0f0;
            transition: opacity 0.3s ease;
        }
        
        .zoom-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }
        
        .main-image-container:hover .zoom-icon {
            opacity: 1;
        }
        
        .image-options {
            display: flex;
            gap: 10px;
        }
        
        .image-option {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            opacity: 0.7;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .image-option:hover, .image-option.active {
            opacity: 1;
            border-color: #333;
        }
        
        .product-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.2;
            color: #333; /* Ensure dark color */
            background: transparent !important; /* Remove any background */
        }
        
        .product-price {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 25px;
            color: #333;
        }
        
        .select-options {
            margin-bottom: 25px;
        }
        
        .size-select {
            width: 100%;
            max-width: 200px;
            padding: 12px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 16px;
            background: white;
        }
        
        /* Add to Cart Button */
        .add-to-cart-btn {
            width: 100%;
            max-width: 200px;
            padding: 15px;
            background-color: #333;
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 3px;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 25px;
            transition: background-color 0.3s ease;
        }
        
        .add-to-cart-btn:hover {
            background-color: #555;
        }
        
        /* Product Details */
        .product-details {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .details-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .details-content {
            line-height: 1.6;
            color: #666;
        }
        
        /* Zoom Overlay */
        .zoom-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1002;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        
        .zoom-image {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
        }
        
        .close-zoom {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        
        .zoom-caption {
            color: white;
            margin-top: 15px;
            font-size: 16px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
                gap: 20px;
                padding: 15px;
            }
            
            .product-images,
            .product-info {
                max-width: 100%;
            }
            
            .main-image {
                height: 400px;
            }
        }

.cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1002;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        margin: 150px auto 30px;
        gap: 30px;
    }
    
    .product-images,
    .product-info {
        max-width: 100%;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .jackets-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
        margin: 20px auto;
    }

    .jacket-img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .jackets-container {
        grid-template-columns: 1fr;
    }

    .jacket-img {
        height: 280px;
    }

    .jacket-info {
        padding: 15px;
    }

    .jacket-actions {
        padding: 0 15px 15px;
    }
}

/* Footer Spacing */
.content-spacer {
    flex: 1;
}
        /* home page bottom carousel */
Body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background-color: #f3f3f5;
  color: #111;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
}

.slide-text {
  flex: 1;
  max-width: 50%;
}

.slide-text h1 {
  font-size: 36px;
  font-weight: 500;
}

.slide-text em {
  font-style: italic;
  font-weight: 500;
}

.slide-text p {
  font-size: 18px;
  margin: 20px 0;
  line-height: 1.6;
}

.subtext h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  font-weight: 400;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 10px;
  text-align: center;
}

.icon-block {
  text-align: center;
  font-size: 14px;
  color: #333;
}

.icon-block img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;

}

.slide-images {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 700px;
  overflow: hidden;
  display: block;
  margin:0 auto;
}

.carousel-image {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  cursor: pointer;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-image:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

.carousel-image.active {
  opacity: 1;
  z-index: 1;
}

 /* Cart Modal */
    .cart-modal {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background-color: white;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .cart-header {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .close-cart {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
    }
    
    .cart-items {
        padding: 15px;
    }
    
    .cart-item {
        display: flex;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        margin-right: 10px;
        background-color: #f0f0f0;
    }
    
    .item-details {
        flex-grow: 1;
    }
    
    .item-name {
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .item-price {
        color: #666;
    }
    
    .remove-item {
        background: none;
        border: none;
        color: #e74c3c;
        cursor: pointer;
    }
    
    .cart-total {
        padding: 15px;
        border-top: 1px solid #ddd;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
    }
    
    .checkout-btn {
        width: 100%;
        padding: 12px;
        background-color: #333;
        color: white;
        border: none;
        cursor: pointer;
        margin-top: 10px;
        font-size: 16px;
        border-radius: 3px;
    }
    
    .checkout-btn:hover {
        background-color: #555;
    }
    
    /* Billing Form Modal */
    .billing-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 1002;
        justify-content: center;
        align-items: center;
    }
    
    .billing-content {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        width: 90%;
        max-width: 500px;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
    }
    
    .close-billing {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* New Billing Form Styles */
    .billing-header {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .cart-summary {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    .cart-summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
    }
    
    .cart-summary-total {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        border-top: 1px solid #ddd;
        padding-top: 8px;
        margin-top: 8px;
    }
    
    .billing-section {
        margin-bottom: 25px;
    }
    
    .billing-section-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #eee;
    }
    
    .billing-form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .billing-form-row .form-group {
        flex: 1;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
    .billing-continue-btn {
        width: 100%;
        padding: 12px;
        background-color: #333;
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
    }
    
    .billing-continue-btn:hover {
        background-color: #555;
    }
    
    /* Quantity Controls */
    .qty-controls {
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .qty-controls button {
        width: 28px;
        height: 28px;
        border: none;
        background: #222;
        color: white;
        font-size: 18px;
        cursor: pointer;
        border-radius: 3px;
    }
    
    .qty-controls .qty-number {
        font-size: 16px;
        font-weight: bold;
    }
     /* Jackets Page Specific Styles */
    /* Jackets Page Specific Styles - UPDATED */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  position: relative;
  padding-top: 170px; /* Changed from 100px to 140px */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

.back-home {
  background-color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: black;
  font-size: 16px;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 140px; /* Changed from 120px to 140px to match */
}

.header-title {
  margin: 0;
  font-size: 28px;
  color: #222;
  font-weight: bold;
  text-align: center;
}
  /* Remove any positioning that might cause overlap */

/* Jackets Grid - 3 Columns Filling Full Width */
.jackets-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Increased gap for better separation */
    max-width: 1000px; /* Even more compact */
    margin: 0 auto;
    padding: 40px 20px;
}

.jacket-item {
    background-color: #fff;
    border-radius: 10px; /* Slightly more rounded corners */
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1); /* Enhanced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.jacket-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.jacket-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-grow: 1;
}

.jacket-photo {
    width: 100%;
    height: 340px; /* Better proportion for jackets */
    overflow: hidden;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* More breathing room around image */
}

.jacket-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.jacket-item:hover .jacket-img {
    transform: scale(1.03);
}

.jacket-info {
    padding: 20px 20px 10px;
    flex-grow: 1;
}

.jacket-name {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
    color: #333;
}

.jacket-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.jacket-actions {
    padding: 0 20px 20px;
}

.size-options {
    margin-bottom: 15px;
}

.size-select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #555;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .jackets-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .jackets-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px;
    }
    
    .jacket-photo {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .jackets-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .jacket-photo {
        height: 300px;
    }
    
    .header {
        padding: 30px 15px 15px;
        padding-top: 80px;
    }
    
    .header-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .jacket-photo {
        height: 250px;
    }
    
    .jacket-info, .jacket-actions {
        padding: 15px;
    }
    
    .header-title {
        font-size: 22px;
    }
    
    .jackets-container {
        padding: 15px 10px;
    }
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f5f5f5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Footer Styles */
     .footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 40px;
    align-items: start;
}

/* ===== LOGO FIX - SUPER AGGRESSIVE ===== */
.footer-brand .logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

.footer-brand .logo img,
#footer-logo,
img#footer-logo,
.footer-brand img {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

/* Brand text fix */
.footer-brand .brand-text {
    color: #ccc !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 10px 0 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* Social links fix */
.footer-brand .social-links {
    display: flex !important;
    gap: 12px !important;
    margin-top: 15px !important;
    justify-content: flex-start !important;
}

.footer-brand .social-links a {
    width: 36px !important;
    height: 36px !important;
    background: #2a2a2a !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-brand .social-links a:hover {
    background: #4CAF50 !important;
    transform: translateY(-2px) !important;
}

/* Newsletter Section */
.newsletter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter-box {
    background: #252525;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.newsletter-box h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
}

.newsletter-box p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: #2a2a2a;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #999;
}

.subscribe-btn {
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn:hover {
    background: #45a049;
}

.support-email {
    color: #4CAF50;
    font-weight: 600;
    font-size: 14px;
}

/* Links Sections */
.footer-links-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.links-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #111;
}

.links-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.links-list a:hover {
    color: #4CAF50;
}

.company-name {
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Green Rewards Banner */
.green-rewards-banner {
    background: #2a2a2a;
    padding: 15px 20px;
    margin: 30px 0 20px;
    width: 100%;
    border-radius: 0;
    border-left: none;
}

.rewards-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4CAF50;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    width: 100%;
    margin-top: 0;
    padding: 15px 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

.contact-email {
    color: #4CAF50;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links-sections {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .newsletter-box {
        max-width: 100%;
    }

    .footer-brand .logo {
        max-width: 150px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }

    .footer-brand .brand-text {
        text-align: center !important;
    }

    .footer-brand .social-links {
        justify-content: center !important;
    }
}

  /* Bags-specific styles - MATCHING SCREENSHOT DESIGN */
     .bags-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .bag-item {
            background: white;
            border-radius: 0;
            overflow: hidden;
            text-align: center;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            border: none;
            box-shadow: none;
        }

        .bag-link {
            text-decoration: none;
            color: inherit;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .bag-photo {
            position: relative;
            overflow: hidden;
            background-color: #f0f0f0;
            margin-bottom: 15px;
        }

        .bag-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            object-position: center top;
        }

        .bag-info {
            padding: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .bag-name {
            font-size: 18px;
            margin: 10px 0;
            font-weight: bold;
            color: #333;
            text-align: center;
        }

        .bag-price {
            margin: 5px 0;
            font-size: 20px;
            color: #222;
            font-weight: bold;
            text-align: center;
        }

        .bag-actions {
            padding: 0;
            width: 100%;
            margin-top: 15px;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 12px;
            background-color: #222;
            color: white;
            border: none;
            border-radius: 0;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .add-to-cart-btn:hover {
            background-color: #444;
        }

        @media (max-width: 1024px) {
            .bags-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .bags-container {
                grid-template-columns: 1fr;
            }
        }