@charset "UTF-8";


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.about-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #ffb6c1, #ff4d88);
  color: white;
}

.about-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}


.about-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px;
  flex-wrap: wrap;
}


.about-box {
  background: #fff0f5;
  padding: 25px;
  border-radius: 15px;
  width: 280px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-box h2 {
  color: #ff4d88;
  margin-bottom: 10px;
}


.text-box-section {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.text-box {
  background: #fff0f5;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ff9bb3, #ff4d88);
  padding: 15px 30px;
}

.logo {
  color: white;
  font-size: 26px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #ff66a3;
  border-radius: 20px;
}


.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  right: 0; 
  left: auto;
  background: #ffe6f0;
  list-style: none;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
  color: #cc0066;
  padding: 12px;
}

/* Dropdown hover */
.dropdown-menu li a:hover {
  background-color: #ffb3cc;
  border-radius: 8px;
}


.dropdown:hover .dropdown-menu {
  display: block;
}


.image-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  background-color: #fff0f5;
}

.image-container {
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-container img:hover {
  transform: scale(1.1);
}


.contact-section {
  text-align: center;
  padding: 50px;
  background: #fff0f5;
}

@media (max-width: 768px) {

  .image-section {
    flex-direction: column;
    align-items: center;
  }

  .brand-section {
    flex-direction: column;
    align-items: center;
  }

}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 300px;
  padding: 10px;
  border: 1px solid #ffb6c1;
  border-radius: 8px;
}

.contact-form button {
  background: #ff4d88;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
}

.reviews-section {
  text-align: center;
  padding: 50px;
}

.review-box {
  background: #ffe6f0;
  padding: 20px;
  border-radius: 15px;
  display: inline-block;
}

.review-box textarea {
  width: 250px;
  margin-top: 10px;
}

.review-box button {
  margin-top: 10px;
  background: #ff66a3;
  border: none;
  padding: 8px 15px;
  color: white;
  border-radius: 8px;
}


.stars {
  font-size: 24px;
  color: gold;
  margin: 10px 0;
}

/* Review Display */
.review-display {
  margin-top: 20px;
  color: #444;
}

/* SUBSCRIBE */
.subscribe-section {
  text-align: center;
  padding: 50px;
  background: #fff0f5;
}

.subscribe-section input {
  padding: 10px;
  width: 250px;
  border-radius: 8px;
  border: 1px solid #ffb6c1;
}

.subscribe-section button {
  padding: 10px 15px;
  background: #ff4d88;
  color: white;
  border: none;
  border-radius: 8px;
  margin-left: 10px;
}

* {box-sizing:border-box}

/* FOUNDER SECTION */
.founder-section {
  text-align: center;
  padding: 50px;
  background: #ffe6f0;
}

.founder-section img {
  width: 150px;
  border-radius: 50%;
  margin: 20px 0;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 50px;
}

.cta-btn {
  display: inline-block;
  background: #ff4d88;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 10px;
}

/* Top banner image */
.top-banner {
  width: 100%;
  height: 250px; 
  overflow: hidden;
}

.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* PAGE HEADER */
.page-header {
  text-align: center;
  padding: 40px;
  background-color: #ffe4ec;
}

.page-header h1 {
  font-size: 40px;
  color: #d63384;
}

.page-header p {
  font-size: 18px;
}

/* DEALS GRID */
.deals-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 40px;
  gap: 20px;
}

/* DEAL CARD */
.deal-card {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.deal-card:hover {
  transform: scale(1.05);
}

.deal-card img {
  width: 100%;
  border-radius: 10px;
}

/* PRICE STYLE */
.price {
  font-size: 20px;
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  margin-right: 10px;
}

/* BUTTON */
.deal-card button {
  background-color: #ff4d88;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

.deal-card button:hover {
  background-color: #e6005c;
}
/* PAGE HEADER */
.page-header {
  text-align: center;
  padding: 40px;
}


/* VIRAL PRODUCTS GRID */
.viral-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.viral-card {
  width: 250px;
  text-align: center;
}

.viral-card img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .viral-section {
    flex-direction: column;
    align-items: center;
  }
}

.page-description {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  padding: 20px;
}

.page-description p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* CUTE BRAND SECTIONS */
.brand-text-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 25px;
  background-color: #fff0f5; /* soft pink */
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* HEADINGS */
.brand-text-section h2 {
  margin-bottom: 10px;
  color: #d63384; /* cute pink */
  font-size: 24px;
}

/* TEXT */
.brand-text-section p {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #333;
}

/* LITTLE HOVER EFFECT */
.brand-text-section:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fff0f5, #ffffff);
}



.section-title {
  font-size: 30px;
  margin-bottom: 10px;
  color: #ff4f81;
}

.section-subtitle {
  color: #888;
  margin-bottom: 40px;
  font-size: 15px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.review-card {
  background: white;
  padding: 20px;
  width: 260px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(255, 105, 135, 0.2);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ff4f81;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 105, 135, 0.3);
}

.review-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.review-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: #444;
  line-height: 1.5;
}

.review-author {
  font-size: 13px;
  color: #ff4f81;
  font-weight: bold;
}

/* little sparkle emoji corner */
.review-card::after {
  content: "✨";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 14px;
  opacity: 0.6;
}

