/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif; /* Modern font */
    line-height: 1.6;
    color: #333;
    background-color: #f0f2f5; /* Lighter background for a modern feel */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/forrest.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* This makes the background fixed while content scrolls */
    z-index: -2; /* Ensure it's behind everything else */
}

/* Header and Hero Section */
.header {
    position: relative;
    overflow: hidden;
    display: flex; /* Use flex for better alignment */
    flex-direction: column;
    z-index: 1; /* Ensure header content is above global background */
}

.header-small { /* For shop and category pages */
    position: relative;
    height: 40vh; /* Shorter header */
    min-height: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    z-index: 1; /* Ensure header content is above global background */
}

.hero-overlay {
    position: absolute; /* Changed to absolute to cover the whole viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Full height of its parent (header or body) */
    background: rgba(26, 51, 24, 0.85); /* Slightly darker overlay */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from space-between to flex-start */
    align-items: center;
    padding: 20px 0;
    z-index: -1; /* Ensure overlay is above global background but below content */
}

/* New style for transparent overlay on homepage header */
.hero-overlay.transparent {
    background: rgba(26, 51, 24, 0); /* Fully transparent */
}


/* Logo */
.logo-container {
    margin-top: 20px;
    z-index: 10;
}

.logo-image {
    max-height: 150px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-image-small { /* For smaller headers */
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-image:hover, .logo-image-small:hover {
    transform: scale(1.05);
}

/* Navigation */
.navigation {
    z-index: 10;
    margin-top: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600; /* Slightly bolder */
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    border-radius: 8px; /* More rounded corners */
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-link:hover,
.nav-link.active {
    background: rgba(212, 175, 55, 0.9); /* More opaque gold */
    color: #1a3318;
    text-shadow: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav {
    gap: 50px;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-image {
    margin-bottom: 30px;
}

.welcome-image {
    max-height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-text h1 {
    color: white;
    font-family: 'Roboto', sans-serif; /* Different font for heading */
    font-size: 2.8rem; /* Slightly larger */
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    max-width: 900px;
    line-height: 1.2;
}

.page-title-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-title {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1.5px;
    text-align: center;
}

/* Main Content */
.main-content {
    background: transparent; /* Make main content background transparent to see global background */
    padding: 60px 0;
    position: relative; /* Needed for z-index to work */
    z-index: 1; /* Ensure main content is above overlay */
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
    align-items: start;
}

.content-box {
    /* Darker frosted panel so the global background shows through
       but the panels don't appear as large white blocks */
    background: rgba(10, 24, 12, 0.75); /* Dark green translucent */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #f5f5f5; /* Light text for contrast on dark background */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.banner-container {
    background-image: url('/images/banner1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 370px;
    border-radius: 12px;
    margin-bottom: 20px;
    opacity: 0.8;
    border-top: 2px solid rgba(212,175,55,0.28);
    border-bottom: 2px solid rgba(212,175,55,0.28);
}

.banner2-container {
    background-image: url('/images/banner2.png');
    background-size: cover;
    background-position: center;
    height: 340px;
    border-radius: 12px;
    margin: 20px 0;
    opacity: 0.8;
}

.banner-schietbaan {
    background-image: url('/images/banner schietbaan.png');
    background-size: cover;
    background-position: center;
    height: 340px;
    border-radius: 12px;
    margin: 20px 0;
    opacity: 0.8;
}

.content-box h2 {
    color: #d4af37; /* Gold for headings on dark panels */
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(212,175,55,0.28); /* Subtle gold underline */
    padding-bottom: 10px;
}

.content-box h3 {
    color: #e9d7a4; /* Lighter gold for secondary headings */
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.92);
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #e9d7a4;
    border-left: 5px solid #d4af37;
    padding-left: 20px;
    margin: 20px 0;
    line-height: 1.6;
}

.content-box ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-box ul li {
    margin-bottom: 5px;
}

/* New style for full-width content boxes */
.content-box.full-width {
    grid-column: 1 / -1; /* Span across all columns */
}

/* Promo Section Wrapper */
.promo-section-wrapper {
    margin-top: 40px; /* Space from the content above */
    margin-bottom: 40px; /* Space from the content below */
}

/* Promo Section */
.promo-section {
    position: relative;
    background-image: url('/images/promo_1.png'); /* Path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0; /* Adjust padding as needed */
    text-align: center;
    color: white;
    border-radius: 10px; /* Match content box border-radius */
    overflow: hidden; /* Ensure background image respects border-radius */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* Add shadow */
}

.promo-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    padding: 40px 20px;
}

.promo-section h2 {
    color: #d4af37; /* Gold color for heading */
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.promo-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #d4af37; /* Gold */
    color: #1a3318; /* Dark green text */
    border: 2px solid #d4af37;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #e0c26b; /* Lighter gold */
    border-color: #e0c26b;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a3318; /* Dark green */
    color: white;
    border: 2px solid #1a3318;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #2a4a28; /* Lighter dark green */
    border-color: #2a4a28;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Webshop Highlight Section */
.webshop-highlight-section {
    padding: 40px 0;
    text-align: center;
}

.webshop-highlight-section .content-box {
    background: #1a3318; /* Dark green background */
    color: white;
    padding: 50px;
}

.webshop-highlight-section .content-box h2 {
    color: #d4af37; /* Gold heading */
    border-bottom-color: white;
}

.webshop-highlight-section .content-box p {
    margin-bottom: 30px;
}


/* Services Grid (Removed from index.html, but keeping styles for now if needed elsewhere) */
.services-grid {
    background: #1a3318;
    padding: 80px 0;
}

.section-title {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px;
    max-width: 1000px; /* Wider grid */
    margin: 0 auto;
}

.service-card {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-8px); /* More pronounced lift */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay */
}

.card-img {
    width: 100%;
    height: 100px; /* Fixed height for images */
    object-fit: cover;
    border-radius: 15px;
}

.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85); /* More opaque title background */
    color: white;
    padding: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

/* Shop Categories Page */
.shop-categories {
    padding: 20px 0; /* Reduced padding-top */
    text-align: center;
}

.shop-categories h2 {
    color: #1a3318;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 0; /* Removed margin-top */
}

.category-card {
    border-radius: 12px;
    height: 250px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.category-card p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 8px;
}

.category-card h3, .category-card h4 {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.category-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


/* Product Listing Page */
.product-listing {
    padding: 50px 0;
    text-align: center;
}

.product-listing h2 {
    color: #1a3318;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.filters label {
    color: white;
    font-weight: 600;
}

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

.product-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.10);
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    max-width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: contain; /* Ensure image fits without cropping */
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #1a3318;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 15px;
}

.back-to-shop {
    margin-top: 50px;
}

/* External link styling */
.external-link {
    color: #d4af37; /* Gold color for external links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #e0c26b; /* Lighter gold on hover */
}


/* Form Styles */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group.full-width {
    flex: none;
    width: 100%;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

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

/* Animations for Homepage */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.5s both;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out 0.7s both;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out 0.9s both;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out 1.1s both;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Enhanced Hero Overlay with Gradient */
.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 51, 24, 0.85) 0%, rgba(26, 51, 24, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    z-index: -1;
}

/* Improved Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #d4af37, #e0c26b);
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #e0c26b, #f0d78b);
    border-color: #e0c26b;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Navbar Slogan */
.navbar-slogan {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Offers Section */
.offers-section {
    padding: 40px 0;
    background: rgba(10, 24, 12, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #f5f5f5;
    border-radius: 12px;
    margin: 40px 0;
}

.offers-section h2 {
    color: #d4af37;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.offers-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.offer-card h3 {
    color: #e9d7a4;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Logo in Navbar */
.logo-nav-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo-nav-item img {
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    background: #0f1f0e;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative; /* Ensure footer is above overlay */
    z-index: 1;
}

.footer p {
    margin-bottom: 5px;
}

.footer a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Removed hero-text h1 media query */
    /*
    .hero-text h1 {
        font-size: 2.2rem;
    }
    */
    .page-title {
        font-size: 2rem;
    }
    .content-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
        gap: 30px;
    }
    .grid, .category-grid, .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .section-title, .shop-categories h2, .product-listing h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* Removed hero-text h1 media query */
    /*
    .hero-text h1 {
        font-size: 1.8rem;
    }
    */
    .page-title {
        font-size: 1.8rem;
    }
    .nav-menu {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    .nav-link {
        font-size: 16px;
    }
    .service-card {
        height: 200px;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .content-box {
        padding: 30px 20px;
    }
    /* Removed welcome-image media query */
    /*
    .welcome-image {
        max-height: 120px;
    }
    */
    .logo-image {
        max-height: 100px;
    }
    .logo-image-small {
        max-height: 80px;
    }
    /* Removed .promo-box specific media queries */
}

@media (max-width: 480px) {
    /* Removed hero-text h1 media query */
    /*
    .hero-text h1 {
        font-size: 1.4rem;
    }
    */
    .page-title {
        font-size: 1.5rem;
    }
    .logo-image {
        max-height: 80px;
    }
    .logo-image-small {
        max-height: 60px;
    }
    /* Removed welcome-image media query */
    /*
    .welcome-image {
        max-height: 100px;
    }
    */
    .content-box h2 {
        font-size: 1.5rem;
    }
    .content-box p {
        font-size: 1rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .grid, .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Detail Specific Styles */
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.product-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    cursor: pointer; /* Add cursor pointer to indicate clickability */
}
.product-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product-detail-info {
    flex: 2;
    min-width: 300px;
}
.product-detail-info h1 {
    color: #1a3318;
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.product-detail-info .category-link {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    display: block;
}
.product-detail-info .category-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}
.product-detail-info .category-link a:hover {
    text-decoration: underline;
}
.product-detail-info .price {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 25px;
}
.product-detail-info .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}
.product-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center; /* Align items vertically */
}
.product-detail-contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 1rem;
    color: #555;
}
.product-detail-contact-info p {
    margin-bottom: 5px;
}
.product-detail-contact-info a {
    color: #1a3318;
    text-decoration: none;
    font-weight: bold;
}
.product-detail-contact-info a:hover {
    text-decoration: underline;
}
.product-detail-specs {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.product-detail-specs p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.product-detail-specs strong {
    color: #1a3318;
}

/* Banner Image Styles */
.banner-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Modal (Lightbox) Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding-top: 60px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content, .caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        padding: 20px;
    }
    .product-detail-image, .product-detail-info {
        min-width: unset;
        max-width: 100%;
    }
    .product-detail-info h1 {
        font-size: 2rem;
    }
    .product-detail-info .price {
        font-size: 1.8rem;
    }
    .modal-content {
        width: 90%;
    }
}
