/* General Styles */
:root {
    --primary-color: #ff0066;
    --primary-rgb: 255, 0, 102;
    --secondary-color: #000000;
    --secondary-rgb: 0, 0, 0;
    --accent-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --dark-gray: #444444;
    --font-main: 'Montserrat', sans-serif;
    --gold-accent: #d4af37;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--secondary-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 15px) clamp(24px, 4vw, 30px);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
    text-align: center;
    min-width: 160px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.primary-btn:hover {
    background-color: #e00058;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 102, 0.4);
}

.secondary-btn {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
    backdrop-filter: blur(5px);
}

.secondary-btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.outline-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.outline-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 35px;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    height: 60px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: none;
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 80px; /* Larger footer logo */
    width: auto;
    margin-bottom: 20px;
    max-width: none;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 1px;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.header-icons {
    display: flex;
}

.header-icons a {
    color: var(--light-color);
    margin-left: 20px;
    font-size: 1.2rem;
}

.header-icons a:hover {
    color: var(--primary-color);
}

/* Main Content Wrapper */
.main-content {
    padding-top: 95px; /* Height of announcement bar (35px) + header height (60px) */
}

/* Section Spacing */
.section-spacing {
    padding-top: 160px;
}

.cart-section .section-header,
.checkout-section .section-header {
    margin-bottom: 30px;
    padding-top: 20px;
}

.cart-section .section-header h1,
.checkout-section .section-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #000;
}

@media (max-width: 768px) {
    body {
        padding-top: 0; /* Geen padding voor mobiel */
    }

    .main-content {
        padding-top: 0;
    }

    .section-spacing {
        padding-top: 160px;
    }

    .cart-section,
    .checkout-section {
        margin-top: 0;
        background: #fff;
    }

    .cart-section .container,
    .checkout-section .container {
        padding: 0 15px;
    }

    .cart-section .section-header,
    .checkout-section .section-header {
        margin-bottom: 20px;
        background: #fff;
        position: relative;
        z-index: 1000;
    }
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background-color: #000;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    object-position: top center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    margin-bottom: clamp(15px, 3vw, 25px);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: clamp(20px, 4vw, 30px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-banner {
        height: 90vh;
        min-height: 600px;
        margin-top: -60px; /* Compensate for header height */
    }

    .hero-banner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center 35%;
        transform: scale(1.15);
    }

    .hero-content {
        width: 95%;
        top: 55%; /* Move content slightly down */
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-banner {
        height: 100vh;
        min-height: 550px;
    }

    .hero-banner img {
        object-position: center 15%;
    }
}

/* Featured Collection Styles */
.featured-collection {
    padding: 60px 0;
    background: #fff;
}

