:root {
  --primary-color: #5d4aff;
  --secondary-color: #ff4a6d;
  --accent-color: #ffde59;
  --dark-color: #232946;
  --light-color: #fffffe;
  --background-color: #f4f6ff;
  --gray-color: #b8c1ec;
  --success-color: #5cb85c;
  --danger-color: #d9534f;
  --warning-color: #f0ad4e;
  --info-color: #5bc0de;
  --box-shadow: 0 4px 20px rgba(35, 41, 70, 0.1);
  --transition: all 0.3s ease-in-out;
}

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

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

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

a:hover {
  color: var(--secondary-color);
}

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

/* Header */
header {
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  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: 50px;
  border-radius: 8px;
  margin-right: 10px;
}

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

.logo span {
  color: var(--primary-color);
}

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

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

nav ul li a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
}

.cart-icon {
  position: relative;
  margin-left: 20px;
  font-size: 1.5rem;
  color: var(--dark-color);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: var(--light-color);
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  background-color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
  margin-left: 15px;
}

.btn-secondary:hover {
  background-color: var(--light-color);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.features-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-box {
  flex: 0 0 calc(25% - 30px);
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 30px;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(93, 74, 255, 0.1);
  border-radius: 50%;
  font-size: 28px;
  color: var(--primary-color);
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.feature-box p {
  color: #666;
  font-size: 0.95rem;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 40px 0;
  background-color: var(--dark-color);
  border-radius: 10px;
  color: var(--light-color);
}

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

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

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

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

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 0 0 100%;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

.about-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.about-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.about-text ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Products Section */
.products {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

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

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

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

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

.product-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.product-actions {
  display: flex;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 0.85rem;
}

.btn-cart {
  background-color: var(--primary-color);
  color: white;
  margin-right: 10px;
}

.btn-cart:hover {
  background-color: #4c3ad9;
}

.btn-buy {
  background-color: var(--secondary-color);
  color: white;
}

.btn-buy:hover {
  background-color: #e33f61;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: var(--background-color);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 30px);
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: 10px;
  left: 20px;
  color: rgba(93, 74, 255, 0.1);
  font-family: Georgia, serif;
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-rating {
  color: var(--accent-color);
  margin-top: 10px;
  font-size: 1.2rem;
}

/* Subscription */
.subscription {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--light-color);
  text-align: center;
}

.subscription h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.subscription p {
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.subscription-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.subscription-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.subscription-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.subscription-form button:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.subscribers-count {
  margin-top: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.subscribers-count span {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-color);
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-info {
  flex: 0 0 calc(40% - 20px);
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 40px;
}

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

.contact-info p {
  margin-bottom: 30px;
  color: #666;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(93, 74, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-form {
  flex: 0 0 calc(55% - 20px);
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 40px;
}

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

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(93, 74, 255, 0.1);
}

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

/* About Page */
.team-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

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

.team-card {
  background-color: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

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

.team-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.team-info p {
  color: #666;
  margin-bottom: 15px;
}

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

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(93, 74, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Product Detail Page */
.product-detail {
  padding: 80px 0;
  background-color: var(--background-color);
}

.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.product-detail-image {
  flex: 0 0 50%;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {
  flex: 0 0 50%;
  padding: 40px;
}

.product-detail-category {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

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

.product-detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-detail-description {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.product-detail-features {
  margin-bottom: 30px;
}

.product-detail-features h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.product-detail-actions {
  display: flex;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  background-color: var(--background-color);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}

.quantity-input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 5px;
}

/* Cart Page */
.cart-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.cart-container {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 40px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

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

.cart-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 20px;
}

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

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.cart-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin: 0 30px;
}

.cart-item-total {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-right: 20px;
}

.cart-item-remove {
  color: var(--danger-color);
  cursor: pointer;
  font-size: 1.2rem;
}

.cart-summary {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

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

.cart-summary-label {
  font-weight: 500;
}

.cart-summary-value {
  font-weight: 600;
}

.cart-total {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* Checkout Page */
.checkout-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.checkout-form {
  flex: 0 0 calc(60% - 20px);
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 40px;
}

.checkout-summary {
  flex: 0 0 calc(35% - 20px);
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 40px;
  align-self: flex-start;
}

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

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-group-half {
  flex: 0 0 calc(48% - 10px);
}

/* Success Page */
.success-section {
  padding: 100px 0;
  text-align: center;
  background-color: var(--background-color);
}

.success-container {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 30px;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.success-message {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding-top: 80px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 0 0 calc(25% - 30px);
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
}

.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--gray-color);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--light-color);
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--light-color);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-bottom p {
  opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-text h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cookie-text p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #4c3ad9;
}

.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid var(--gray-color);
  color: var(--gray-color);
}

.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-decline {
  background-color: transparent;
  border: 1px solid var(--danger-color);
  color: var(--danger-color);
}

.cookie-btn-decline:hover {
  background-color: rgba(217, 83, 79, 0.1);
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
}

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

.toast-icon {
  margin-right: 15px;
  font-size: 1.5rem;
}

.toast-success .toast-icon {
  color: var(--success-color);
}

.toast-error .toast-icon {
  color: var(--danger-color);
}

.toast-warning .toast-icon {
  color: var(--warning-color);
}

.toast-info .toast-icon {
  color: var(--info-color);
}

.toast-close {
  margin-left: 15px;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}

.toast-close:hover {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .feature-box {
    flex: 0 0 calc(50% - 30px);
  }
  
  .testimonial-card {
    flex: 0 0 calc(50% - 30px);
  }
  
  .footer-col {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (max-width: 992px) {
  .header-container {
    position: relative;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
  }
  
  nav.active {
    display: block;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 0 0 15px 0;
  }
  
  .product-detail-container {
    flex-direction: column;
  }
  
  .product-detail-image, .product-detail-info {
    flex: 0 0 100%;
  }
  
  .contact-info, .contact-form {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  
  .checkout-form, .checkout-summary {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .feature-box {
    flex: 0 0 100%;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .footer-col {
    flex: 0 0 100%;
  }
  
  .subscription-form {
    flex-direction: column;
  }
  
  .subscription-form input {
    margin-bottom: 15px;
  }
  
  .subscription-form button {
    position: static;
    width: 100%;
  }
  
  .cart-item {
    flex-wrap: wrap;
  }
  
  .cart-item-image {
    margin-bottom: 15px;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .cart-actions .btn {
    margin-bottom: 15px;
    width: 100%;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-group-half {
    flex: 0 0 100%;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    margin-bottom: 20px;
    padding-right: 0;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .cookie-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 30%;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    margin: 10px 0;
  }
  
  .hero .btn {
    margin: 10px 0;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .product-detail-actions {
    flex-direction: column;
  }
  
  .quantity-selector {
    margin-bottom: 15px;
    margin-right: 0;
  }
  
  .success-container {
    padding: 30px;
  }
}
