/* Reset & Body */
body {
    margin: 0;
    font-family: sans-serif;
}

/* HERO SECTION */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#navigation {
    background-color: rgba(255, 174, 210, 0.8);
    color: aliceblue;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title */
h1 {
    font-size: 40px;
}

/* Navbar */
.navbar ul {
    list-style: none;
    margin: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.navbar a {
    font-size: large;
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    display: block;
    transition: all 0.25s ease;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Fonts */
#Italianno {
    font-family: "Italianno", cursive;
}

.CormorantUp {
    font-family: "Cormorant Upright", serif;
}

/* PRODUCT SECTION */
#products {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

#products h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

/* PRODUCT GRID */
#product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* PRODUCT CARD */
.card {
    border: 1px solid white;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: left;
    width: 100%;
    max-width: 260px;
    margin: auto;
    transition: 0.2s ease;
}

.card:hover {
    border: 1px solid #ffaeae;
}

.card p{
    margin: 5px;
}

/* PRODUCT IMAGE */
.images {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* GRID CONTAINER */
#container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.inline{
  display: inline-flex;
}

/* LOTUS IMAGE */
#lotus {
  width: 50px;
  height: auto;
  object-fit: contain;
}

/* TEXT */
p{
  margin: 0%;
  font-family: "Italianno";
  font-size: 20px;
}

#inline{
  display: flex;
}

#dropsideMenu p{
  font-family: "Cormorant Upright";
  font-size: 18px;
}

/* PRICE RANGE */
.price-range-container {
  width: 210px;
  margin-top: 15px;
  font-family: "Cormorant Upright", serif;
}

.slider {
  position: relative;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  position: absolute;
  height: 100%;
  background: #ffaeae;
  border-radius: 5px;
  left: 20%;
  right: 20%;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  top: -7px;
  height: 5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
}

.range-input input::-webkit-slider-thumb {
  pointer-events: all;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #ffaeae;
  border: none;
  -webkit-appearance: none;
}

.range-input input::-moz-range-thumb {
  pointer-events: all;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #ffaeae;
  border: none;
}

.price-values {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

/* DROPDOWN CONTENT */
#contents{
  display: none;
}

#contents.show{
  display: block;
  background-image: url(Assets/filter\ menu.png);
  color: #ddd;
}

/* FESTIVE COLLECTION */
#Our-festive-Collections{
  background-color: #ffaecd;
  padding: 1%;
}

#Our-festive-Collections p{
  text-align: center;
  color: #ddd;
}

/* LINKS */
a{
  text-decoration: none;
  color: black;
}

/* TITLE */
#title{
  padding-top: 20px;
  font-size: 40px;
  justify-self: center;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

  body{
    overflow-x: hidden;
  }

  #hero{
    height: 70vh;
  }

  h1{
    font-size: 28px;
    text-align: center;
  }

  #navigation{
    flex-direction: column;
    padding: 12px;
  }

  .navbar a{
    font-size: 16px;
    padding: 6px 10px;
  }

  .images{
    aspect-ratio: 3/4;
  }

  p{
    font-size: 16px;
  }

  #title{
    font-size: 28px;
    text-align: center;
  }

  .price-range-container{
    width: 100%;
  }

  #lotus{
    width: 36px;
  }

  #Our-festive-Collections{
    padding: 10px;
  }

  #Our-festive-Collections p{
    font-size: 16px;
  }

}