
/* Reset */
* {
  

  margin: 0;
  padding: 0;
  box-sizing: border-box;
 
}
body {
  font-size: 1rem;
  padding: 10px;
}

@media (min-width: 768px) {
  body {
    font-size: 1.2rem;
    padding: 20px;
  }
  .product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  body {
    font-size: 1.4rem;
    padding: 40px;
  }
  .product-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

:root {
  --color-white: #FCF0FF;
  --color-pink: #D68EDE;
  --color-purple-light: #FBD6FF;
  --color-purple-dark: #611570;
  --color-gray-light: #D68EDE;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  background: var(--color-white);
  color: var(--color-purple-dark);
}

h1, h2, h3 {
  background: linear-gradient(135deg, #fccbdb, #d16eec);
  background-clip: text;
-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Dancing Script', cursive;
}

header nav a {
  font-family: 'Pacifico', cursive;
  font-size: 18px;
}

.category {
  font-family: 'Cookie', cursive;
  font-size: 20px;
}

button {
  background: linear-gradient(135deg, #f7d9e3, #d8b4e2);
  color: var(--color-purple-dark);
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #d8b4e2, #9b59b6);
  color: #fff;
}

 

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  background:linear-gradient(135deg, #e2aced, #d2a6ed);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}



header img {
  margin-left: 10px;
    width: 100px;
  height: auto;
}

header nav ul {
  margin-right: 30px;
  list-style: none;
  display: flex;
  gap: 30px;
}

header nav a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
  transition: 0.3s;
}

header nav a:hover {
  color: var(--color-gray-light);
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #f7d9e3, #d8b4e2);
}

#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay-logo img {
  width: 200px;
  height: auto;
}

/* About Section */




.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background: #FCF0FF; 
  position: relative;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 52px;
  color: #6a1b9a;
  margin-bottom: 25px;
  text-shadow: 0 0 20px rgba(106,27,154,0.4);
}

.about-text p {
  font-family: Quicksand ;
  font-size: 18px;
  line-height: 1.8;
  color: #611570;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
  position: relative;
  
}

.about-image .main-img {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  border: 2px solid #fff; 
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}





.about-image .decor-img {
  position: absolute;
  bottom: 45px;  
  left: -30px;     
  width: 150px;
  height: 150px;
  border-radius: 10px; 
  border: 2px solid #fff; 
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); 

}



.process-section {
  font-family: Quicksand;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
}

.process-image {

  flex: 1 1 400px;
  text-align: center;
}

