.home_page{
    min-height: 100vh;
}

.announcement-bar {
  width: 100%;
  background: #fc6a9a;
  overflow: hidden;
  color: white;
  font-size: 35px;
  padding: 8px 0;
   font-family: "Gratelos", sans-serif;
   letter-spacing: 2px;
  white-space: nowrap;
}

.announcement-track {
  display: inline-block;  
}

.announcement-track span {
  margin-right: 20px;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.promo {
  padding: 70px 2.3%;
  background: #ffffff;
  width: 100%;
  margin: auto;
}

.promo-container {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.promo-left {
  display: flex;
  gap: 20px;
  flex: 1;
}

.large {
  position: relative;
  flex: 1;
  height: 500px;
  width: 400px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}

.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large button {
  position: absolute;
  bottom: 100px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  background: white;
  border: none;
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
   z-index: 2;
   color:  #fc6a9a;
}

.promo-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 15px;
  height: 240px;
  background-image: url('../full_size_img/gucci.png');
  background-position: center;
  background-size: cover;
  color: white;
}

.small2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
  padding: 15px;
  height: 240px;
  background-image: url('IMAGES/image13.jpg');
  background-position: center;
  background-size: cover;
  color: white;
}

.small2 img {
  height: 100%;
  border-radius: 10px;
}

.small img {
  height: 100%;
  border-radius: 10px;
}

.card-text h3 {
  margin: 5px 0;
  font-size: 16px;
}

.card-text button {
  background: black;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 15px;
  cursor: pointer;
}

.large,
.small,
.small2{
  position: relative;
  overflow: hidden;
}

.large::after,
.small::after,
.small2::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  transition: 0.4s ease;
  z-index: 1;
}

.large:hover::after,
.small:hover::after,
.small2:hover::after{
  background: rgba(0,0,0,0.4);
}

.large img,
.small img,
.small2 img{
  transition: 0.4s ease;
}

.large:hover img,
.small:hover img,
.small2:hover img  
{
  transform: scale(1.05);
}

.large button,
.card-text,
.card-text button {
  position: relative;
  z-index: 2;
}

@media (min-width: 769px) and (max-width: 1024px) {

  .promo {
    padding: 30px 15px;
  }

  .promo-container {
    flex-direction: column;
    max-width: 100%;
  }

  .promo-left {
    flex-direction: row; /* TABLET = ROW */
    gap: 20px;
  }
  .promo-right {
    gap: 15px;
    flex-direction: row;
    justify-content: center;
  }
  .small {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 10px;
  }
  .small2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 20px;
  }
  .small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
  }
  .small2 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
  }
  .card-text h3 {
    font-size: 14px;
  }
  .card-text p {
    font-size: 12px;
  }
  .card-text button {
    margin-top: 10px;
  }

}

.collection-title{
    display: flex;
    justify-content: space-between;
    padding: 0 2.3%;
}

.collection-title h1{
    font-size: 95px;
    font-family: 'Gratelos', sans-serif;
    color: #fc6a9a;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 40px;
}

.collection-title p{
    padding-top: 60px;
    text-align: right;
   font-family: "Roboto", sans-serif;
    color: #fc6a9a;
    line-height: 1.6;
}

/* ================= PERFUME ================= */
.perfume-product {
  padding: 50px 2.3%;
  background: #fff;
}

.perfume-product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 5 columns */
  gap: 20px;
}

.perfume-product-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
}

.perfume-product-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;  
}

.perfume-product-card h4 {
  margin: 10px 0 5px;
  font-family: "Oswald", sans-serif;
   color: #fc6a9a;
   font-size: 20px;
}

.perfume-product-card p {
  color: #555;
}

.perfume-product-card:hover {
  transform: translateY(-7px);
}

/* ================= SKINCARE  ================= */
.skincare-product {
  padding: 50px 2.3%;
  background: #fff;
  display: none;
}

.skincare-product-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* hide scrollbar */
.skincare-product-container::-webkit-scrollbar {
  display: none;
}

.skincare-product-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.skincare-product-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
  width: 385px;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.skincare-product-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

.skincare-product-card h4 {
  margin: 10px 0 5px;
  font-family: "Oswald", sans-serif;
   color: #fc6a9a;
   font-size: 20px;
}

.skincare-product-card p {
  color: #555;
}

.skincare-product-card:hover {
  transform: translateY(-5px);
}

