body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #fdfaf5;
    color: #3c2f2f;
}

header {
    background: linear-gradient(to right, #B8860B, #FFD700);
    color: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hamburger Menu (mobile) */
.hamburger {
    font-size: 2em;
    cursor: pointer;
    display: none;
    position: absolute;
    left: 20px;
    top: 20px;
    color: white;
}

#menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #f5f0e8;
    padding: 12px;
    border-bottom: 1px solid #e0d0c0;
}

nav input {
    padding: 8px 12px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    #menu { display: none; flex-direction: column; width: 100%; background: #f5f0e8; }
    #menu.show { display: flex; }
}

/* Announcement Strip */
.announcement {
    background: #FFD700;
    color: #3c2f2f;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
}

.announcement span {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

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

/* Hero Banner */
.hero-banner {
    width: 100%;
    display: block;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
}

/* Framed Sections (posters/video) */
.framed-section {
    border: 8px solid #FFD700;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255,215,0,0.2);
    margin: 60px auto;
    max-width: 1100px;
    background: white;
    padding: 20px;
}

.framed-section img, .framed-section video {
    width: 100%;
    height: auto;
    display: block !important;
    border-radius: 8px;
}

/* Banner Sections */
.banner-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 60px auto;
    gap: 40px;
    background: #fffaf0;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.banner-section.reverse {
    flex-direction: row-reverse;
}

.banner-img {
    flex: 1;
    min-width: 300px;
}

.banner-img img {
    width: 100%;
    border-radius: 12px;
    border: 4px solid #B8860B;
}

.banner-text {
    flex: 1;
    padding: 20px;
}

.banner-text h2 {
    color: #B8860B;
    font-size: 2.2em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.banner-text p {
    font-size: 1.15em;
    line-height: 1.7;
}

/* Huge Poster Overlay (attractive, solid background) */
.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #3c2f2f;
    color: white;
    padding: 60px 80px;
    border-radius: 24px;
    text-align: center;
    max-width: 85%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    border: 4px solid #FFD700;
}

.banner-overlay h2 {
    margin: 0;
    font-size: 3.2em;
    color: #FFD700;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
}

.banner-overlay p {
    margin: 30px 0 0;
    font-size: 1.6em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .banner-overlay { padding: 30px 40px; font-size: 0.9em; max-width: 90%; }
}

/* Video Section */
.video-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 80px auto;
}

.video-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.video-text h2 {
    color: #B8860B;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.video-text p {
    font-size: 1.15em;
    line-height: 1.7;
}

video {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Product Grid */
.section-title {
    text-align: center;
    color: #B8860B;
    margin: 60px 0 40px;
    font-size: 2.5em;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s;
    cursor: pointer;
    max-width: 300px;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    height: 200px;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s;
}

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

/* Reviews & FAQs (centered, neat) */
.reviews-section, .faq-section {
    padding: 40px 20px;
    background: white;
    margin: 100px auto;
    max-width: 1000px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.faq:last-child {
    border-bottom: none;
}

/* Footer */
footer {
    background: #B8860B;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 100px;
}

.social-links a {
    color: white;
    margin: 0 20px;
    font-size: 1.8em;
    text-decoration: none;
}

.social-links a:hover {
    color: #FFD700;
}

button {
    background: #FFD700;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #DAA520;
}

/* Product Detail Page */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.product-detail-img {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-detail-img:hover {
    transform: scale(1.1);
}

.product-summary {
    max-width: 400px;
}

.product-description {
    width: 100%;
    margin-top: 40px;
    padding: 20px;
    background: #fffaf0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    margin: 12px 0;
    font-size: 1.1em;
    padding-left: 25px;
    position: relative;
}

.benefits li::before {
    content: "✓";
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Cart Page */
#cart {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.payment-card {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: #f5f0e8;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

.payment-card:hover {
    box-shadow: 0 4px 15px rgba(139,69,19,0.2);
}

.payment-card h4 {
    color: #B8860B;
}

#paymentDetails {
    margin-top: 20px;
    padding: 15px;
    background: #fffaf0;
    border-radius: 8px;
}

.customer-form {
    margin-top: 30px;
    padding: 20px;
    background: #f5f0e8;
    border-radius: 12px;
}

.customer-form label {
    display: block;
    margin-top: 10px;
}

.customer-form input, .customer-form textarea, .customer-form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Force visibility on mobile */
.hero-banner, .framed-section img, video {
    display: block !important;
    max-width: 100%;
    height: auto;
}

/* Crop 125g image bottom black part */
.img-crop {
    clip-path: inset(0 0 10% 0);
}

/* Carousel for swipe */
.image-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.image-carousel img {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
}

/* Fade-in animation */
.transition-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.transition-fade.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .banner-section, .banner-section.reverse {
        flex-direction: column;
        text-align: center;
    }
    .product-detail {
        flex-direction: column;
        align-items: center;
    }
    .payment-options {
        flex-direction: column;
    }
    .image-carousel img {
        width: 100%;
    }
}