/* ==== GLOBAL STYLES ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #000;
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
} */

.hero-content {
    text-align: center;
    z-index: 3;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
}

.hero-content .highlight {
    color: #ff7b00;
}

.hero-content p {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 500;
    color: white;
}

/*<=================== Product Section ===================> */
.product-section {
    background: #fff;
    color: #000;
    padding-top: 50px;
}

/* Our Product Catagories  */

.ProductC-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    margin: 0 15px;
}

.slide .circle {
    width: 150px;
    height: 150px;
    background-color: #e6e6e6;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100px;
    max-height: 80px;
}

.category-name {
    font-weight: bold;
    margin-top: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: orange;
    border: none;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 0;
}

.arrow.right {
    right: 0;
    background-color: #ddd;
    color: #333;
}

@media screen and (max-width: 768px) {
    .slide {
        width: 140px;
    }

    .slide .circle {
        width: 130px;
        height: 130px;
    }

    .arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Product Card */
/* SECTION */
.products-section {
  padding: 100px 20px;
  text-align: center;
}

.products-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
#product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  animation: fadeIn 0.5s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
   
}

/* IMAGE */
.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 15px;

  /* smooth animation */
  transition: transform 0.4s ease, filter 0.4s ease;
  will-change: transform;
}

.card:hover img {
  transform: scale(1.20);
  filter: brightness(1.05);
}

/* CONTENT */
.card-content {
  padding: 15px;
  text-align: left;
}

.card h3 {
  font-size: 18px;
  margin: 5px 0;
}

.card p {
  font-size: 14px;
  color: #666;
}

.price {
  font-weight: bold;
  color: #ff6600;
  margin: 10px 0;
}

/* BUTTON */
.card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #ff6600;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #e65c00;
}

/* PAGINATION */
.pagination {
  margin-top: 40px;
}

.pagination button {
  padding: 10px 18px;
  margin: 0 10px;
  border: none;
  background: #111;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.pagination span {
  font-size: 18px;
  font-weight: bold;
}

.cart-icon {
  position: relative;
  font-size: 20px;
}

#cart-count {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -10px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #product-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #product-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  #product-container {
    grid-template-columns: 1fr;
  }
}
/* <=================== Colsed Product Section ===================> */

/* <=================== Banner section ===================> */
/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 78vh;
    /* adjust to taste */
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 50px;
}

/* video covers whole banner */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important */
    z-index: 0;
    transform: scale(1.03);
    /* subtle zoom */
    will-change: transform;
}

/* overlay to help text contrast */
.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 10%, rgba(0, 0, 0, 0.46) 60%, rgba(0, 0, 0, 0.6) 100%); */
    /* backdrop-filter: blur(0.6px); */
    /* small blur for polish */
}

/* content */
.banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 2rem 1.25rem;
    opacity: 0;
    transform: translateY(18px);
}

.banner.loaded .banner-inner {
    animation: fadeInUp 700ms cubic-bezier(.2, .9, .2, 1) forwards;
}

h1 {
    font-size: clamp(28px, 6vw, 56px);
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    color: #fff;
}

p.lead {
    font-size: clamp(15px, 2.1vw, 20px);
    font-weight: 300;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.95;
    color: #fff;
}

/* small CTA example, optional */
.cta {
    margin-top: 18px;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: transform .18s ease, background .18s ease;
}

.cta:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive fine tuning */
@media (max-width: 720px) {
    .banner {
        height: 62vh;
        min-height: 360px;
    }

    h1 {
        font-size: clamp(22px, 7vw, 34px);
    }

    .banner-inner {
        padding: 1.25rem;
    }
}

@media (max-width: 420px) {
    .banner {
        height: 55vh;
        min-height: 320px;
    }

    p.lead {
        font-size: 14px;
    }

    .cta {
        padding: 10px 16px;
        border-radius: 8px;
    }
}

/* <=================== Colsed Banner section ===================> */

/* <=================== Content Banner section ===================> */
.conten-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 35px;

}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-section {
    flex: 1 1 45%;
    background: url("https://images.pexels.com/photos/33582422/pexels-photo-33582422.jpeg") center/cover no-repeat;
    min-height: 350px;
}

.content-section {
    flex: 1 1 55%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    color: #f26b0f;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.director {
    margin-top: 1rem;
    font-weight: 500;
    color: #333;
}

.subtitle {
    color: #777;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .image-section {
        flex: none;
        width: 100%;
        height: 280px;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    .container {
        border-radius: 12px;
    }

    .content-section p {
        font-size: 0.95rem;
    }
}

/* <=================== Colsed Content Banner section ===================> */

