:root {
  --primary-color: #ff6b9b;
  --secondary-color: #ffacc7;
  --accent-color: #ff4081;
  --dark-color: #333333;
  --light-color: #f9f9f9;
  --white-color: #ffffff;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --error-color: #f44336;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
header {
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: auto;
  margin-right: 10px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 5px 10px;
  border-radius: var(--border-radius);
}

nav ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 107, 155, 0.1);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 60px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--white-color);
  color: var(--primary-color);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--accent-color);
  color: var(--white-color);
}

/* Features Section */
.features {
  padding: 60px 0;
  background-color: var(--white-color);
  margin-bottom: 60px;
}

.features-title {
  text-align: center;
  margin-bottom: 50px;
}

.features-title h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.features-title p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: var(--border-radius);
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--white-color);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--white-color);
  font-weight: 600;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background-color: var(--light-color);
  margin-bottom: 60px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Products Section */
.products {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--dark-color);
  max-width: 700px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.product-description {
  color: #666;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.button {
  padding: 10px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.button-primary {
  background-color: var(--primary-color);
  color: white;
}

.button-primary:hover {
  background-color: var(--accent-color);
}

.button-secondary {
  background-color: var(--light-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Single Product Page */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}

.product-gallery {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.product-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info-details h1 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.product-price-details {
  font-size: 1.8rem;
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.product-description-full {
  margin-bottom: 30px;
  line-height: 1.8;
}

.product-meta {
  margin-bottom: 30px;
}

.meta-item {
  display: flex;
  margin-bottom: 10px;
}

.meta-label {
  font-weight: bold;
  width: 120px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.quantity-selector label {
  margin-right: 15px;
  font-weight: bold;
}

.quantity-selector input {
  width: 60px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  text-align: center;
}

.product-actions-details {
  display: flex;
  gap: 15px;
}

.button-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Cart Page */
.cart-page {
  padding: 60px 0;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
}

.cart-empty h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.cart-empty p {
  margin-bottom: 30px;
  color: #666;
}

.cart-items {
  margin-bottom: 40px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr 50px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cart-item-price {
  font-weight: bold;
  color: var(--accent-color);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
}

.cart-item-quantity button {
  background: none;
  border: 1px solid #ddd;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.cart-item-quantity button:hover {
  background-color: var(--light-color);
}

.cart-item-quantity input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  margin: 0 10px;
}

.cart-item-remove {
  color: var(--error-color);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-summary {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  max-width: 400px;
  margin-left: auto;
}

.cart-summary h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.summary-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-color);
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

.checkout-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
}

.checkout-button:hover {
  background-color: var(--accent-color);
}

/* Checkout Page */
.checkout-page {
  padding: 60px 0;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

.checkout-form h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.order-summary {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  align-self: start;
}

.order-summary h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.order-item-name {
  display: flex;
}

.order-item-quantity {
  color: #666;
  margin-left: 10px;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 30px;
}

.submit-button:hover {
  background-color: var(--accent-color);
}

/* Success Page */
.success-page {
  text-align: center;
  padding: 80px 0;
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 30px;
}

.success-page h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.success-page p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #666;
}

/* Contact Page */
.contact-page {
  padding: 60px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 24px;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.contact-text p {
  color: #666;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-form .form-group:last-child {
  margin-bottom: 0;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* About Page */
.about-page {
  padding: 60px 0;
}

.about-hero {
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}

.about-story {
  margin-bottom: 60px;
}

.about-story h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.about-story p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.team-section h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 40px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: var(--box-shadow);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.team-title {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.team-social a {
  color: var(--accent-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.team-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white-color);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
}

.footer-bottom p {
  color: #aaa;
  font-size: 0.9rem;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--success-color);
  color: white;
  padding: 15px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 1100;
}

.notification.show {
  transform: translateX(0);
}

/* Cookies Banner */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookies-text {
  flex: 1;
  min-width: 300px;
}

.cookies-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.cookies-text p {
  color: #666;
  margin-bottom: 0;
}

.cookies-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.cookies-text a:hover {
  text-decoration: underline;
}

.cookies-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* User letter */
.user-letter {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin: 40px 0;
  border-left: 5px solid var(--primary-color);
}

.user-letter h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.user-letter p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.user-letter .signature {
  font-style: italic;
  text-align: right;
  margin-top: 20px;
}

/* Light effect on button */
.light-effect {
  position: relative;
  overflow: hidden;
}

.light-effect:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.light-effect:hover:before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

/* Responsive */
@media (max-width: 991px) {
  .product-details {
    grid-template-columns: 1fr;
  }
  
  .checkout-container {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr 80px;
    gap: 15px;
  }
  
  .cart-item-price {
    display: none;
  }
  
  .cart-item-remove {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
  }
  
  .cart-item-quantity {
    grid-row: 2;
    grid-column: 2 / span 2;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookies-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookies-buttons {
    width: 100%;
    justify-content: center;
  }
}
