@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700&family=Titillium+Web:wght@300;400;600;700&display=swap');

:root {
  --primary-bg: #FFF8F0;
  --surface-bg: #F5EDE0;
  --card-bg: #FAF5EB;
  --accent-bg: #FEF9F3;
  --fire-primary: #FF6B35;
  --fire-secondary: #F7931E;
  --fire-dark: #E63946;
  --fire-light: #FFB347;
  --nature-primary: #2A9D8F;
  --nature-secondary: #06A77D;
  --nature-dark: #1A5F57;
  --nature-light: #4ECDC4;
  --charcoal-dark: #2B2D42;
  --charcoal-medium: #3D405B;
  --charcoal-light: #5A5D7A;
  --premium-gold: #D4AF37;
  --premium-copper: #B87333;
  --premium-bronze: #CD7F32;
  --text-dark: #2B2D42;
  --text-medium: #3D405B;
  --text-light: #6B7280;
  --shadow-sm: 0 2px 8px rgba(43, 45, 66, 0.08);
  --shadow-md: 0 4px 16px rgba(43, 45, 66, 0.12);
  --shadow-lg: 0 8px 32px rgba(43, 45, 66, 0.16);
  --shadow-fire: 0 4px 20px rgba(255, 107, 53, 0.3);
  --shadow-nature: 0 4px 20px rgba(42, 157, 143, 0.25);
}

body {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--accent-bg) 100%);
  background-attachment: fixed;
  font-family: 'Titillium Web', sans-serif;
  color: var(--text-dark);
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(42, 157, 143, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.navbar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--surface-bg) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid rgba(255, 107, 53, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--fire-primary) 20%, 
    var(--nature-primary) 50%, 
    var(--fire-primary) 80%, 
    transparent 100%);
  opacity: 0.6;
}

.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 50%, var(--nature-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-brand::after {
  content: '🔥';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  opacity: 0.7;
}

.navbar-brand:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

@media (min-width: 992px) {
  .navbar-nav {
    justify-content: flex-start;
  }
}

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

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--fire-primary), var(--fire-secondary));
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--fire-primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(247, 147, 30, 0.08) 100%);
}

.nav-link:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.cart-btn {
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
  border: none;
  color: white;
  padding: 0.75rem 1.25rem;
  font-size: 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-fire);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
}

.cart-btn .snipcart-items-count {
  font-weight: 700;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  min-width: 24px;
  text-align: center;
}

.cart-btn .snipcart-total-price {
  display: none;
}

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

.cart-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

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

.search-form {
  position: relative;
  max-width: 300px;
}

.search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--card-bg) 100%);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.search-input:focus {
  outline: none;
  border-color: var(--fire-primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), var(--shadow-md);
  background: white;
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
  border: none;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-fire);
}

.breadcrumb {
  background: linear-gradient(135deg, var(--surface-bg) 0%, var(--card-bg) 100%);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--fire-primary);
}

.footer {
  background: linear-gradient(180deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
  color: #ffffff;
  box-shadow: 0 -4px 20px rgba(43, 45, 66, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--fire-primary) 0%, 
    var(--fire-secondary) 25%, 
    var(--nature-primary) 50%, 
    var(--fire-secondary) 75%, 
    var(--fire-primary) 100%);
}

.footer-heading {
  font-family: 'Montserrat Alternates', sans-serif;
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--fire-primary), var(--fire-secondary));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

.company-info p {
  margin-bottom: 0.5rem;
}

.company-info {
  color: rgba(255, 255, 255, 0.9);
}

.company-info i {
  color: var(--fire-primary);
  width: 20px;
  margin-right: 8px;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.opening-hours {
  list-style: none;
  padding: 0;
}

.opening-hours li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
    margin-top: 2rem;
}

.payment-methods {
    text-align: right;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icons i:hover {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

@media (max-width: 768px) {
    .payment-methods {
        text-align: center;
        margin-top: 1rem;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
        width: 45px;
        height: 32px;
    }
}

.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface-bg);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-consent .btn-primary {
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-fire);
  transition: all 0.3s ease;
}

.cookie-consent .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cookie-consent .btn-link {
  color: var(--nature-primary);
  transition: all 0.3s ease;
}

.cookie-consent .btn-link:hover {
  color: var(--nature-secondary);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-method {
  background-color: var(--surface-bg);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.navigation-buttons {
  margin-top: 2rem;
}

.btn-primary,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
  border: none;
  color: white;
  box-shadow: var(--shadow-fire);
  transition: all 0.3s ease;
  border-radius: 12px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--fire-secondary) 0%, var(--fire-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
  color: white;
}

.btn-outline-primary {
  color: var(--fire-primary);
  border: 2px solid var(--fire-primary);
  background: transparent;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
  border-color: var(--fire-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-fire);
}
.contact-info-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--surface-bg) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--fire-primary), var(--fire-secondary));
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--fire-primary);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
}

