/* Base & Variables */
:root {
    --primary: #ff4757;
    --secondary: #ffa502;
    --dark: #2f3542;
    --light: #f1f2f6;
    --whatsapp: #25D366;
    --elegant-text: #bdc3c7;
    --google-blue: #4285F4;
}

* { box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { margin: 0; padding: 0; background-color: #f8f9fa; color: var(--dark); scroll-behavior: smooth; overflow-x: hidden; }

/* Dynamic Hero Header */
header { 
    /* The slider animation reuses your product images with a dark elegant overlay */
    background-size: cover;
    background-position: center;
    color: white; 
    text-align: center; 
    padding: 6rem 1rem 5rem; 
    animation: heroSlider 15s infinite;
}

@keyframes heroSlider {
    0%, 25% { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('resin-clock.jpg'); }
    33%, 58% { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('cotton-tshirt.jpg'); }
    66%, 91% { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('a3-frame.jpg'); }
    100% { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('resin-clock.jpg'); }
}

.brand-logo { width: 400px; height: 400px; object-fit: contain; margin-bottom: 0.5rem; display: inline-block; filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3)); }
header p { margin-top: 5px; font-size: 1.2rem; color: #f1f2f6; opacity: 0.9; letter-spacing: 1px; }

/* Trust Banner */
.trust-banner { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; background: white; padding: 15px 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); font-size: 0.95rem; font-weight: 600; color: var(--dark); text-align: center; }
.trust-item { display: flex; align-items: center; gap: 8px; }

/* Filter Bar */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; padding: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #eee; }
.filter-btn { background: var(--light); border: none; padding: 8px 18px; border-radius: 25px; cursor: pointer; font-weight: 600; color: var(--dark); transition: 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3); }

/* General Sections */
.container { max-width: 1200px; margin: 3rem auto; padding: 0 1rem; }
.section-title { font-size: 2.2rem; color: var(--dark); display: inline-block; margin-bottom: 2rem; text-align: center; position: relative; }
.section-title::after { content: ''; width: 60%; height: 4px; background: var(--primary); position: absolute; bottom: -10px; left: 20%; border-radius: 2px; }
.center-heading { text-align: center; width: 100%; display: flex; justify-content: center; margin-top: 2rem; }

/* Scroll Animation Classes */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Product Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.06); text-align: center; padding-bottom: 1.5rem; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.12); }
.badge { position: absolute; top: 15px; right: 15px; background: var(--primary); color: white; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: bold; z-index: 10; box-shadow: 0 4px 10px rgba(255,71,87,0.3); }

/* Media Gallery */
.main-media-container { width: 100%; height: 300px; overflow: hidden; background-color: #e9ecef; position: relative; }
.main-media-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.main-media-container:hover img { transform: scale(1.15); }

/* Card Content & Pricing */
.card-content { padding: 0 1.5rem; }
.card h3 { margin: 1.2rem 0 0.5rem; font-size: 1.3rem; color: var(--dark); }
.card p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }
.highlight-text { color: var(--secondary); font-weight: 600; font-size: 0.85rem; display: block; margin-top: 5px; }

.price-container { margin-bottom: 1.2rem; display: flex; justify-content: center; align-items: center; gap: 10px; }
.regular-price { text-decoration: line-through; color: #a4b0be; font-size: 1rem; }
.offer-price { color: var(--primary); font-size: 1.4rem; font-weight: 700; }

.custom-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 15px; font-family: inherit; font-size: 0.9rem; transition: 0.3s; }
.custom-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 8px rgba(255, 71, 87, 0.2); }
.order-btn { width: 100%; background-color: var(--whatsapp); color: white; border: none; padding: 14px; border-radius: 25px; font-weight: bold; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2); }
.order-btn:hover { background-color: #1ebe5d; transform: scale(1.02); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* Print Types Section */
.print-types-wrapper { background-color: white; padding: 5rem 1rem; margin-top: 3rem; }
.print-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.print-card { background: var(--light); padding: 2.5rem 1.5rem; border-radius: 20px; text-align: center; transition: 0.3s; }
.print-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.print-card h4 { color: var(--dark); font-size: 1.3rem; margin-bottom: 10px; }
.print-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }
.print-icon { font-size: 3rem; margin-bottom: 15px; }

/* IG Gallery Section */
.gallery-section { max-width: 1200px; margin: 5rem auto; padding: 0 1rem; }
.ig-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-top: 2rem; }
.ig-item { border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1; position: relative; cursor: pointer; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.ig-item:hover img { transform: scale(1.1); }
.ig-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; opacity: 0; transition: 0.3s; color: white; font-size: 2rem; }
.ig-item:hover .ig-overlay { opacity: 1; }

/* Google Reviews */
.reviews-section { max-width: 1000px; margin: 5rem auto; padding: 0 1rem; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.review-card { background: white; padding: 2rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: left; border-top: 5px solid var(--secondary); }
.stars { color: #FFD700; font-size: 1.4rem; margin-bottom: 15px; }
.review-card p { font-style: italic; color: #555; font-size: 1rem; line-height: 1.6; }
.reviewer { font-weight: bold; color: var(--dark); margin-top: 15px; font-size: 1rem; }
.google-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background-color: var(--google-blue); color: white; padding: 14px 35px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: 0.3s; box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3); }
.google-btn:hover { background-color: #3367d6; transform: translateY(-3px); }

/* Rich Footer */
.rich-footer { background: #1e272e; color: #d2dae2; padding: 4rem 1rem 1rem; margin-top: 4rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; border-bottom: 1px solid #485460; padding-bottom: 3rem; }
.footer-col h3 { color: white; font-size: 1.3rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); }
.footer-col p { margin-bottom: 10px; font-size: 0.95rem; line-height: 1.6; }
.footer-col a { color: var(--secondary); text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: white; }

/* Payment Badges */
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.pay-badge { background: #2f3542; padding: 8px 15px; border-radius: 5px; font-size: 0.85rem; font-weight: 600; color: white; letter-spacing: 1px; border: 1px solid #485460; }

.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.9rem; color: #808e9b; }

/* Floating WA */
.floating-wa { position: fixed; bottom: 25px; right: 25px; background-color: var(--whatsapp); color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); z-index: 9999; transition: 0.3s; }
.floating-wa:hover { transform: scale(1.1) rotate(-5deg); }