/* =============================================================
   shop.css — Styles for shop.bulbmeister.com
   ============================================================= */

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2d3748;
    background: url('https://www.bulbmeister.com/images/image_side4.jpg') repeat;
    background-attachment: fixed;
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.95) 0%, rgba(237, 242, 247, 0.95) 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    flex: 1;
}

.address-section {
    padding: 0 1rem;
    text-align: right;
    font-size: 0.9rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.logo img {
    display: block;
}

.logo-text-fallback {
    display: none;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.logo img[src=""] ~ .logo-text-fallback,
.logo img:not([src]) ~ .logo-text-fallback {
    display: block;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    position: absolute;
    bottom: 0;
    left: 70px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    background: rgba(45, 80, 22, 0.95);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 1001;
    position: fixed;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger-menu:hover {
    background: rgba(45, 80, 22, 1);
    transform: scale(1.05);
}

/* Desktop Navigation */
nav {
    background: rgba(45, 80, 22, 1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.mobile-nav-links {
    padding: 1rem 0;
}

.mobile-nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid white;
}

/* Main Content */
.content {
    padding: 4rem 0;
    background: white;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-title {
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.intro-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.intro-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.shop-options {
    list-style: none;
    margin: 2rem 0;
}

.shop-option {
    background: #f7fafc;
    margin: 1.5rem 0;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #4a7c29;
    transition: all 0.3s ease;
}

.shop-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.shop-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.shop-option h3 a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 41, 0.3);
    margin-bottom: 1rem;
}

.shop-option h3 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 124, 41, 0.4);
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
}

.shop-option p {
    line-height: 1.7;
    color: #4a5568;
}

.status-highlight {
    color: #cc0099;
    font-weight: bold;
}

.shop-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    position: relative;
}

.guarantee-title {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
}

.guarantee-highlight {
    color: #990000;
    font-size: 3rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.payment-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
    line-height: 1.8;
}

.payment-info p {
    margin-bottom: 1rem;
}

.payment-info a {
    color: #4a7c29;
    font-weight: 600;
}

.security-badge {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.security-badge:hover {
    transform: scale(1.05);
}

/* Facebook Like Float */
.facebook-like-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 500;
}

/* Footer */
footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

.footer-home-link {
    color: #a0d468 !important;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.3rem;
}

.footer-home-link:hover {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid #4a7c29;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show hamburger menu and hide desktop nav */
    .hamburger-menu {
        display: flex !important;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hide the entire navigation bar on mobile */
    nav {
        display: none;
    }
    
    .header-content {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .address-section {
        text-align: center;
        padding: 0;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
    
    .shop-title {
        font-size: 2rem;
    }
    
    .intro-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .facebook-like-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }
    
    .site-wrapper {
        max-width: none;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
}
