 .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 85%;
            overflow: hidden;
            z-index: -1;
        }
        
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }
        
        /* Optimera video för mobil */
        @media screen and (max-width: 768px) {
            .video-background {
                height: 75%;
            }
            
            .video-background video {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
        }
        
        @media screen and (max-width: 480px) {
            .video-background {
                height: 65%;
            }
        }

        

/*=============== BEST SELLERS ===============*/
.best-sellers {
    position: relative;
    margin-top: 85vh;
    padding: 4.5rem 1.5rem 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.best-sellers__container {
    max-width: 1280px;
    margin: 0 auto;
}

.best-sellers__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.best-sellers__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 100;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: "Didot", "Bodoni MT", "Bodoni 72", "Playfair Display", Georgia, serif;
}

.best-sellers__subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.best-sellers__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.best-sellers__view-all:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.best-sellers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
}

.best-sellers .product-card__image-wrapper {
    aspect-ratio: 3 / 4.6;
}

/* Responsiva mediaquerys för mobilanpassning */
@media screen and (max-width: 1200px) {
    .best-sellers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .best-sellers {
        padding: 3rem 1rem 3.5rem;
        margin-top: 70vh;
    }
    
    .best-sellers__header {
        margin-bottom: 2.5rem;
    }
    
    .best-sellers__title {
        font-size: 2.5rem;
    }
    
    .best-sellers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card__image-wrapper {
        aspect-ratio: 3 / 4.2;
    }
    
    .product-card__content {
        padding: 0.75rem 0;
    }
    
    .product-card__category {
        font-size: 0.65rem;
    }
    
    .product-card__name {
        font-size: 0.9rem;
    }
    
    .color-swatch {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 480px) {
    .best-sellers {
        padding: 2rem 0.75rem 2.5rem;
        margin-top: 60vh;
    }
    
    .best-sellers__header {
        margin-bottom: 2rem;
    }
    
    .best-sellers__title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }
    
    .best-sellers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-card__image-wrapper {
        aspect-ratio: 3 / 4;
    }
    
    .product-card__content {
        padding: 1rem 0;
    }
    
    .product-card__category {
        font-size: 0.7rem;
    }
    
    .product-card__name {
        font-size: 1rem;
    }
    
    .color-swatch {
        width: 20px;
        height: 20px;
    }
    
    .video-background {
        height: 70%;
    }
}

/*=============== PRODUCT CARD ===============*/
.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    border-color: #c44;
    color: #c44;
}

.favorite-btn.favorite-btn--active {
    color: #c44;
    border-color: #c44;
}

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

/* Mobilanpassade hover-effekter */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 0;
}

.product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-card__image--primary {
    opacity: 1;
    z-index: 1;
}

.product-card__image--secondary {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-card__image--primary {
    opacity: 0;
}

.product-card:hover .product-card__image--secondary {
    opacity: 1;
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card__btn {
    padding: 0.85rem 2rem;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.product-card:hover .product-card__btn {
    transform: translateY(0);
}

.product-card__btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.product-card__content {
    padding: 1rem 0;
    background: transparent;
}

.product-card__main-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card__main-link:visited,
.product-card__main-link:hover,
.product-card__main-link:active {
    color: inherit;
    text-decoration: none;
}

.product-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 0.4rem;
}

.product-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.product-card__price {
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.product-card__colors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.color-swatch {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 3px;
    border: 1px solid #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.15);
    border-color: #999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/*=============== SERVICE BANNER ===============*/
.service-banner {
    position: relative;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35)), url('/images/0000.jpg') center/cover no-repeat;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.service-banner__content {
    max-width: 100%;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 3rem;
}

.service-banner__text {
    padding: 2.25rem 2.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-left: auto;
    max-width: 600px;
    margin-top: 15rem;
}

.service-banner__copy {
    text-align: left;
    max-width: 720px;
}

.service-banner__eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.65rem;
    color: #f4d9c3;
}

.service-banner__title {
    font-size: clamp(2rem, 3vw, 2.7rem);
    margin-bottom: 0.75rem;
    font-weight: 200;
    letter-spacing: 0.04em;
}

.service-banner__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

.service-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    background: #f4d9c3;
    color: #1a1a1a;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-banner__button:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

@media screen and (max-width: 768px) {
    .service-banner {
        min-height: 360px;
        padding: 2.5rem 1.25rem;
        align-items: flex-start;
    }
    .service-banner__text {
        padding: 1.75rem 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0;
    }
    .service-banner__content {
        justify-content: center;
        text-align: left;
        align-items: flex-start;
        padding-top: 0;
        padding-right: 0;
    }
    .service-banner__title {
        font-size: clamp(1.6rem, 4vw, 2.1rem);
    }
}

@media screen and (max-width: 480px) {
    .service-banner {
        min-height: 320px;
        padding: 2rem 1rem;
        align-items: flex-start;
    }
    .service-banner__text {
        padding: 1.4rem 1.5rem;
        align-items: flex-start;
        margin-top: 0;
    }
    .service-banner__content {
        padding-top: 0;
        padding-right: 0;
    }
    .service-banner__subtitle {
        font-size: 0.95rem;
    }
}

/*=============== BRANDS SECTION ===============*/
.brands {
    padding: 5rem 1.5rem;
    background: #f8f9fa;
}

.brands__container {
    max-width: 900px;
    margin: 0 auto;
}

.brands__title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-family: "Didot", "Bodoni 72", "Bodoni MT", "Book Antiqua", Georgia, serif;
    font-style: normal;
}

.brands__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.brands__logo {
    max-width: 400%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brands__item:hover .brands__logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media screen and (max-width: 1024px) {
    .brands__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .brands {
        padding: 3.5rem 1rem;
    }
    
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .brands__title {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .brands {
        padding: 2.5rem 1rem;
    }
    
    .brands__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .brands__item {
        padding: 1rem;
    }
    
    .brands__logo {
        max-height: 60px;
    }
}

/* Footer styles moved to footer.css */






