:root {
  --dark-graphite: #2C3333;
  --ski-patrol-red: #E94E4E;
  --steel-gray: #708090;
  --pure-white: #FFFFFF;
}

body {
  font-family: 'Poppins', 'Titillium Web', sans-serif;
  background-color: var(--dark-graphite);
  color: var(--pure-white);
  padding-top: 0;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  opacity: 0;
}

.navbar {
  background-color: var(--dark-graphite);
  border-bottom: 1px solid var(--steel-gray);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(44, 51, 51, 0.95);
}

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

.search-box .form-control {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid var(--steel-gray);
  color: var(--pure-white);
  padding-right: 40px;
}

.search-box .form-control:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--ski-patrol-red);
  box-shadow: 0 0 0 0.2rem rgba(233,78,78,0.25);
}

.search-box .btn-search {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: none;
  border: none;
  color: var(--steel-gray);
  transition: color 0.3s ease;
}

.search-box .btn-search:hover {
  color: var(--ski-patrol-red);
}

.navbar-brand {
  color: var(--pure-white);
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  color: var(--pure-white);
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 44px;
  text-align: center;
  border-radius: 4px;
}

.nav-link:hover {
  color: var(--ski-patrol-red);
  background-color: rgba(233, 78, 78, 0.1);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.cart-btn {
  background: none;
  border: none;
  color: var(--pure-white);
  padding: 0.75rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cart-btn:hover {
  color: var(--ski-patrol-red);
  background-color: rgba(233, 78, 78, 0.1);
}

.cart-btn .snipcart-items-count {
  background-color: var(--ski-patrol-red);
  color: var(--pure-white);
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  line-height: 1.2;
}

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

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

.breadcrumb-item.active {
  color: var(--ski-patrol-red);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--steel-gray);
}

.footer {
  background-color: var(--dark-graphite);
  border-top: 1px solid var(--steel-gray);
  padding: 3rem 0 1rem;
}

.footer-title {
  color: var(--ski-patrol-red);
  margin-bottom: 1.5rem;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-description {
  color: var(--steel-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: var(--steel-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--ski-patrol-red);
}

.footer address {
  color: var(--steel-gray);
}

.footer address a {
  color: var(--steel-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer address a:hover {
  color: var(--ski-patrol-red);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--steel-gray);
  color: var(--steel-gray);
  font-size: 0.9rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 51, 51, 0.95);
  border-top: 1px solid var(--steel-gray);
  padding: 1rem 0;
  z-index: 1000;
}

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

.cookie-content p {
  margin: 0;
  color: var(--pure-white);
  font-size: 0.9rem;
}

.cookie-content a {
  color: var(--ski-patrol-red);
  text-decoration: none;
}

.cookie-content .btn-primary {
  background-color: var(--ski-patrol-red);
  border: none;
  padding: 0.5rem 2rem;
  white-space: nowrap;
}

.cookie-content .btn-primary:hover {
  background-color: darken(var(--ski-patrol-red), 10%);
}
.hero-section {
    position: relative;
    margin-top: -1rem;
    overflow: hidden;
}

.carousel-item {
    height: 70vh;
    min-height: 600px;
    background-color: var(--dark-graphite);
    position: relative;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.7);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.carousel-item.active img {
    filter: brightness(0.8);
}

.carousel-caption {
    background: linear-gradient(135deg, rgba(44, 51, 51, 0.85), rgba(112, 128, 144, 0.75));
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.carousel-caption .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 78, 78, 0.5);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--ski-patrol-red);
    width: 32px;
    border-radius: 6px;
    border-color: var(--ski-patrol-red);
}

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(233, 78, 78, 0.8);
    transform: translateY(-50%) scale(1.1);
}

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

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

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

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

@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

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

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

.product-card {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233,78,78,0.2);
}

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.product-content h3 a {
    color: var(--pure-white);
    text-decoration: none;
}

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

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ski-patrol-red);
}

.newsletter-section {
    background-color: rgba(255,255,255,0.05);
}

.newsletter-form .form-control {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--steel-gray);
    color: var(--pure-white);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--ski-patrol-red);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.feature-item {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.feature-item i {
    color: var(--ski-patrol-red);
    margin-bottom: 1rem;
}
.contact-info-section .card {
    border: 1px solid var(--steel-gray);
    transition: transform 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233,78,78,0.2);
}

.contact-details a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--ski-patrol-red);
}

.opening-hours {
    color: var(--steel-gray);
}

.contact-form-section .card {
    background: linear-gradient(135deg, var(--dark-graphite), var(--steel-gray));
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--steel-gray);
    color: var(--dark-graphite);
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    background-color: rgba(255,255,255,0.15);
    border-color: var(--ski-patrol-red);
    box-shadow: 0 0 0 0.2rem rgba(233,78,78,0.25);
}

.accordion-item {
    border: 1px solid var(--steel-gray);
    margin-bottom: 0.5rem;
}

.accordion-button {
    background: linear-gradient(90deg, var(--dark-graphite), var(--steel-gray));
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--steel-gray), var(--ski-patrol-red));
    color: var(--pure-white);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