.featured-swiper {
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

/* Brand Logos Section Styles */
.brand-logos-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.brand-logos-scroll-container {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.brand-logos-scroll {
    display: flex;
    gap: 5px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
    padding: 15px 0;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pauzeer animatie bij hover voor betere gebruikerservaring */
.brand-logos-scroll:hover {
    animation-play-state: paused;
}

/* Touch device ondersteuning */
@media (hover: none) {
    .brand-logos-scroll:hover {
        animation-play-state: running;
    }
}

.brand-logo-item {
    text-decoration: none;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    display: block;
}

.brand-logo-container {
    background-color: transparent;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 5px 10px;
    margin: 0;
}

.brand-logo-container img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.brand-logo-item {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    transform: translateY(0);
    padding: 10px;
}

.brand-logo-item:hover {
    transform: translateY(-10px);
}

.brand-logo-item:hover img {
    transform: scale(1.1);
}

.brand-name {
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--secondary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logo-item:hover .brand-name {
    opacity: 1;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .brand-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .brand-logos-grid {
        grid-template-columns: 1fr;
    }
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 400px;
}

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

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

.collection-item-content {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.collection-item h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-brand {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.collection-price {
    color: #ff0066;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.collection-item .view-more {
    display: inline-block;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 25px;
    background: #f5f5f5;
    border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    letter-spacing: 0.5px;
}

.collection-item .view-more:hover {
    background: #ff0066;
    color: #fff;
    border-color: #ff0066;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 102, 0.2);
}

.view-all-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Customer Reviews Styles */
.customer-reviews {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

/* Reviews Summary */
.reviews-summary {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.trust-badge i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Testimonial Slider */
.testimonial-slider {
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

/* WhatsApp Contact Section Styles */
.whatsapp-contact-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.whatsapp-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.03) 0%, rgba(0, 0, 0, 0.03) 100%);
    z-index: 0;
}

.whatsapp-contact-section .container {
    position: relative;
    z-index: 1;
}

.whatsapp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.whatsapp-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.whatsapp-intro p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-cards {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 102, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.15);
    background-color: #fff;
    border-color: rgba(255, 0, 102, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 102, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #ff0066;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: #ff0066;
    color: white;
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.trust-badge {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.trust-badge i {
    color: #ff0066;
    margin-right: 12px;
    font-size: 1.1rem;
}

.trust-badge span {
    color: #555;
    font-size: 0.95rem;
}

.whatsapp-service {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.whatsapp-icon-container {
    margin-bottom: 25px;
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.whatsapp-icon:hover {
    transform: scale(1.05);
}

.whatsapp-icon i {
    font-size: 60px;
    color: white;
}

.whatsapp-service h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.whatsapp-topics {
    margin-bottom: 30px;
    width: 100%;
}

.whatsapp-topics p {
    margin-bottom: 15px;
    color: #555;
}

.topic-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.topic-btn {
    padding: 10px 18px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.topic-btn:hover {
    background-color: #eee;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.whatsapp-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.whatsapp-btn:hover {
    background-color: #22c35e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Pulse animation for WhatsApp icon */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-icon.pulse {
    animation: pulse 1s ease;
}

/* Responsive styles for WhatsApp contact section */
@media (max-width: 992px) {
    .whatsapp-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .whatsapp-service {
        padding: 30px 20px;
    }
    
    .whatsapp-icon {
        width: 80px;
        height: 80px;
    }
    
    .whatsapp-icon i {
        font-size: 45px;
    }
    
    .topic-buttons {
        gap: 8px;
    }
    
    .topic-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--secondary-rgb), 0.05) 100%);
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.faq-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    flex-grow: 1;
}

.faq-icon {
    color: var(--primary-color);
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background-color: rgba(255, 0, 102, 0.02);
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Add a transition effect for smoother appearance */
.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
    text-align: center;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
    text-align: center;
}

.view-all-btn {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn .btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.view-all-btn .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-item {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.verified-badge {
    font-size: 0.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.verified-badge i {
    margin-right: 5px;
}

.review-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #FFD700;
    font-size: 14px;
}

.review-date {
    color: var(--dark-gray);
    font-size: 0.8rem;
    margin-left: 10px;
}

.review-content {
    margin-top: 15px;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.review-product {
    margin-top: 15px;
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.review-product a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.review-product a:hover {
    text-decoration: underline;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Swiper Customization */
.testimonial-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
    }
    
    .reviewer-info {
        margin-bottom: 10px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--gray-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: var(--light-color);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Cart Section */
.cart-section {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    margin-top: 35px; /* Space for announcement bar */
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #f9f9f9;
    color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 102, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.15);
    background-color: #fff;
    border-color: rgba(255, 0, 102, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 102, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #ff0066;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: #ff0066;
    color: white;
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.size-buttons {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.size-buttons .size-btn {
    padding: 12px 20px;
    border: 2px solid #ddd;
    background: none;
    cursor: pointer;
    font-weight: 500;
    min-width: 50px;
    transition: all 0.3s ease;
}

.size-buttons .size-btn:hover {
    border-color: #333;
}

.size-buttons .size-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    max-width: none;
}

.footer-logo p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Announcement Bar Styles */
.announcement-bar {
    background: linear-gradient(45deg, #ff0066, #ff3385);
    color: #fff;
    overflow: hidden;
    height: 35px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.announcement-slider {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.announcement-content {
    display: flex;
    align-items: center;
    animation: slide 25s linear infinite;
    padding-right: 50px;
    white-space: nowrap;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.announcement-item i {
    margin-right: 8px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .announcement-bar {
        height: 35px;
    }

    .announcement-item {
        font-size: 12px;
        padding: 0 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo-img {
        margin: 0 auto 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .header-content {
        justify-content: space-between;
        padding: 0 15px;
    }

    .cart-icon {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
        font-size: 1.2rem;
        color: #ffffff;
    }

    .cart-icon .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        font-size: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        margin-bottom: 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .footer-logo-img {
        height: 70px;
    }
    
    nav ul {
        margin: 15px 0;
    }
    
    .hero-banner {
        height: 80vh; /* Reduce height on smaller screens */
        margin-top: 0; /* Geen margin voor mobiel */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .collection-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .hero-banner {
        height: 70vh; /* Further reduce height on very small screens */
        margin-top: 100px; /* Adjust space for header */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
