/* Algemene opmaak */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: red; /* Standaard tekstkleur is rood */
    text-align: center;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    font-size: 15px;
}

/* Main content */
main {
    max-width: 650px;
    margin: 50px auto;
    padding: 50px;
    font-size: 30px;
    color: #ffffff;
}


/* Algemene opmaak */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: red; /* Standaard tekstkleur is rood */
    text-align: center;
    display: flex; /* Zet de body op flex */
    flex-direction: column; /* Zorgt ervoor dat de footer onderaan komt */
    min-height: 100vh; /* Zorgt ervoor dat de body minimaal de hoogte van het scherm heeft */
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    font-size: 15px;
    text-align: center;
    margin-top: auto; /* Zorgt ervoor dat de footer altijd onderaan komt */
}

/* Andere secties zoals header en main behouden zoals ze zijn */


/* Formulier */
form {
    
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin: auto;
}

/* Labels */
form label {
    margin-top: 10px;
    font-size: 18px;
}

/* Inputvelden */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}

/* Knoppen naast elkaar */
.form-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

/* Stijl voor knoppen */
form button {
    flex: 1;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: red;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

form button:hover {
    background: darkred;
}

/* Bedankt-melding */
.thank-you-message {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 2px solid rgb(0, 0, 0);
    padding: 15px;
    border-radius: 10px;
    width: 60%;
    margin: 20px auto;
    font-size: 18px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 255, 0, 0.5);
}

/* Algemene stijl voor de navigatiebalk */
.navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 15px;
}

/* Stijl voor de navigatie-items */
.navbar li {
    margin: 0 15px;
}

/* Stijl voor de links */
.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    background: rgba(255, 0, 0, 0.7); /* Rode achtergrond */
    border-radius: 5px;
    transition: 0.3s ease;
}

/* Hover-effect */
.navbar li a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: black;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    text-align: center;
    padding: -100px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;  /* Zorgt ervoor dat producten op een nieuwe regel gaan als er geen ruimte is */
    justify-content: center; /* Centreert de producten */
    gap: 20px; /* Ruimte tussen de producten */
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #ffffff;
    overflow: hidden; /* Zorgt ervoor dat de lijnen niet buiten het element komen */
}

.product::before, 
.product::after,
.product .left,
.product .right {
    content: '';
    position: absolute;
    background: linear-gradient(to right, #ff0000, #ff7300, #fffb00, #008f39, #00d2ff); /* Kleurverloop voor de lijn */
    transition: all 0.5s ease;
}

.product::before { /* Bovenlijn */
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
}

.product::after { /* Onderlijn */
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 4px;
}

.product .left { /* Linkerlijn */
    top: 0;
    left: -100%;
    width: 4px;
    height: 100%;
}

.product .right { /* Rechterlijn */
    top: 0;
    right: -100%;
    width: 4px;
    height: 100%;
}

.product:hover::before, 
.product:hover::after,
.product:hover .left,
.product:hover .right {
    left: 0;
    right: 0;
}

.product:hover .left {
    left: 0; /* Linkerkant komt van links */
}

.product:hover .right {
    right: 0; /* Rechterkant komt van rechts */
}

.product:hover::before {
    left: 0; /* Bovenlijn komt van boven */
}

.product:hover::after {
    left: 0; /* Onderlijn komt van onderen */
}

.product:hover {
    transform: scale(1.05); /* Kleine hover-animatie */
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-info h2 {
    font-size: 18px;
    margin: 10px 0;
    color: rgb(255, 0, 0);
    background-color: #ffffff;
}

.product-info {
    position: relative;
}

.product-info p {
    font-size: 16px;
    position: absolute;
    bottom: 310px;
    left: 100px;
    color: #fff;
    background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(255,0,0,0.8));
    padding: 8px 15px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    transform: scale(1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    font-weight: bold;
    letter-spacing: 1px;
}

.product-info p:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(255,0,0,0.9), rgba(0,0,0,0.8));
    border-color: rgba(255, 255, 255, 0.5);
}
.categoryList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 10px;
    margin: 30px;
    text-align: center;
    width: 250px;
    border-radius: 8px;

    color: rgb(255, 0, 0);
}

.catId {
    display: none;
}

.categoryContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 100px; /* Pas de waarde aan voor meer of minder ruimte */
}
.categoryList img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 50%;
}

/* Zorg ervoor dat de video de volledige achtergrond vult */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buy-now-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.buy-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ff0000);
    transition: width 0.3s ease;
    z-index: -1;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.buy-now-btn:hover::before {
    width: 100%;
}

.buy-now-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}
.about {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 80%;
    margin: 40px auto;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.about p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 0, 0, 0.1),
        rgba(0, 0, 0, 0.2)
    );
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 0, 0, 0.1);
    margin: 15px 0;
    transition: all 0.3s ease;
}

.about p:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    background: linear-gradient(
        135deg,
        rgba(255, 0, 0, 0.15),
        rgba(0, 0, 0, 0.25)
    );
    border-color: rgba(255, 0, 0, 0.3);
}

.about p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #ff0000, transparent);
    border-radius: 3px;
}
.table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.table th, .table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: #d10000; /* Mooie rode kleur */
    color: white;
    font-weight: bold;
}

.table-striped tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Lichte afwisseling voor rijen */
}

.table-striped tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table-hover tbody tr:hover {
    background-color: #ffcccc; /* Zachte rode tint bij hover */
    transition: 0.3s;
}

h1 a {
    text-decoration: none; /* Verwijdert de onderstreping */
    color: inherit; /* Zorgt ervoor dat de kleur hetzelfde blijft als de normale tekst */
}

h1 a:focus, 
h1 a:active {
    outline: none; /* Verwijdert de focus/klik-rand */
}
/* Product details styling */
.product-add-to-cart {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-add-to-cart h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.product-add-to-cart h4 {
    font-size: 1.2rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.product-add-to-cart input[type="number"] {
    width: 50px;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.product-add-to-cart button {
    padding: 8px 16px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.product-add-to-cart button:hover {
    background-color: #c0392b;
}
#knopwinklen a {
    text-decoration: none;
    color: inherit;
}
.product-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 0, 0, 0.1);
    object-fit: cover;
    filter: brightness(0.95);
    position: relative;
    transform-origin: center;
    backdrop-filter: blur(5px);
}

.product-img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
    filter: brightness(1.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.1),
        transparent 60%
    );
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-img:hover::after {
    opacity: 1;
}

#searchbar_got {
    position: absolute;
    top: 65px;
    right: 20px;
    width: 200px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    z-index: 1000;
}

#searchbar_got::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}

#searchbar_got:focus {
    outline: none;
    width: 250px;
    border-color: rgba(255, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

#searchbar_got:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}
/* Feedback Form Styling */
.feedback-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 50px auto;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
}

/* Rating Stars Container */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* Hide Radio Buttons */
.star-input {
    display: none;
}

/* Star Labels */
.star-label {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Star Hover & Checked States */
.star-input:checked ~ .star-label,
.star-label:hover,
.star-label:hover ~ .star-label {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
}

/* Labels */
.rating-label,
.feedback-label {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Textarea */
.feedback-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

.feedback-textarea:focus {
    outline: none;
    border-color: rgba(255, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

/* Buttons */
.submit-btn,
.reset-btn,
.home-btn {
    padding: 12px 25px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: white;
}

.reset-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.home-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.home-btn a {
    color: white;
    text-decoration: none;
}

/* Button Hover Effects */
.submit-btn:hover,
.reset-btn:hover,
.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Rating Display */
.rating-display {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 400px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
}

.stars-given {
    color: #ff0000;
    font-size: 24px;
    font-weight: bold;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.thank-you-container {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    animation: thankYouAppear 0.6s ease-out;
    backdrop-filter: blur(10px);
}

.thank-you-content {
    color: #fff;
}

.thank-you-content h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.thank-you-stars {
    font-size: 40px;
    color: #ff0000;
    margin: 20px 0;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    animation: starsPulse 2s infinite;
}

.feedback-message {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
    padding: 15px;
    border-left: 3px solid #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.return-home-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.return-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

@keyframes thankYouAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starsPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

#feedbackForm {
    transition: opacity 0.3s ease;
}
.Terug-naar-producten {
    text-decoration: none;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: white;
    flex: 1;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background: red;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
