:root {
  --primary-color: #00A651;
  --primary-dark: #008c44;
  --primary-light: #00c853;
  --dark-bg: #1a1a1a;
  --dark-secondary: #2d2d2d;
  --light-text: #ffffff;
  --light-secondary: #f8f9fa;
  --hover-bg: #3a3a3a;
  --accent-color: #ff6b35;
  --success-color: #00A651;
  --border-color: #e0e0e0;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, #00A651 0%, #00c853 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

body {
  font-family: 'Raleway', sans-serif;
  padding-top: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Titillium Web', sans-serif;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--gradient-dark);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  background: transparent;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-medium);
}

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

.navbar-collapse {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.navbar-brand {
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(0, 166, 81, 0.3);
  margin-right: 1rem;
  white-space: nowrap;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(0, 166, 81, 0.5);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--light-text);
  display: none;
}

.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.menu-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin: 0;
  padding: 0;
  gap: 0.3rem;
  flex-wrap: nowrap;
}

.menu-items .nav-item {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 140px;
}

.nav-link {
  color: var(--light-text) !important;
  font-weight: 500;
  padding: 0.3rem 0.4rem !important;
  margin: 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.8rem;
  text-overflow: ellipsis;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  color: var(--light-text) !important;
  background: linear-gradient(135deg, var(--hover-bg) 0%, rgba(0, 166, 81, 0.1) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}

.search-form {
  max-width: 320px;
  position: relative;
  margin: 0 0.8rem;
  display: flex;
  align-items: center;
}

.search-form .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--light-text);
  padding: 0.6rem 1rem;
  padding-right: 50px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  height: 40px;
}

.search-form .form-control:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
  outline: none;
}

.search-form .form-control:focus + .btn-search {
  background: var(--primary-dark);
}

.search-form .form-control::placeholder {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.btn-search {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-primary);
  border: none;
  color: var(--light-text);
  padding: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1;
  margin-top: 3px;
}

.btn-search:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 166, 81, 0.3);
}

.cart-buttons {
  display: flex;
  gap: 1rem;
  margin-left: 0.8rem;
  flex-shrink: 0;
}

.cart-buttons button {
  background: var(--gradient-primary);
  border: none;
  color: var(--light-text);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-light);
  font-weight: 500;
}

.cart-buttons button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.snipcart-items-count {
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  position: absolute;
  top: -8px;
  right: -8px;
  box-shadow: var(--shadow-light);
  border: 2px solid var(--dark-bg);
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

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

.breadcrumb-item.active {
  color: #6c757d;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-section .carousel-item {
  position: relative;
  height: 600px;
}

.hero-section .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(45, 45, 45, 0.5) 100%);
  z-index: 1;
}

.hero-section .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero-section .carousel-caption {
  z-index: 2;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}

.hero-section .carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero-section .carousel-indicators {
  bottom: 30px;
}

.hero-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
}

.hero-section .carousel-indicators button.active {
  background: var(--primary-color);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-section .btn {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
}

/* Categories Section */
.categories-section {
  background: var(--gradient-light);
  padding: 4rem 0;
}

.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.category-card img {
  transition: all 0.3s ease;
  height: 250px;
  object-fit: cover;
  width: 100%;
  display: block;
}

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

.category-content {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.category-content h3 {
  color: var(--dark-bg);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: 100%;
}

.category-content p {
  color: #64748b;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
}

.category-content .btn {
  align-self: center;
  margin-top: 1rem;
}

.category-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #64748b;
  justify-content: center;
  flex-wrap: wrap;
}

.category-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.category-stats i {
  color: var(--primary-color);
}

/* Featured Products Section */
.featured-products {
  background: var(--gradient-light);
  padding: 4rem 0;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.product-card img {
  transition: all 0.3s ease;
  height: 250px;
  object-fit: cover;
  width: 100%;
  display: block;
}

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

.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.product-content h3 {
  color: var(--dark-bg);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}

.product-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-content h3 a:hover {
  color: var(--primary-color);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.product-rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.product-rating span {
  color: #64748b;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.product-content .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.product-description {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
  width: 100%;
}

.product-features-mini {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.product-features-mini span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #64748b;
  background: #f8f9fa;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
}

.product-features-mini i {
  color: var(--primary-color);
  font-size: 0.7rem;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  width: 100%;
  justify-content: center;
}

.btn-quick-view {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.btn-quick-view:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-dark);
  color: var(--light-text);
  padding: 4rem 0;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light-text);
  border-radius: 50px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
  outline: none;
}

.newsletter-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.newsletter-icon i {
  font-size: 2rem;
  color: white;
}

.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.newsletter-benefits span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  white-space: nowrap;
}

