

/* ================= styles.css ================= */
body{margin:0;font-family:'Poppins',sans-serif;background:#f4f4f4;}
.hero{height:85vh;background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('dress\ 4.jpg');background-size:cover;color:white;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:10px;}
.hero h1{font-size:2.5rem;}
.hero-btn{margin-top:15px;padding:10px 20px;background:#ff4757;color:white;border-radius:30px;text-decoration:none;}
.nav{display:flex;justify-content:center;flex-wrap:wrap;background:white;box-shadow:0 2px 10px rgba(0,0,0,0.1);}
.nav a{padding:12px 15px;text-decoration:none;color:#333;font-weight:500;}
.section{padding:25px 15px;}
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:15px;}
.card{background:white;border-radius:12px;overflow:hidden;box-shadow:0 4px 12px rgba(0,0,0,0.1);transition:0.3s;text-align:center;}
.card:hover{transform:translateY(-5px);}
.card img{width:100%;height:160px;object-fit:cover;}
.price{color:#ff4757;font-weight:bold;}
.card button{margin:10px;padding:8px;background:#25D366;color:white;border:none;border-radius:8px;font-size:13px;}
.cart{position:fixed;bottom:80px;right:15px;background:#ff4757;color:white;padding:12px;border-radius:50%;cursor:pointer;font-size:18px;}
.cart span{position:absolute;top:-5px;right:-5px;background:black;color:white;border-radius:50%;padding:2px 6px;font-size:10px;}
.whatsapp{position:fixed;bottom:20px;right:15px;background:#25D366;color:white;padding:12px;border-radius:50%;font-size:20px;}

/* MOBILE IMPROVEMENT */
@media(max-width:600px){
.hero h1{font-size:1.8rem;}
.products{grid-template-columns:repeat(2,1fr);} 
.card img{height:140px;}
}
/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

/* SLIDER CONTAINER */
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* SLIDES */
.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
}

/* DARK OVERLAY FOR READABILITY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.7)
  );
  top: 0;
  left: 0;
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 700px;
  animation: fadeInUp 1.5s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ddd;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4757;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e84118;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE RESPONSIVENESS */
@media(max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
/* SECTION CONTAINER */
.section {
  padding: 60px 20px;
  text-align: center;
}

/* SECTION TITLE */
.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

/* GRID LAYOUT */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* PRODUCT CARD */
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* CONTENT */
.card .content {
  padding: 15px;
}

/* PRODUCT NAME */
.card h3 {
  margin: 10px 0;
  font-size: 18px;
}

/* PRICE */
.card p {
  color: #ff4757;
  font-weight: bold;
}

/* ORDER BUTTON */
.card button {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  background: #ff4757;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #e84118;
}

/* 🔥 HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card:hover img {
  transform: scale(1.1);
}

/* OVERLAY EFFECT */
.card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0);
  transition: 0.3s;
}

.card:hover::after {
  background: rgba(0,0,0,0.2);
}

/* MOBILE */
@media(max-width:600px) {
  .card img {
    height: 200px;
  }
}



/* FOOTER BASE */
.footer {
  background: linear-gradient(135deg, #0f0f0f, #000);
  color: #fff;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

/* BOX */
.footer-box h2,
.footer-box h3 {
  margin-bottom: 15px;
  color: #ff4757;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* LINKS */
.footer-box a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 6px 0;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #ff4757;
  transform: translateX(5px);
}

/* SOCIAL ICONS */
.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: white;
  background: #222;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* SOCIAL HOVER */
.socials a:hover {
  background: #ff4757;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 71, 87, 0.5);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 13px;
  color: #888;
}



/* MOBILE */
@media(max-width:600px) {
  .footer {
    text-align: center;
  }

  .footer-box a {
    display: inline-block;
    margin: 5px 10px;
  }
}

/* SECTION TITLE */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff4757;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* PRODUCTS GRID */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* CARD DESIGN */
.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CONTENT */
.card .content {
  padding: 15px;
  text-align: center;
}

/* PRODUCT NAME */
.card h3 {
  font-size: 18px;
  margin: 10px 0;
}

/* PRICE */
.price {
  color: #ff4757;
  font-weight: bold;
  margin-bottom: 10px;
}

/* BUTTON */
.card button {
  padding: 10px 15px;
  border: none;
  background: linear-gradient(135deg, #ff4757, #e84118);
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255,71,87,0.4);
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card:hover img {
  transform: scale(1.1);
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4757;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  z-index: 2;
}

/* MOBILE */
@media(max-width:600px) {
  .card img {
    height: 200px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* CART BUTTON */
.cart {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #ff4757;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.cart:hover {
  transform: scale(1.1);
  background: #e84118;
}

/* CART COUNT BADGE */
.cart span {
  position: absolute;
  top: -5px;
  right: -5px;
  background: black;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

/* WHATSAPP HOVER */
.whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* PULSE ANIMATION FOR ATTENTION */
.whatsapp::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* MOBILE OPTIMIZATION */
@media(max-width:600px) {
  .cart, .whatsapp {
    width: 50px;
    height: 50px;
  }
}


.toast {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background: black;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 2000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}


/* CART BUTTON */
.cart {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #ff4757;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.cart:hover {
  transform: scale(1.1);
  background: #e84118;
}

/* CART COUNT BADGE */
.cart span {
  position: absolute;
  top: -5px;
  right: -5px;
  background: black;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

/* WHATSAPP HOVER */
.whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* PULSE ANIMATION FOR ATTENTION */
.whatsapp::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* MOBILE OPTIMIZATION */
@media(max-width:600px) {
  .cart, .whatsapp {
    width: 50px;
    height: 50px;
  }
}


/* CART BUTTON */
.cart {
  position: fixed;
  bottom: 90px;       /* push it above WhatsApp */
  right: 20px;
  background: #ff4757;
  color: white;
  width: 50px;        /* smaller size */
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.cart:hover {
  transform: scale(1.1);
  background: #e84118;
}

.cart span {
  position: absolute;
  top: -5px;
  right: -5px;
  background: black;
  color: white;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
 
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;       /* keep it below cart */
  right: 20px;
  background: #25D366;
  color: white;
  width: 30px;        /* smaller size */
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;

}

.whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* PULSE ANIMATION */
.whatsapp::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.5);
  animation: pulse 1.5s infinite;
  z-index: -1;
  
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* MOBILE */
@media(max-width:600px) {
  .cart, .whatsapp {
    width: 45px;
    height: 45px;
  }

  .cart span {
    width: 16px;
    height: 16px;
    font-size: 11px;
  }

  .whatsapp {
    font-size: 30px;
  }
}

.slider {
  pointer-events: none;
}

.hero-content {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}


.hero-overlay {
  pointer-events: none;
}

.slider {
  pointer-events: none;
}

.cart {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  
}
.whatsapp, 
.whatsapp:link, 
.whatsapp:visited, 
.whatsapp:hover, 
.whatsapp:active {
  text-decoration: none;
}

.victoria-section-modern {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e4efe9);
}

.victoria-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* TEXT SIDE */
.victoria-text-modern {
  flex: 1;
  animation: fadeInUp 1s ease;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.victoria-text-modern h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.victoria-text-modern p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.victoria-text-modern button {
  padding: 14px 25px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.victoria-text-modern button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* IMAGE SIDE */
.victoria-image-modern {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  animation: fadeInRight 1s ease;
}

.victoria-image-modern img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.victoria-image-modern:hover img {
  transform: scale(1.1);
}

/* Overlay glow */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .victoria-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .victoria-text-modern h2 {
    font-size: 2rem;
  }
}