.info-item h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.contact-form-card h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--fire-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), var(--shadow-sm);
    background: white;
    outline: none;
}

.opening-hours-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--surface-bg) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.opening-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--fire-primary), var(--fire-secondary));
}

.opening-hours-card h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.opening-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.opening-hours-list li:last-child {
    border-bottom: none;
}

.faq-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.faq-card h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-card .accordion-button {
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 600;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-card .accordion-button:not(.collapsed) {
    color: var(--fire-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    box-shadow: var(--shadow-sm);
}

.faq-card .accordion-body {
    padding: 1rem;
    color: var(--text-dark);
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(42, 157, 143, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

#heroCarousel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 107, 53, 0.2);
    border: 3px solid var(--fire-primary);
    max-width: 900px;
    max-height: 500px;
    margin: 0 auto;
    position: relative;
}

#heroCarousel::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--fire-primary), var(--fire-secondary), var(--nature-primary), var(--fire-secondary), var(--fire-primary));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

#heroCarousel .carousel-inner {
    max-height: 500px;
}

#heroCarousel .carousel-item img {
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    filter: brightness(0.95) contrast(1.05);
    transition: filter 0.3s ease;
}

.carousel-item:hover img {
    filter: brightness(1) contrast(1.1);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(255, 107, 53, 0.05) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(255, 107, 53, 0.3) 30%,
        rgba(42, 157, 143, 0.2) 60%,
        transparent 100%
    );
    z-index: 2;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.carousel-caption-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-caption-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--fire-primary), var(--fire-secondary), var(--fire-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.5);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.carousel-caption h1::after,
.carousel-caption h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--fire-primary), var(--fire-secondary), var(--fire-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.carousel-caption p {
    color: #ffffff;
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.carousel-caption .btn {
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-fire), 0 0 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption .btn i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.carousel-caption .btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

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

.carousel-caption .btn:hover::before {
    left: 100%;
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6), 0 0 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--fire-secondary) 0%, var(--fire-primary) 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-caption .btn:active {
    transform: translateY(-1px);
}

.carousel-indicators {
    display: none !important;
}

.carousel-indicators button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.5);
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fire-primary) 0%, transparent 70%);
    transition: transform 0.3s ease;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 107, 53, 0.3);
    border-color: var(--fire-primary);
    transform: scale(1.2);
}

.carousel-indicators button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.carousel-indicators button.active {
    background-color: var(--fire-primary);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.4);
    width: 20px;
    height: 20px;
}

.carousel-indicators button.active::before {
    transform: translate(-50%, -50%) scale(1);
    background: radial-gradient(circle, #ffffff 0%, var(--fire-primary) 70%);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(247, 147, 30, 0.95) 100%);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow-fire);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.7), 0 0 40px rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
    filter: brightness(0) invert(1);
    position: relative;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon::after,
.carousel-control-next:hover .carousel-control-next-icon::after {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

#heroCarousel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.1) 0%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

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

.carousel-item.active .carousel-caption {
    animation: fadeInUp 0.6s ease-out;
}

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

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fire-primary), var(--fire-secondary), var(--fire-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
    z-index: 1;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 2rem 1rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    #heroCarousel {
        border-width: 2px;
        border-radius: 15px;
        max-width: 95%;
        max-height: 400px;
    }
    
    #heroCarousel .carousel-inner {
        max-height: 400px;
    }
    
    #heroCarousel .carousel-item img {
        max-height: 400px;
    }
    
    .hero-section::after {
        width: 90%;
    }
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--fire-primary), var(--fire-secondary));
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.category-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

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

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.category-content h2,
.category-content h3 {
    font-family: 'Montserrat Alternates', sans-serif;
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fire-primary), var(--fire-secondary), var(--nature-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

.product-card img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

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

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.product-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fire-primary);
    margin: 1rem 0;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

.product-content .btn {
    margin-top: auto;
}

.features-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    margin: -30px auto 0;
    max-width: 1200px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fire-primary), var(--fire-secondary), var(--nature-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, var(--card-bg) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-fire);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-card:hover .feature-icon::before {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

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

.feature-card h4 {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.categories-section,
.featured-products,
.newsletter-section,
.contact-section {
    position: relative;
    z-index: 1;
}

.categories-section h2,
.featured-products h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 50%, var(--nature-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--surface-bg) 0%, var(--card-bg) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 107, 53, 0.1);
}

.newsletter-section h2 {
    font-family: 'Montserrat Alternates', sans-serif;
    background: linear-gradient(135deg, var(--fire-primary) 0%, var(--fire-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--fire-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    outline: none;
}
