:root {
  --primary-color: #00A651;
  --dark-gray: #333;
  --light-gray: #f8f9fa;
  --hover-gray: #f0f0f0;
}

.site-header {
  background: var(--light-gray);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.navbar {
  background-color: var(--light-gray) !important;
  padding: 0.75rem 0;
}

body {
  padding-top: 76px;
}

@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
}

.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  padding: 0.5rem 0;
}

@media (min-width: 992px) {
  .navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .nav-item {
    flex: 1;
    text-align: center;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
  }
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7rem 1rem !important;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav-link:hover {
  background: var(--hover-gray);
}

.search-input {
  border-radius: 20px 0 0 20px;
  border: 1px solid #ddd;
  font-family: 'Raleway', sans-serif;
}

.search-input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.btn-outline-primary {
  border-radius: 0 20px 20px 0;
  border: 1px solid #ddd;
  border-left: none;
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.breadcrumb {
  background: var(--light-gray);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}

.cart-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.snipcart-checkout,
.snipcart-customer-signin {
  background: none;
  border: none;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.snipcart-checkout:hover,
.snipcart-customer-signin:hover {
  color: var(--primary-color);
}

.snipcart-checkout {
  position: relative;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
}

.snipcart-items-count {
  position: absolute;
  top: -5px;
  right: 5px;
  background: var(--primary-color);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
  line-height: 1.2;
}

footer {
  font-family: 'Raleway', sans-serif;
  background: var(--light-gray) !important;
  border-top: 1px solid #eee;
}

footer h5 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 1.2rem;
}

footer .list-unstyled li {
  margin-bottom: 0.8rem;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color) !important;
}

.company-info {
  font-size: 0.9rem;
}

.cookie-consent {
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.cookie-consent .btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.product-detail {
    padding: 2rem 0;
}

.product-image {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-title {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.product-price {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-description {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
}

.product-features {
    font-family: 'Raleway', sans-serif;
}

.product-features h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-features ul {
    list-style-type: none;
    padding-left: 0;
}

.product-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.product-actions .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-actions .btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}
.contact-info {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info i {
    width: 24px;
    text-align: center;
}

.business-hours-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.business-hours-section .table {
    margin-bottom: 0;
}

.business-hours-section td {
    padding: 1rem;
    border-color: #dee2e6;
}

.faq-section .accordion-button {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.contact-form-section {
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-form-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 81, 0.25);
}

.contact-form-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section {
  margin-top: 0;
  position: relative;
}

.carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.carousel-image-wrapper img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-image-wrapper img {
  transform: scale(1.05);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 2rem;
}

.carousel-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.carousel-title {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  font-size: 3rem;
}

.carousel-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.carousel-btn {
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.carousel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 166, 81, 0.5);
}


.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-control-prev {
  left: 2rem;
}

.carousel-control-next {
  right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .carousel-image-wrapper {
    height: 350px;
  }
  
  .carousel-title {
    font-size: 2rem;
  }
  
  .carousel-subtitle {
    font-size: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 1rem;
  }
  
  .carousel-control-next {
    right: 1rem;
  }
  
}