/* VIDEO SECTION */
.video-section {
  padding: 60px 20px;
  background: linear-gradient(to top, #fff0f5, #ffffff);
  text-align: center;
}

.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.video-card {
  width: 300px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(255, 105, 135, 0.2);
  padding: 15px;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: none;
}

.video-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.video-card {
  border: 2px solid #ffe4ec;
  background: linear-gradient(180deg, #ffffff, #fff7fa);
}

/* GLOW-UP SECTION */
.glowup-section {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff0f5, #ffe4ec, #ffffff);
}
.glowup-steps-section {
  border: 3px solid #ffffff;
  box-shadow: 0 8px 25px rgba(255, 79, 129, 0.2);
  border-radius: 25px;
  margin: 20px;
}

.glowup-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.glow-slide {
  display: none;
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(255, 105, 135, 0.2);
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  transition: 0.3s;
}

.glow-slide span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #ff4f81;
  font-weight: bold;
}

/* soft glow effect */
.glow-slide:hover {
  transform: scale(1.03);
}

/* GLOW-UP STEPS SECTION */
.glowup-steps-section {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff0f5, #ffe4ec, #ffffff);
}

/* TITLE */
.glowup-steps-section .section-title {
  font-size: 32px;
  color: #ff4f81;
  margin-bottom: 10px;
}

.glowup-steps-section .section-subtitle {
  font-size: 15px;
  color: #888;
  margin-bottom: 35px;
}

/* SCROLL AREA */
.steps-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

/* hide scrollbar */
.steps-container::-webkit-scrollbar {
  display: none;
}

/* STEP CARDS */
.step-card {
  min-width: 260px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(255, 105, 135, 0.25);
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 79, 129, 0.2);
}

/* hover pop */
.step-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 79, 129, 0.35);
}

/* STEP NUMBER CIRCLE */
.step-number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #ff4f81, #ff8fb3);
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 79, 129, 0.4);
}

/* STEP TITLE */
.step-card h3 {
  margin-top: 12px;
  font-size: 18px;
  color: #333;
}

/* TEXT */
.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-top: 8px;
}

/* subtle sparkle effect */
.step-card::after {
  content: "✨";
  position: absolute;
  bottom: 12px;
  right: 14px;
  opacity: 0.6;
  font-size: 14px;
}

/* soft glow animation */
@keyframes glowPulse {
  0% { box-shadow: 0 8px 20px rgba(255, 105, 135, 0.2); }
  50% { box-shadow: 0 10px 30px rgba(255, 79, 129, 0.35); }
  100% { box-shadow: 0 8px 20px rgba(255, 105, 135, 0.2); }
}

.step-card {
  animation: glowPulse 4s infinite;
}

.video-thumb {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumb:hover {
  transform: scale(1.03);
}


.cloud-info-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 50px 35px;
  background: #ffffff;
  text-align: center;

  position: relative;
  z-index: 1;
  overflow: visible;

  border-radius: 60px 60px 60px 60px / 40px 40px 60px 60px;

  box-shadow: 0 10px 30px rgba(255, 105, 135, 0.25);
  border: 2px solid #ffe4ec;
}

/* ALL CLOUD BUBBLES (BEHIND TEXT) */
.cloud-info-section::before,
.cloud-info-section::after,
.cloud-info-section h2::before,
.cloud-info-section h2::after {
  content: "";
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(255, 105, 135, 0.15);
  z-index: 0;
}

.cloud-info-section h2,
.cloud-info-section p {
  position: relative;
  z-index: 2;
}

/* TITLE STYLE */
.cloud-info-section h2 {
  color: #ff4f81;
  margin-bottom: 15px;
}

/* PARAGRAPH STYLE */
.cloud-info-section p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
 .image-container img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.image-container img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 79, 129, 0.3);
}

/* SHOP THE LOOK SECTION */
.shop-look-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

/* VERTICAL SCROLL FEED */
.shop-scroll {
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

/* hide scrollbar */
.shop-scroll::-webkit-scrollbar {
  display: none;
}

/* LOOK CARD */
.look-card {
  display: flex;
  gap: 15px;
  background: #fff0f5;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 6px 15px rgba(255, 105, 135, 0.2);
  align-items: center;
  transition: transform 0.3s ease;
}

.look-card:hover {
  transform: scale(1.02);
}

/* IMAGE */
.look-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

/* PLACEHOLDER */
.image-placeholder {
  width: 120px;
  height: 120px;
  background: #ffe4ec;
  border: 2px dashed #ff4f81;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4f81;
  font-size: 12px;
}

/* TEXT */
.look-info {
  text-align: left;
}

.look-info h3 {
  margin: 0;
  color: #333;
}

.look-info p {
  font-size: 13px;
  color: #666;
}

/* BOTTOM SECTION */
.bottom-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff0f5;
  border-top: 3px solid #ff4f81; /* separation border */
}

.bottom-section h3 {
  margin: 0;
  font-size: 22px;
  color: #ff4f81;
}

.bottom-section p {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 25px 15px;
  background: #ff4f81;
  color: white;

  border-top: 3px solid #ffffff; /* clean separation line */
}
.logo a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.contact-founder {
  margin-top: 20px;
  padding: 15px;
  border-top: 2px solid #eee;
  text-align: center;
}

.contact-founder a {
  color: #d63384;
  text-decoration: none;
  font-weight: bold;
}

.contact-founder a:hover {
  text-decoration: underline;
}