@import url(variables.css);


.hero {
    height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 30px 0;
}

.hero-slider-mask {
    padding: 80px 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-slider {
    height: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.slide {
    flex: 0 0 100vw;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 80px 80px;
}

.slide img {
    width: 95%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(70%);
    border-radius: 30px;
    object-fit: cover;
}

.slide .description {
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #30303054;
    border: 1px solid rgba(255, 255, 255, 0.288);
    border-radius: 20px;
    padding: 30px 20px;
    backdrop-filter: blur(2px);
}

.slide .description a{
    text-decoration: none;
    padding: 14px;
    width: 200px;
    text-align: center;
    background-color: var(--primary);
    color: #fff;
    border-radius: 5px;
    font-family: var(--common-family);
    transition: all .3s ease;
}

.slide .description a:hover{
    transform: translateX(-1px);
    box-shadow: 2px 2px 10px 5px #f9d5d348;
}

.slider-controls{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    position: absolute;
    left: 0;
    top: 45%;
}

.slider-controls i{
    padding: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff83;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    cursor: pointer;
    z-index: 3;
}


section h2{
    text-align: center;
}


/*intro*/

.beauty-intro {
  background: linear-gradient(to right, #ffe4ec, #fff0f7);
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 1.5rem;
  margin: 2rem auto;
  max-width: 100%;
  width: 1100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.beauty-intro .beauty-container{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

  .beauty-intro h2 {
    font-size: 2rem;
    color: #cc3366;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .beauty-intro p {
    font-size: 1.1rem;
    color: #5a3e4d;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }

  .shop-btn {
    background-color: #cc3366;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .shop-btn:hover {
    background-color: #b22d59;
    transform: scale(1.05);
  }


/*categories*/
.category-section {
  padding: 100px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin: 50px 0;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.section-title p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 40px 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.category-card i {
  font-size: 2rem;
  color: #4a90e2;
  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}


/*FLASH SALES*/

.flash-sale-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  margin: 40px 0;
}

.flash-sale-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.flash-products {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.flash-product-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.flash-product-card a{
  text-decoration: none;
  color: var(--text);
}

.flash-product-card a:hover{
  color: var(--primary);
}

.flash-product-card:hover {
  transform: translateY(-5px);
}

.img-box {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: crimson;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 20px;
}

.product-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;       
  overflow: hidden;            
  text-overflow: ellipsis;
}

.price {
  font-size: 1.1rem;
  color: #1a1a1a;
}

.price span {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
  margin-left: 10px;
}

.countdown {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: bold;
}

.countdown.expired{
  color: #888;
}

.buy-now-btn {
  margin-top: auto;
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.buy-now-btn:hover {
  background-color: var(--accent);
}

/*deal of week*/

.deal-of-the-week {
  background: linear-gradient(135deg, #f9f9f9, #fff);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  margin: 30px 0;
}

.deal-of-the-week .bg-img-dealof-week{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.deal-of-the-week .deal-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.deal-of-the-week .deal-content h2 {
  font-size: 2.5rem;
  color: #e63946;
  margin-bottom: 10px;
}

.deal-of-the-week .deal-content .tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.deal-of-the-week .product-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.deal-of-the-week .product-image img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.deal-of-the-week .product-details {
  max-width: 500px;
  text-align: left;
}

.deal-of-the-week .product-details h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.deal-of-the-week .product-details .desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.deal-of-the-week .price-box {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.deal-of-the-week .old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.deal-of-the-week .new-price {
  color: #2a9d8f;
  font-weight: bold;
}

.deal-acts-btns{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/*newsletter*/

.newsletter-cta {
  /* background: linear-gradient(135deg, #fff2e1, #ffe3cc); */
  position: relative;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.news-letter-bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: -1;
}

.newsletter-container {
  width: 100%;
  padding: 150px 20px;
  background-color: rgba(0, 0, 0, 0.295);
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.newsletter-text{
  text-align: left;
}

.newsletter-text h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}

.newsletter-text p {
  font-size: 1rem;
  color: #000000;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: wrap;
  backdrop-filter: blur(2px);
  background-color: #a8a8a863;
  border: 1px solid #ffffff91;
  border-radius: 10px;
  padding: 40px 20px;
  max-width: 100%;
  width: 800px;
}

.newsletter-form input[type="email"], .newsletter-form input[type="tel"] {
  padding: 16px;
  font-size: 1rem;
  border-radius: 3px;
  border: 1px solid #ffffffb2;
  background-color: transparent;
  color: #fff;
  max-width: 100%;
  width: 400px;
}

.newsletter-form input:focus{
  outline: none;
}

/* .newsletter-form button {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
} */

.newsletter-form button:hover {
  filter: brightness(90%);
}



.location{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0;
    padding: 50px 0;
}

.location div{
  max-width: 100%;
  width: 400px;
  padding: 10px;
  gap: 20px;
}

.payment-logos {
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

}
.payment-logos img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
/*contact*/
.contact-page-main{
  width: 100%;
  gap: 20px;
  padding: 30px 10px;
  align-items: center;
  justify-content: space-evenly;
}

.contact-page-main .details-side{
  max-width: 100%;
  width: 450px;
  gap: 20px;
}

.contact-page-main .form-side{
  max-width: 100%;
  width: 500px;
  gap: 20px;
}

.contact-details h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #111;
}



.contact-details .contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.contact-details .contact-info li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: var(--common-family);
}

.contact-details .contact-info i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 18px;
}

.contact-details strong {
    display: block;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-details .social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-details .social-links a {
    color: #555;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-details .social-links a:hover {
    color: var(--primary);
}



/*legal*/

.tos-pol{
  max-width: 100%;
  width: 1000px;
  padding: 30px 20px;
  margin: auto;
}

.tos-pol section {
  margin-bottom: 3rem;
  border-bottom: 1px solid #e1e4e8;
  padding-bottom: 2rem;
}

.tos-pol h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a73e8; /* a modern, trust-building blue */
  border-left: 5px solid #1a73e8;
  padding-left: 0.75rem;
}

.tos-pol h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #222;
}

.tos-pol p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.75rem;
}


/*categories*/

.category-grid{
  max-width: 100%;
  width: 1100px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-grid .category-card{
  max-width: 100%;
  width: 400px;
  min-height: 200px;
  padding: 40px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  background-color: #e1eeffa6;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: 2px 3px 6px 2px rgba(0, 0, 0, 0.05);
}

.security-trust{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  margin: 30px 0;
  padding: 100px 10px;
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
  color: #fff;
}

.security-trust::before{
  content: "";
  position: absolute;
  left: -15%;
  top: -90%;
  /* max-width: 40%; */
  width: 1000px;
  height: 400px;
  border-radius: 50%;
  background-color: #fff;
}


.security-trust::after{
  content: "";
  position: absolute;
  right: -15%;
  top: -90%;
  /* max-width: 40%; */
  width: 1000px;
  height: 400px;
  border-radius: 50%;
  background-color: #fff;
}

.security-trust .trust-icons-cont{
  width: 100%;
  gap: 10px;
  justify-content: center;
}

.security-trust .trust-icon{
  max-width: 30%;
  width: 200px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: #fff
}

.security-trust .trust-icon i{
  font-size: 50px;
}


/*about*/

.about-container {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
}

.about-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--accent)0%, var(--primary) 100%);
    color: white;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
}
.about-hero h1 span {
    color: #ffd700;
}
.about-hero p {
    font-size: 1.2rem;
}

.about-story {
    margin-bottom: 3rem;
}
.story-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-values {
    text-align: center;
    margin-bottom: 3rem;
}
.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.value-card {
    background: linear-gradient(135deg, #f5f7fa, #e6ecf3);
    border-radius: 0.8rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card i {
    font-size: 2rem;
    color: #2575fc;
    margin-bottom: 0.5rem;
}
.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-call {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
}
.cta-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    font-family: var(--common-family);
}
.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}


@media screen and (max-width: 700px) {
    .hero{
        height: 750px;
    }
  .contact-page-main{
    flex-wrap: wrap;
  }
  .product-info {
    flex-direction: column;
    text-align: center;
  }

  .product-details {
    text-align: center;
  }
  .tos-pol {
    padding: 0 1rem;
  }
  .tos-pol h2 {
    font-size: 1.5rem;
  }
  .tos-pol h3 {
    font-size: 1.1rem;
  }
}