.newsletter-benefits i {
  color: var(--primary-color);
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
  background: var(--gradient-light);
  padding: 4rem 0;
}

.trust-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.trust-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.trust-card:hover .trust-icon {
  transform: scale(1.1);
}

.trust-icon i {
  font-size: 2.2rem;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trust-card h4 {
  color: var(--dark-bg);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-card p {
  color: #64748b;
  margin-bottom: 1rem;
}

.trust-number {
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.trust-section .fas {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.trust-icon .fas {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  color: white !important;
}

/* Footer Styles */
.footer {
  background: var(--gradient-dark);
  color: #fff;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  display: inline-block;
}

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

.footer hr {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0;
}

.company-info {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1000;
  animation: slideInUp 0.5s ease-out;
}

.cookie-container {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.cookie-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.cookie-icon i {
  font-size: 1.5rem;
  color: white;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text h5 {
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-buttons .btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.cookie-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.cookie-buttons .btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

.cookie-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cookie-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-close {
    top: 10px;
    right: 10px;
  }
}

/* Product Page Styles */
.product-image {
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-large);
}

.price-tag {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 2rem;
}

.product-features {
  background: var(--gradient-light);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  text-align: center;
}

.product-features h3 {
  color: var(--dark-bg);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.product-features ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  font-weight: 500;
}

.product-features ul li:before {
  content: "✓";
  background: var(--success-color);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Contact Page Styles */
.contact-info-card {
    transform: translateY(-20px);
}

.contact-info-card .card {
    background: var(--gradient-dark);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-section .card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    background: white;
}

.contact-info-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 20px;
    background: var(--gradient-light);
    box-shadow: var(--shadow-light);
}

.contact-info-section .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.contact-info-section .fa-3x {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.team-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.card img {
    width: 100%;
    display: block;
}

.card-body {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-body .btn {
    align-self: center;
    margin-top: 1rem;
}

.social-feed .card img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.contact-info-section .card:hover .fa-3x {
    transform: scale(1.1);
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
    background: white;
    outline: none;
}

.faq-section .accordion-button {
    background: var(--gradient-light);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-light);
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    box-shadow: var(--shadow-medium);
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
    border-color: var(--primary-color);
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 1200px) {
    .menu-items .nav-item {
        max-width: 120px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.25rem 0.3rem !important;
    }
    
    .search-form {
        max-width: 280px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 0 0 12px 12px;
        margin-top: 0;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        z-index: 1000;
    }
    
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.collapse.show {
        display: flex !important;
    }
    
    .menu-items {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 1rem 0;
    }
    
    .menu-items .nav-item {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        max-width: none;
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 1rem !important;
        font-size: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 166, 81, 0.1);
        border-color: rgba(0, 166, 81, 0.3);
        transform: translateX(5px);
    }
    
    .search-form {
        margin: 1rem 0;
        max-width: 100%;
        order: -1;
    }
    
    .cart-buttons {
        margin: 1rem 0 0 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 55px;
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.collapsing {
        height: auto;
        overflow: hidden;
        transition: height 0.35s ease;
    }
    
    .navbar-collapse.collapse.show {
        display: flex !important;
    }
    
    .menu-items {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 1rem 0;
    }
    
    .menu-items .nav-item {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        max-width: none;
        margin-bottom: 0.5rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 1rem !important;
        font-size: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 166, 81, 0.1);
        border-color: rgba(0, 166, 81, 0.3);
        transform: translateX(5px);
    }
    
    .cart-buttons {
        margin: 1rem 0 0 0;
        justify-content: center;
    }
    
    .search-form {
        margin: 1rem 0;
        max-width: 100%;
        order: -1;
    }
    
    .search-form .form-control {
        height: 45px;
        font-size: 1rem;
    }
    
    .btn-search {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .category-card,
    .product-card {
        margin-bottom: 2rem;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-card {
        margin-bottom: 1rem;
    }
    
    .product-content,
    .category-content {
        text-align: center;
        align-items: center;
    }
    
    .card-body {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .cart-buttons button {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-section .carousel-caption {
        padding: 0 1rem;
        bottom: 10%;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .category-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Дополнительные современные эффекты */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

/* Анимации для загрузки */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Улучшенные hover эффекты */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}