/* ================= KOREANMART  ================= */
.koreanMart-product {
  padding: 50px 2.3%;
  background: #fff;
  display: none;
}

.koreanMart-product-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* hide scrollbar */
.koreanMart-product-container::-webkit-scrollbar {
  display: none;
}

.koreanMart-product-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.koreanMart-product-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
   width: 385px;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.koreanMart-product-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

.koreanMart-product-card h4 {
  margin: 10px 0 5px;
  font-family: "Oswald", sans-serif;
   color: #fc6a9a;
   font-size: 20px;
}

.koreanMart-product-card p {
  color: #555;
}

.koreanMart-product-card:hover {
  transform: translateY(-5px);
}

/* ================= PRODUCTS 4  ================= */
.kpop-product {
  padding: 50px 2.3%;
  background: #fff;
  display: none;
}

.kpop-product-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 5 columns */
  gap: 20px;
  width: 50%;
  margin: auto;
}

.kpop-product-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
}

.kpop-product-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
}

.kpop-product-card h4 {
  margin: 10px 0 5px;
  font-family: "Oswald", sans-serif;
   color: #fc6a9a;
   font-size: 20px;
}

.kpop-product-card p {
  color: #555;
}

.kpop-product-card:hover {
  transform: translateY(-5px);
}

.luxury-product {
  padding: 50px 2.3%;
  background: #fff;
  display: none;
}

.luxury-product-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 5 columns */
  gap: 20px;
}

.luxury-product-card {
  background: #ffffff;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
}

.luxury-product-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;  
}

.luxury-product-card h4 {
  margin: 10px 0 5px;
  font-family: "Oswald", sans-serif;
   color: #fc6a9a;
   font-size: 20px;
}

.luxury-product-card p {
  color: #555;
}

.luxury-product-card:hover {
  transform: translateY(-7px);
}


.slider-dots{
    
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    display: flex;
}

.dot{
    width: 10px;
    height: 10px;
    display: none;
    border-radius: 50%;

    background: #d8d8d8;

    transition: 0.3s ease;
}

.dot.active{
    width: 25px;

    border-radius: 20px;

    background: #ff4d88;
}

.selection ul{
    display: flex;
    gap: 15px;
}
.selection ul a{
    line-height: 50px;
    font-size: 18px;
    padding: 0 30px;
    border: 1px solid #fc6a9a;
    color: #fc6a9a;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    transition: all 0.5s;
    font-weight: 700;
    border-radius: 5px;
}

.Mboard{
    display: flex;
    justify-content: space-between;
    padding: 0 2.3%;
}

.Mboard h1{
    font-size: 95px;
   font-family: "Gratelos", sans-serif;
   text-align: right;
    color: #fc6a9a;
    letter-spacing: 1px;
    font-weight: 500;

}

.Mboard p{
    padding-top: 170px;
    
   font-family: "Roboto", sans-serif;
    color: #fc6a9a;
    line-height: 1.5;
}

.best-seller{
  background-color: #d8d8d8;
}

@media (min-width: 768px) and (max-width: 1024px){
    .perfume-product-container,
  .skincare-product-container,
  .koreanMart-product-container,
  .luxury-product-container,
  .kpop-product-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 5px 10px;
    -webkit-overflow-scrolling: touch;
  }

  /* REMOVE SCROLLBAR */
  .perfume-product-container::-webkit-scrollbar,
  .skincare-product-container::-webkit-scrollbar,
  .koreanMart-product-container::-webkit-scrollbar,
  .luxury-product-container::-webkit-scrollbar,
  .kpop-product-container::-webkit-scrollbar{
    display: none;
  }

   .perfume-product-card,
  .skincare-product-card,
  .koreanMart-product-card,
  .luxury-product-card,
  .kpop-product-card {
    width: 40%;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
  }

  .perfume-product-card img,
  .skincare-product-card img,
  .koreanMart-product-card img,
  .luxury-product-card img,
  .kpop-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 320px !important;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  .selection ul a{
    
    padding: 0 20px;
   
}

  .perfume-product-card h4,
  .skincare-product-card h4,
  .koreanMart-product-card h4,
  .luxury-product-card h4,
  .kpop-product-card h4 {
    font-size: 15px;
    padding: 10px;
  }

  .kpop-product-container{
    width: 100%;
    justify-content: center;
  }

  .dot{
    display: block;
  }

  .collection-title{
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .Mboard{
    flex-direction: column;
  }
}

