* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
}

.carousel-container {
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 43vw;
    position: relative;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background: url('images/a1.jpeg');
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    background-image: none;
}


.slide-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.shop-btn {
    padding: 15px 40px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.slide1 {
    background: url('images/a1.jpeg');
    background-size: cover;
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}
/* 
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 25px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
} */

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2em;
    font-weight: 300;
    letter-spacing: 2px;
}

header h1 span {
    font-weight: 600;
    color: #f0a500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0a500;
    transition: width 0.3s;
}

nav a:hover:after {
    width: 100%;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(240, 165, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background: #f0a500;
    color: #1a1a2e;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(240, 165, 0, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(240, 165, 0, 0.6);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.section-title {
    text-align: center;
    font-size: 3em;
    font-weight: 300;
    color: #1a1a2e;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #f0a500, #1a1a2e);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-gallery {
    position: relative;
    height: 413px;
    width: 413px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .main-image {
    transform: scale(1.05);
}

.thumbnail-strip {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none;
}

.thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #f0a500;
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.8em;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.product-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    background: #f8f9fa;
    color: #666;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid #e0e0e0;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 2em;
    color: #f0a500;
    font-weight: 700;
}

.add-to-cart {
    background: #1a1a2e;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: #f0a500;
    color: #1a1a2e;
    transform: scale(1.05);
}

.premium-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 40px;
    margin: 80px 0;
}

.premium-content {
    max-width: 1400px;
    margin: 0 auto;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.premium-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.premium-card h4 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #f0a500;
}

.premium-card ul {
    list-style: none;
}

.premium-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1em;
}

.premium-card li:before {
    content: "✓ ";
    color: #f0a500;
    font-weight: bold;
    margin-right: 10px;
}

footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #f0a500;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f0a500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5em;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

.header {
    margin: 0;
    background: linear-gradient(to right, #0B3F27, #186F48);
    padding: 30px 40px;
    text-align: left;
    font-size: 42px;
    font-weight: bold;
    color: white;
}

/* ==============================
   MOBILE FRIENDLY PATCH
   (ADD THIS AT THE END)
============================== */

img {
  height: 56px;
  width: 56px;
  display: block;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Make container padding adapt */
@media (max-width: 1024px) {
  .container {
    padding: 60px 20px;
  }

  .header-content {
    padding: 0 20px;
  }
}

/* ==============================
   MOBILE: <= 768px
============================== */
@media (max-width: 768px) {

  /* Header title */
  .header {
    padding: 18px 18px;
    font-size: 28px;
    text-align: center;
  }

  /* Navbar stacking */
  .header-content {
    flex-direction: column;
    gap: 18px;
    padding: 0 16px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  nav a {
    font-size: 0.95em;
  }

  /* Hero text responsive */
  .hero-section {
    height: auto;
    min-height: 65vh;
    padding: 50px 0;
  }

  .hero-content h2 {
    font-size: 2.2em;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1.1em;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 1em;
  }

  /* Carousel height responsive */
  .carousel-slide {
    height: 40vh;
  }


  .shop-btn {
    padding: 12px 26px;
    font-size: 14px;
  }

  /* Carousel buttons smaller */
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  /* Product grid becomes 1 column (you already did it, but keeping safe) */
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  /* Product cards spacing */
  .product-info {
    padding: 20px;
  }

  .product-info h3 {
    font-size: 1.4em;
  }

  .product-info p {
    font-size: 1em;
  }

  /* FIX: image gallery should NOT be fixed 350px */
  .image-gallery {
    width: 100%;
    height: 260px;
  }

  .thumbnail {
    width: 40px;
    height: 40px;
  }

  /* Price section stack */
  .price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .price {
    font-size: 1.6em;
  }

  .add-to-cart {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  /* Premium section padding */
  .premium-section {
    padding: 60px 18px;
  }

  .premium-card {
    padding: 25px;
  }

  /* Footer spacing */
  footer {
    padding: 50px 18px 25px;
  }
}


/* ==============================
   VERY SMALL: <= 480px
============================== */
@media (max-width: 480px) {

  .carousel-slide {
    height: 40vh;
  }

  .slide-overlay h2 {
    font-size: 22px;
  }

  .slide-overlay p {
    font-size: 13px;
  }

  .section-title {
    font-size: 2em;
  }

  .image-gallery {
    height: 230px;
  }

  .thumbnail-strip {
    gap: 6px;
    padding: 8px;
  }

  .thumbnail {
    width: 34px;
    height: 34px;
  }
}



.carousel-container {
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;     /* ✅ REQUIRED */
    flex: 0 0 100%;      /* ✅ even stronger fix */
    height: 43vw;
    position: relative;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



