/* Oraviare - Luxury Arabic Perfume Webshop Styles */

:root {
    --primary-color: #8d6f57;
    --primary-dark: #755b4a;
    --primary-light: #9f8268;
    --gold-color: #d4af37;
    --gold-dark: #b8941f;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f6f4;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Top Bar */
.top-bar {
    background: #8d6f57;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-left {
    display: none;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: var(--gold-color);
}

.top-bar-left .icon-email::before {
    content: "✉";
    font-size: 0.875rem;
}

.top-bar-left .icon-phone::before {
    content: "📞";
    font-size: 0.875rem;
}

.top-bar-right {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    width: 100%;
}

.top-bar-right span {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Header */
.main-header {
    background: linear-gradient(180deg, #755b4a 0%, #5a4637 100%);
    color: white;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    gap: 3rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

.main-nav a:hover {
    color: var(--gold-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-right {
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-toggle,
.cart-icon {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-toggle:hover,
.cart-icon:hover {
    color: var(--gold-color);
    transform: scale(1.1);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold-color);
    color: var(--primary-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Search Bar */
.search-bar {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.search-bar.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.search-submit {
    background: var(--gold-color);
    border: none;
    color: var(--primary-dark);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Header */
@media (max-width: 968px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar-content {
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .top-bar-left {
        gap: 1rem;
        flex-shrink: 0;
    }
    
    .top-bar-right {
        flex-shrink: 0;
        text-align: center;
        width: 100%;
        white-space: nowrap;
    }
    
    .top-bar-right span {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .header-content {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-content {
        position: relative;
    }
    
    .header-center {
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        width: calc(100% + 40px);
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        flex: 0;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-center.active {
        max-height: 600px;
        overflow-y: auto;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin: 0;
        width: 100%;
        display: block;
    }
    
    .main-nav li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 1.25rem 20px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--gold-color);
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 0;
        flex-shrink: 0;
        margin-right: 1rem;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .header-right {
        order: 2;
        flex-shrink: 0;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.4rem 0;
        font-size: 0.7rem;
    }
    
    .top-bar-content {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .top-bar-left {
        gap: 0.75rem;
        flex-shrink: 0;
        flex-wrap: wrap;
    }
    
    .top-bar-left a {
        justify-content: flex-start;
        white-space: nowrap;
        font-size: 0.65rem;
    }
    
    .top-bar-right {
        flex-shrink: 0;
        text-align: center;
        width: 100%;
        white-space: nowrap;
        font-size: 0.65rem;
    }
    
    .top-bar-right span {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    
    .header-content {
        padding: 1rem 0;
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .search-toggle,
    .cart-icon {
        padding: 0.4rem;
    }
    
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }
    
    .search-bar {
        padding: 0.75rem 0;
    }
    
    .search-form {
        padding: 0 1rem;
    }
    
    .search-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-submit {
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.3rem 0;
        font-size: 0.65rem;
    }
    
    .top-bar-content {
        gap: 0.3rem;
    }
    
    .top-bar-left {
        gap: 0.5rem;
    }
    
    .top-bar-left a {
        font-size: 0.6rem;
        gap: 0.3rem;
    }
    
    .top-bar-right {
        font-size: 0.6rem;
        text-align: center;
        width: 100%;
    }
    
    .top-bar-right span {
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo a {
        padding: 0.75rem 0;
    }
    
    .header-content {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
        margin-right: 0.75rem;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
    
    .search-toggle,
    .cart-icon {
        padding: 0.3rem;
    }
}

/* Flash Messages */
.flash-message {
    padding: 1rem 0;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.flash-success {
    background-color: var(--success-color);
    color: white;
}

.flash-error {
    background-color: var(--error-color);
    color: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 0;
}

.main-content > .hero:first-child {
    margin-top: 0;
}

.main-content > section:not(.hero) {
    padding: 3rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 20px;
    justify-content: start;
    justify-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure 5 products per row on desktop - override any conflicting rules */
@media (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(5, minmax(250px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    /* Verberg het 6e product en alle volgende op desktop - MAX 5 PRODUCTEN */
    .products-grid > .product-card:nth-child(6),
    .products-grid > .product-card:nth-child(n+7) {
        display: none !important;
        visibility: hidden !important;
    }
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    max-width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    width: 100%;
    height: 240px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.2s ease;
    will-change: transform;
}

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

/* Image loading optimization */
img[loading="lazy"] {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.product-card-image .placeholder {
    font-size: 4rem;
    color: var(--text-light);
}

/* SALE Badge */
.product-sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
    }
}

.product-card-info {
    padding: 1.5rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.08em;
}

.product-card-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.product-card-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* SALE prijs in rood */
.product-card-price .price.has-discount {
    color: #ef4444;
}

.product-card-price .compare-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Hero Section */
.hero {
    background-image: url('https://i.imgur.com/Z4nqztx.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    margin-bottom: 4rem;
    display: block;
}

.hero h1 {
    display: none;
}

.hero p {
    display: none;
}

/* Home Image Section */
.home-image-section {
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100%;
}

.home-image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.home-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: white;
    position: relative;
}

.home-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(141, 111, 87, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.home-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

.home-featured-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.4s ease;
}

.home-image-wrapper:hover .home-featured-image {
    transform: scale(1.02);
}

.home-image-text {
    padding: 2rem 0;
}

.home-image-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-image-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.home-image-text .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.home-image-text .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Categories */
.categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.category-filter {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
}

.category-filter:hover,
.category-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Detail styles moved to product-detail.css */

/* Cart */
.cart-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cart-summary {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--primary-color);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Checkout */
.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.checkout-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.order-summary {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.order-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.order-item-image {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 4px;
    flex-shrink: 0;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.order-item-details {
    font-size: 0.875rem;
    color: var(--text-light);
}

.order-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.order-total-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

/* Success Page */
.success-page {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-page p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.order-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Search */
.search-bar {
    margin-bottom: 2rem;
}

.search-bar form {
    display: flex;
    gap: 1rem;
}

.search-bar input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.search-bar button {
    padding: 0.75rem 2rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.empty-state-icon {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.empty-state h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer styles moved to footer.css */

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .main-nav {
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin: 0;
        width: 100%;
        display: block;
    }
    
    .main-nav li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav a {
        display: block;
        padding: 1.25rem 20px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--gold-color);
    }
    
    .main-nav a::after {
        display: none;
    }

    .hero {
        min-height: 70vh;
        background-size: cover;
    }
    
    .home-image-section {
        padding: 3rem 0;
    }
    
    .home-image-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 20px;
    }
    
    .home-image-wrapper {
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .home-image-wrapper:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
    
    .home-featured-image {
        min-height: 300px;
    }
    
    .home-image-text {
        padding: 0;
        text-align: center;
    }
    
    .home-image-text h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .home-image-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 15px;
        justify-content: start;
        justify-items: stretch;
    }
    
    /* Zorg ervoor dat alle producten zichtbaar zijn op mobiel (max 6) */
    .products-grid .product-card {
        display: block !important;
    }
    
    /* Verberg producten na de 6e op mobiel ook */
    .products-grid .product-card:nth-child(n+7) {
        display: none !important;
    }
    
    .product-card {
        min-width: 0;
    }
    
    .product-card-info {
        min-height: auto;
        padding: 1.25rem;
    }
    
    .product-card-title {
        min-height: auto;
        -webkit-line-clamp: 2;
        font-size: 1rem;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    .container {
        padding: 0 15px;
    }

    /* Product detail responsive styles moved to product-detail.css */

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary {
        position: static;
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .order-summary {
        padding: 1.5rem;
    }

    /* Cart responsive */
    .cart-table-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .cart-table {
        overflow: visible;
        margin-bottom: 1.5rem;
    }

    .cart-table table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
    }

    .cart-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .cart-table tr {
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
        background: white;
    }

    .cart-table td {
        border: none;
        position: relative;
        padding: 0.5rem 0 0.5rem 40%;
        text-align: right;
    }

    .cart-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 35%;
        padding-right: 1rem;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: var(--text-dark);
    }

    .cart-table td:first-child {
        padding-left: 0;
        text-align: left;
    }

    .cart-table td:first-child:before {
        display: none;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-summary {
        padding: 1.5rem;
    }

    .main-content {
        padding: 0;
    }
    
    .main-content > section:not(.hero) {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .home-image-section {
        padding: 2rem 0;
    }
    
    .home-image-content {
        padding: 0 15px;
        gap: 2rem;
    }
    
    .home-image-wrapper {
        border-radius: 10px;
    }
    
    .home-featured-image {
        min-height: 250px;
    }
    
    .home-image-text h2 {
        font-size: 1.75rem;
    }
    
    .home-image-text p {
        font-size: 0.95rem;
    }
    
    .home-image-text .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 10px;
    }
    
    .product-card-info {
        padding: 1rem;
    }
    
    .product-card-title {
        font-size: 0.95rem;
    }
    
    .product-card-image {
        height: 180px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .checkout-form {
        padding: 1rem;
    }

    .order-summary {
        padding: 1rem;
    }

    .cart-table {
        border-radius: 4px;
    }

    .cart-table th,
    .cart-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-summary {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    h1 {
        font-size: 2rem !important;
    }
}