.process-image img {
  max-width: 100%;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.process-steps {
  position: relative;
}

.step {
  position: sticky;
  top: 150px;     
  margin-bottom: -20px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  color: #fff;
}

.step1 { background: #d8b4e2; z-index: 3; }
.step2 { background: #9b59b6; z-index: 2; }
.step3 { background: #611570; z-index: 1; }



.step h3 {
  margin-bottom: 0px;
  font-size: 22px;
}

.step p {
  line-height: 1.6;
}


.container {
  position: relative;   
  height: 2px;        
  background: #FCF0FF;
  margin-top: -10;
}

.relative-bar {
  position: relative;   
  top: -250px;           
  left: 0px;            
  width: 100%;           
  height: 250px;         
  background: #FBD6FF;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}


.scroll-slider {  
  
 
  margin-left: 800px;
  margin-top: 20px;
  display: flex;
  
  width: 100%;
  height: 250px;
  padding-top: 19px ;
  position: relative;

  
}

.slide {
  flex: 0 0 auto;
  width: 300px;
  height: 300px;
  margin: 0 20px;
}

.slide img {
  
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.2s linear;
}


.products {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.products.show {
  opacity: 1;
  transform: translateY(0);
}

/* Menu Section */
.menu-categories {
    margin-bottom: -200px;
  width: 100vw;
  min-height: 100vh;
  background: #FCF0FF;
  padding: 80px 20px;
  text-align: center;
}

.menu-title {
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: #6a1b9a;
  margin-bottom: 50px;
  text-shadow: 0 0 15px rgba(106,27,154,0.4);
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 200px;
}

.category-btn {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  
}

.category-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(106,27,154,0.8);
}

.category-btn img {
  width: 60px;   
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s, filter 0.3s;
}

.categories-container .category:nth-child(1) img {
  filter: drop-shadow(0 0 8px rgba(106,27,154,0.6)); 
}

.categories-container .category:nth-child(2) img {
  filter: drop-shadow(0 0 8px rgba(106,27,154,0.6)); 
}

.categories-container .category:nth-child(3) img {
  filter: drop-shadow(0 0 8px rgba(106,27,154,0.6)); 
}

.categories-container .category:nth-child(4) img {
  filter: drop-shadow(0 0 8px rgba(106,27,154,0.6)); 
}
 
.category-btn:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(106,27,154,0.8));
}

.category-btn h3 {
  font-size: 22px;
  color: #333;
}


/* Products Section */
.hidden {
  display: none;
}

.products {
  padding: 40px 20px;
  text-align: center;
}

.product-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 16px;
  color: #333;
  width: 220px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-card h3 {
  
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  margin-bottom: 5px;
}

.product-card .price {
  font-weight: bold;
  color: #6a1b9a;
  margin-bottom: 10px;
}

.product-card > button {
  background: linear-gradient(135deg, #fccbdb, #d16eec);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card > button:hover {
  background: #8e24aa;
}



.size-options {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}

.size-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;         
  border: 2px solid #d16eec;  
  background: transparent;    
  color: #d16eec;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center; 
}

.size-btn:hover {
  background: rgba(106,27,154,0.1);
}

.size-btn.active {
  background: #d16eec;   
  color: #fff;           
  box-shadow: 0 0 8px rgba(106,27,154,0.6);
}
/* Slider Section */
.our-work {
  position: relative;
}

.our-work::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(210, 166, 237, 0.6); 
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.insta-link {
  display: block;
  width: 200px;   
  height: 100px;  
  position: relative;
}
.our-work::after {
  content: "Instagram";
  font-family:  'Dancing Script', cursive;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: #FCF0FF;
  text-shadow: 0 0 15px rgba(106,27,154,0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.our-work:hover::before,
.our-work:hover::after {
  opacity: 1;
}
.insta-link {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
  color: linear-gradient(135deg, #f7d9e3, #d8b4e2);
  text-shadow: 0 0 15px rgba(106,27,154,0.8);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.our-work:hover .insta-link {

  opacity: 1;
}

/* Reviews Section */
#reviews {
  padding: 80px 30px;
  background: var(--color-white);
}

#reviews h2 {
  color: var(--color-purple-dark);
}
/* Cart Section */
.cart-count {
  background: var(--color-white);
  color: #611570;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 50%;
  margin-left: 5px;
}
#cart {
  padding: 80px 30px;
  background: linear-gradient(135deg, #f7d9e3, #d8b4e2);
  min-height: 70vh;
  text-align: center;
}

#cart h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 36px;
  margin-top: 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f7d9e3, #9b59b6);
  background-clip: text;
-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




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

.cart-item {
  background: var(--color-white);
  border: 2px solid var(--color-purple-light);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px 20px;
  width: 80%;
  max-width: 500px;
  text-align: left;
  font-family: 'Quicksand', sans-serif;
  color: var(--color-purple-dark);
  transition: 0.3s;
}

.cart-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.cart-controls {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cart-controls button {
  background: linear-gradient(135deg, #f7d9e3, #d8b4e2);
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.cart-controls button:hover {
  background: linear-gradient(135deg, #d8b4e2, #9b59b6);
  color: #fff;
}


.checkout-btn {
  margin-top: 30px;
  background: linear-gradient(135deg, #f7d9e3, #d8b4e2);
  color: var(--color-purple-dark);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #d8b4e2, #9b59b6);
  color: #fff;
  transform: scale(1.05);
}
.cart-total h4 {
  color: #9b59b6; 
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
.wheel-carousel {
  
  width: 100vw;   
  height: 120vh;  
  margin: 0;
  margin-bottom: 0px;
  perspective: 1200px;
  position: relative;
  overflow: hidden;
}

.carousel-title {
  position: absolute;
  top: 8%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  font-family: 'Dancing Script', cursive;
  font-size: 64px; 
  color: #fff;
  text-shadow: 0 0 15px rgba(106,27,154,0.8), 
               0 0 30px rgba(106,27,154,0.6),
               0 0 45px rgba(106,27,154,0.4);
  z-index: 10;
  pointer-events: none; 
}

.wheel-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spinY 30s infinite linear;
}

.wheel-container figure {
  position: absolute;
  width: 300px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px -150px;
  transition: opacity 0.5s;
}

.wheel-container img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@keyframes spinY {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.google-rating::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.7); 
  z-index: 0;
}

.google-rating .rating-box {
  position: relative;
  z-index: 1;

}



.google-rating {
  
 
    
    margin-top: 0px;
  width: 100vw;
  height: 100vh;
  background: repeating-linear-gradient(
    90deg,              
    #fdf6e3,            
    #fdf6e3 20px,      
    #f5deb3 20px,      
    #f5deb3 40px        
  );
  padding: 80px 20px;
  color: #611570;
  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rating-title {
  position: relative;
  z-index: 1;
  font-family: 'Dancing Script', cursive;
  font-size: 48px;
  color: #6a1b9a;
  margin-bottom: 30px;
  text-shadow: 0 0 15px rgba(106,27,154,0.5);
  
}

.rating-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  padding: 40px;
  text-align: center;
  width: 320px;
}

.stars {
  font-size: 36px;
  color: #FFD700; 
  margin-bottom: 15px;
}

.rating-score {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.rating-note {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.rate-btn {
  display: inline-block;
  padding: 12px 20px;
  background:  linear-gradient(135deg, #611570, #6a1b9a);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.rate-btn:hover {
  background:  linear-gradient(135deg, #6a1b9a, #8e24aa);;;
  box-shadow: 0 0 15px rgba(106,27,154,0.6);
}





/* Footer */
.site-footer {
  background: linear-gradient(135deg, #e2aced, #d2a6ed);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box; 
  margin: 0;              
  display: block;
}

.footer-container {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-around; 
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-info h3 {
  color: #611570;
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  margin-bottom: 10px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #FFD700; 
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.footer-bottom .credits {
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}