.blogs-banner{
  min-height: 80vh;
  width: 100%;
  background:
  linear-gradient(rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.774)),
  url('../IMAGES/cart1.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blogs-banner-text h1{
  font-size: 150px;
  font-family: "Gratelos", sans-serif;
  text-align: left;
  color: #fc6a9a;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 3px;  
}

.blogs-banner-image {
  width: 520px;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
}

.blogs-banner-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) and (min-width: 769px){
  .blogs-banner{
    padding: 120px 40px;
    gap: 5px;
     background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
  
  .blogs-banner-text h1{
    font-size: 50px;
    line-height: 1.1px;
  }

  .blogs-banner-image{
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    padding: 80px 0 30px; /* space dahil fixed navbar */
    justify-content: center;
    background-attachment: scroll; /* fallback */
  }
  .ctn-1 {
    width: 100%; 
  }
  .hero-content-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }  
  .hero-content-text p {
    font-size: 14px;
  }
 .hero-content-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin: 0;
  }
  .hero-content-text a {
    display: inline-block;
    font-size: 14px;
    padding: 10px 18px;
  }
  .ctn-2 {
   
    display: none;
  }

  .promo {
    padding: 30px 15px;
  }
  .promo-container {
    flex-direction: column;
    max-width: 100%;
  }
  .promo-left {
    flex-direction: column;
    gap: 30px;
  }
  .large {
    height: 200px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  .large img{
    margin-bottom: -60px;
  }
  
  .large button{
    bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  .promo-right {
    gap: 15px;
    flex-direction: row;
    justify-content: center;
  }
  .small {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 10px;
  }
  .small2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 20px;
  }
  .small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
  }
  .small2 img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-top: 10px;
  }
  .card-text h3 {
    font-size: 14px;
  }
  .card-text p {
    font-size: 12px;
  }
  .card-text button {
    margin-top: 10px;
  }
  .collection-title{
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .collection-title p{
    text-align: left;
    
  }
  .collection-title h1{
    margin-bottom: 2px;
  }
  *{
    box-sizing: border-box;
  }
  .collection{
    margin-top: -80px !important;
  }
  
  .perfume-product-container,
  .skincare-product-container,
  .koreanMart-product-container,
  .luxury-product-container,
  .kpop-product-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 5px 10px;
    -webkit-overflow-scrolling: touch;
  }

  /* REMOVE SCROLLBAR */
  .perfume-product-container::-webkit-scrollbar,
  .skincare-product-container::-webkit-scrollbar,
  .koreanMart-product-container::-webkit-scrollbar,
  .luxury-product-container::-webkit-scrollbar,
  .kpop-product-container::-webkit-scrollbar{
    display: none;
  }

   .perfume-product-card,
  .skincare-product-card,
  .koreanMart-product-card,
  .luxury-product-card,
  .kpop-product-card {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
  }

  .perfume-product-card img,
  .skincare-product-card img,
  .koreanMart-product-card img,
  .luxury-product-card img,
  .kpop-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }

  .perfume-product-card h4,
  .skincare-product-card h4,
  .koreanMart-product-card h4,
  .luxury-product-card h4,
  .kpop-product-card h4 {
    font-size: 15px;
    padding: 10px;
  }

  .kpop-product-container{
    width: 100%;
  }
  .selection ul {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px 20px;
    margin-left: 10px;
    scroll-snap-type: x mandatory;
  }

  .dot{
    display: block;
  }

  /* HIDE SCROLLBAR */
  .selection ul::-webkit-scrollbar{
    display: none;
  }

  .selection ul a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    height: 45px;
    font-size: 15px;
    border-radius: 30px;
  }
  .Mboard{
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .Mboard p{
    text-align: right;
    padding-top: 20px;
  }

  .Mboard h1{
    text-align: left;
  }
   .blogs-banner{
    min-height: auto;
    padding: 50px 20px 60px;
    flex-direction: row;
    gap: 3px;
    text-align: center;
    background-attachment: fixed;
  }

  .blogs-banner-text h1{
    font-size: 55px;
    line-height: 1.1px;
    text-align: left;
    letter-spacing: 2px;
  }

  .blogs-banner-image{
    width: 280px;
    height: 280px;
    border-radius: 25px;
  }

  .blogs-banner-image img{
    object-fit: contain;
  }
}