:root {
  --primary-bg: #808080;
  --accent-green: #00A651;
  --accent-blue: #00BBD6;
  --accent-red: #FF4E50;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--primary-bg);
  color: #ffffff;
  padding-top: 80px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-green) !important;
}

.navbar-nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.nav-item {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  margin: 0 0.25rem;
  font-size: 0.9rem;
}

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

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  padding-right: 40px;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-box .btn-search {
  position: absolute;
  right: 0;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
}

.search-box .btn-search:hover {
  color: var(--accent-blue);
}

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

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

.snipcart-checkout {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.snipcart-checkout:hover {
  color: var(--accent-blue);
}

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

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

/* Скрываем оригинальные символы валюты Snipcart */
.snipcart-cart .snipcart-summary-fees,
.snipcart-cart .snipcart-summary-total,
.snipcart-cart .snipcart-summary-subtotal,
.snipcart-cart .snipcart-item-price,
.snipcart-cart .snipcart-item-total {
  position: relative;
}

/* Добавляем стили для замены валюты */
.snipcart-cart .snipcart-summary-fees::after,
.snipcart-cart .snipcart-summary-total::after,
.snipcart-cart .snipcart-summary-subtotal::after,
.snipcart-cart .snipcart-item-price::after,
.snipcart-cart .snipcart-item-total::after {
  content: 'kr';
  position: absolute;
  right: -20px;
  top: 0;
  color: inherit;
  font-weight: inherit;
}

/* Footer Styles */
.footer {
    background-color: #2B2B2B;
    padding: 4rem 0 2rem;
    color: #ffffff;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.company-info address {
    font-style: normal;
    margin-top: 2rem;
}

.company-info a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.company-info a:hover {
    opacity: 0.8;
}

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

.footer a:hover {
    color: var(--accent-blue);
}



.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Product Page Styles */
.product-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.product-price {
    font-size: 1.8rem;
    color: var(--accent-green);
    font-weight: 600;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.btn-primary {
    background-color: var(--accent-green);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(43, 43, 43, 0.95);
    padding: 1rem 0;
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}
/* Product Grid Styles */
.product-card {
    background: #2B2B2B;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-info h3 a {
    color: #ffffff;
    text-decoration: none;
}

.product-info .price {
    font-size: 1.4rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero Carousel Styles */
.hero-section {
    position: relative;
    max-height: 500px;
    overflow: hidden;
}

.hero-section .carousel {
    max-height: 500px;
}

.hero-section .carousel-item {
    max-height: 500px;
}

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

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.carousel-caption .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    display: none;
}

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

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

/* Newsletter Section Styles */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-section h2 {
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid #dee2e6;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

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

/* Category Card Styles */
.category-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.category-card .category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.category-card a {
    text-decoration: none;
}
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(45deg, #1C1C1C, #2B2B2B);
    color: #ffffff;
    padding: 4rem 0;
}

.contact-info {
    background: rgba(43, 43, 43, 0.7);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-green);
}

.contact-form-card {
    background: rgba(43, 43, 43, 0.7);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-form-card h2 {
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
}

.contact-form-card .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form-card .form-check-label {
    color: rgba(255,255,255,0.8);
}

.contact-form-card .btn-primary {
    background: var(--accent-green);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.faq-section .accordion-item {
    background: rgba(43, 43, 43, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
}

.faq-section .accordion-button {
    background: rgba(43, 43, 43, 0.9);
    color: #ffffff;
    font-weight: 600;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--accent-green);
    color: #ffffff;
}

.faq-section .accordion-body {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 2rem 0;
    }
    
    .contact-form-card,
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .hero-section {
        max-height: 400px;
    }
    
    .hero-section .carousel {
        max-height: 400px;
    }
    
    .hero-section .carousel-item {
        max-height: 400px;
    }
    
    .hero-section .carousel-item img {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        margin: 0 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;
        margin: 0 10px;
    }
    
    .newsletter-section h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-section p {
        font-size: 1rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .nav-link {
        width: 100%;
        min-height: 40px;
        border-radius: 6px;
        margin: 0;
        font-size: 0.85rem;
    }
    
    .snipcart-items-count {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
}
