:root {
    --bg-color: #fdf8f5; --text-dark: #333333; --text-light: #666666;
    --dark-rose: #721c24; --dark-rose-hover: #5c141d; --rose-accent: #a54a54;
    --whatsapp-green: #25D366; --border-color: #e0e0e0;
    --font-serif: 'Playfair Display', serif; --font-sans: 'Montserrat', sans-serif; --font-script: 'Lora', serif; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background-color: var(--bg-color); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, .logo, .footer-logo { font-family: var(--font-serif); color: var(--dark-rose); }
.subtitle, .section-subtitle { font-family: var(--font-script); font-style: italic; color: var(--rose-accent); }
.mt-3 { margin-top: 15px; } .ml-2 { margin-left: 8px; }

/* HEADER & NAV */
header { background: rgba(255, 255, 255, 1); padding: 20px 20px; position: fixed; width: 100%; top: 0; z-index: 1000; transition: all 0.4s ease; }
header.scrolled { background: rgba(255, 255, 255, 0.3) !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important; box-shadow: 0 4px 15px rgba(114, 28, 36, 0.08); border-bottom: 1px solid rgba(255,255,255,0.2); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; text-decoration: none; font-weight: 600; color: var(--dark-rose); }
.menu-icon { font-size: 1.5rem; cursor: pointer; color: var(--dark-rose); }
.mobile-nav { position: fixed; top: -100%; left: 0; width: 100%; background: #fff; padding: 20px; transition: top 0.4s ease-in-out; box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 1001; }
.mobile-nav.active { top: 0; }
.close-icon { text-align: right; margin-bottom: 20px; font-size: 1.5rem; color: var(--dark-rose); cursor: pointer; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 15px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.mobile-nav a { text-decoration: none; color: var(--text-dark); font-size: 1.1rem; display: block; }

/* ANIMATIONS */
.fade-in-section { opacity: 0; transform: translateY(40px); transition: all 1.2s ease-out; will-change: opacity, transform; }
.fade-in-section.is-visible { opacity: 1; transform: none; }
.slide-in-left { opacity: 0; transform: translateX(-60px); transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.slide-in-right { opacity: 0; transform: translateX(60px); transition: all 1.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.slide-in-left.is-visible, .slide-in-right.is-visible { opacity: 1; transform: translateX(0); }

/* HERO */
.hero { margin-top: 70px; height: calc(100vh - 70px); background-image: url('Bg.png'); background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 0 20px; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(60, 15, 20, 0.7) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero .subtitle { font-size: 1.2rem; color: #fdf8f5; margin-bottom: 10px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 15px; color: #fff; }
.hero .description { font-size: 1.1rem; margin-bottom: 30px; font-weight: 300; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; }
.scroll-down { color: white; font-size: 1.5rem; animation: bounce 2s infinite; display: inline-block; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

/* BUTTONS */
.btn { padding: 12px 24px; border-radius: 25px; text-decoration: none; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s; display: inline-flex; justify-content: center; align-items: center; border: none; font-family: var(--font-sans);}
.btn-primary { background: var(--dark-rose); color: white; }
.btn-primary:hover { background: var(--dark-rose-hover); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(114, 28, 36, 0.2);}
.btn-outline-light { border: 1px solid white; color: white; background: transparent; }
.btn-outline-light:hover { background: white; color: var(--dark-rose); }
.btn-outline-rose { border: 1px solid var(--dark-rose); color: var(--dark-rose); background: transparent; }
.btn-outline-rose:hover { background: var(--dark-rose); color: white; }
.btn-whatsapp { background: var(--whatsapp-green); color: white; gap: 10px; margin-bottom: 30px; }
.w-100 { width: 100%; }

/* DIVIDER */
.elegant-divider { display: flex; align-items: center; justify-content: center; width: 80%; max-width: 600px; margin: 50px auto; }
.elegant-divider .line { flex-grow: 1; height: 1px; background-color: #d1bfae; opacity: 0.7; }
.elegant-divider .diamond { background-color: #d1bfae; transform: rotate(45deg); width: 6px; height: 6px; opacity: 0.6; }
.elegant-divider .diamond.large { width: 12px; height: 12px; margin: 0 15px; opacity: 1; }

/* CATEGORY BANNERS */
.collection-section { padding: 20px; text-align: center; }
.category-banner { background: #fff; padding: 40px 20px; border: 1px solid var(--border-color); border-radius: 12px; margin: 0 auto 30px; max-width: 800px; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: transform 0.3s, box-shadow 0.3s; }
.category-banner:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(114, 28, 36, 0.05); border-color: var(--rose-accent); }
.category-title { font-size: 1.8rem; margin-bottom: 10px; color: var(--dark-rose); }

/* FORMS & CONTACT */
.order-section, .contact-section { padding: 20px; overflow: hidden; } 
.order-form { max-width: 500px; margin: 0 auto; text-align: left; border: 1px solid var(--border-color); padding: 30px; border-radius: 8px; background: #fff; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--dark-rose); font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; background-color: #fcfcfc; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--dark-rose); }
.contact-cards { display: flex; flex-direction: column; gap: 20px; max-width: 800px; margin: 0 auto; }
@media(min-width: 768px) { .contact-cards { flex-direction: row; } }
.contact-card { flex: 1; border: 1px solid var(--border-color); border-radius: 8px; padding: 30px 20px; text-align: center; text-decoration: none; color: var(--text-dark); display: block; transition: transform 0.2s; background: #fff; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--dark-rose); }
.icon-circle { width: 60px; height: 60px; border-radius: 50%; background: #fdf8f5; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.5rem; color: var(--dark-rose); }
.whatsapp-icon { color: var(--whatsapp-green); background: #e8f9ef; }

footer { text-align: center; padding: 40px 20px 20px; background: var(--dark-rose); color: white; margin-top: 50px; }
footer h2 { color: white; }
.footer-desc { max-width: 600px; margin: 0 auto 30px; font-style: italic; color: #fdf8f5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }

/* --- LIGHTBOX GRID (Level 1) --- */
.lightbox { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow-y: auto; background-color: rgba(0,0,0,0.95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.lightbox-header { text-align: center; color: #D4AF37; font-family: var(--font-serif); font-size: 2.5rem; padding: 40px 20px 20px; }
.lightbox-close { position: fixed; top: 15px; right: 30px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; z-index: 2005; }
.lightbox-close:hover { color: var(--rose-accent); }

.lightbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 20px 5%; max-width: 1400px; margin: 0 auto 60px; }
.lightbox-item { display: flex; flex-direction: column; align-items: center; animation: zoomIn 0.4s; }

/* Image Clickable Area */
.img-click-wrapper { position: relative; width: 100%; cursor: pointer; overflow: hidden; border-radius: 8px; }
.img-click-wrapper img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.4s; border: 1px solid rgba(255,255,255,0.1); }
.img-click-wrapper:hover img { transform: scale(1.05); }
.hover-magnify { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(114,28,36,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-size: 2.5rem; }
.img-click-wrapper:hover .hover-magnify { opacity: 1; }

.lightbox-item-title { color: #CCCCCC; margin-top: 15px; font-family: var(--font-sans); font-size: 1.1rem; text-align: center; }
.lightbox-inquire-btn { margin-top: 12px; border: 1px solid var(--rose-accent); color: #CCCCCC; background: transparent; padding: 8px 24px; border-radius: 25px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; }
.lightbox-inquire-btn:hover { background: var(--rose-accent); color: white; transform: translateY(-2px); }

/* --- ZOOM VIEWER (Level 2) --- */
.zoom-viewer { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(10, 10, 10, 0.98); flex-direction: column; align-items: center; justify-content: center; }
.zoom-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; z-index: 3005; transition: color 0.3s; }
.zoom-close:hover { color: var(--rose-accent); }
.zoom-title { color: #fff; font-family: var(--font-serif); font-size: 2rem; margin-bottom: 5px; margin-top: 20px; text-align: center; }
.zoom-hint { color: #aaa; font-style: italic; margin-bottom: 20px; font-size: 0.9rem; }

.zoom-image-container { width: 90%; max-width: 800px; height: 60vh; border-radius: 8px; overflow: hidden; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5); cursor: zoom-in; }
.zoom-image-container img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.2s ease-out; transform-origin: center center; }
.zoom-image-container.is-zoomed { cursor: zoom-out; }
.zoom-image-container.is-zoomed img { transform: scale(2.5); }
.zoom-buy-btn { margin-top: 30px; padding: 15px 40px; }

@keyframes zoomIn { from {transform:scale(0.95); opacity: 0;} to {transform:scale(1); opacity: 1;} }
/* --- CUSTOMER REVIEWS --- */
/* --- CENTER-HIGHLIGHT TESTIMONIAL CAROUSEL --- */
.testimonials-section { padding: 60px 20px; text-align: center; overflow: hidden; }

.testimonial-carousel-wrapper { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; position: relative; padding: 40px 0; }
.testi-viewport { width: 100%; max-width: 1000px; overflow: hidden; cursor: grab; padding: 20px 0; }
.testi-viewport:active { cursor: grabbing; }
.testi-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); align-items: center; }

/* Responsive Slide Widths */
.testi-slide { min-width: 100%; padding: 0 15px; box-sizing: border-box; transition: all 0.6s ease; }
@media(min-width: 768px) { .testi-slide { min-width: 50%; } }
@media(min-width: 1024px) { .testi-slide { min-width: 33.333%; } }

/* Base Card State (Scaled Down & Faded) */
.testi-card { background: #fff; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; transition: all 0.6s ease; opacity: 0.5; transform: scale(0.85); display: flex; flex-direction: column; border: 1px solid var(--border-color); }

/* THE MAGIC: Active Center Card State */
.testi-slide.active .testi-card { opacity: 1; transform: scale(1.05); box-shadow: 0 15px 35px rgba(114,28,36,0.15); border-color: var(--rose-accent); z-index: 2; position: relative; }

/* Big Picture & Content Styling */
.testi-big-img { width: 100%; height: 180px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.testi-content { padding: 0 25px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; }

/* Overlapping Avatar Profile */
.testi-author { display: flex; flex-direction: column; align-items: center; margin-top: -35px; margin-bottom: 15px; }
.testi-author img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 10px; }
.testi-author h4 { color: var(--dark-rose); margin: 0 0 2px 0; font-size: 1.1rem; font-family: var(--font-serif); }
.testi-author span { color: var(--text-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.stars { color: #d4af37; margin-bottom: 15px; font-size: 0.9rem; }
.testi-text { font-style: italic; color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Controls */
.testi-control { background: transparent; color: var(--dark-rose); border: none; font-size: 2rem; cursor: pointer; padding: 10px; z-index: 10; transition: transform 0.2s; }
.testi-control:hover { transform: scale(1.2); }

/* --- UPGRADE 2: FLOATING ART GLOW --- */
.card, .lightbox-item {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Gives it a slight "bounce" */
}

.card:hover, .lightbox-item:hover {
    transform: translateY(-10px); /* Lifts the card up higher */
    /* Creates a beautiful dark-rose glowing shadow */
    box-shadow: 0 20px 40px rgba(165, 74, 84, 0.25); 
    border-color: var(--rose-accent);
}

/* --- UPGRADE 3: CINEMATIC GLASS OVERLAY --- */
.hover-magnify, .magnify-hint {
    /* Create a gradient instead of a flat color */
    background: linear-gradient(to top, rgba(114,28,36,0.9) 0%, rgba(114,28,36,0.1) 100%);
    backdrop-filter: blur(2px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(2px);
    
    /* Move it off-screen to the bottom */
    transform: translateY(100%); 
    opacity: 1; /* Override the old fade effect */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slide it up smoothly on hover */
.img-click-wrapper:hover .hover-magnify, .img-wrapper:hover .magnify-hint {
    transform: translateY(0);
}

/* --- UPGRADE 6: SOFT SLIDE TEXT REVEAL --- */
.card-content h3, 
.card-content .btn {
    transform: translateY(15px);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slide them up and make them solid when the card is hovered */
.card:hover .card-content h3, 
.card:hover .card-content .btn {
    transform: translateY(0);
    opacity: 1;
}

/* Add a tiny delay to the button so it follows the text smoothly */
.card-content .btn {
    transition-delay: 0.05s;
}
/* --- UPGRADE 4: RESIN GLOSS SHIMMER --- */
/* Prepare the image wrapper to hold the light beam */
.img-click-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    /* Creates a slanted beam of white light */
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease-in-out;
    z-index: 5;
    pointer-events: none; /* Stops the light beam from blocking clicks */
}

/* Sweep the light beam across the image on hover */
.card:hover .img-click-wrapper::after {
    left: 200%;
}
