:root {
    --bg-color: #Fdfbf7;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --accent: #d4af37; /* Luxury Gold tone */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Hide default for custom cursor */
}

/* Luxury Custom Cursor */
.luxury-cursor {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

.luxury-cursor::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.luxury-cursor.cursor-hover {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
    mix-blend-mode: normal;
}

.luxury-cursor.cursor-hover::after {
    opacity: 0;
}

/* Background Floating Elements */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: drift 20s infinite alternate ease-in-out;
    transition: transform 0.1s ease-out; /* For JS parallax */
}
.shape-1 { width: 300px; height: 300px; background: #e8dcc4; top: 10%; left: -100px; }
.shape-2 { width: 400px; height: 400px; background: #f2ebd9; bottom: 20%; right: -150px; }
.shape-3 { width: 250px; height: 250px; background: #e3d5b8; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.3;}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -50px) scale(1.1); }
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    overflow: hidden;
    background: transparent; /* Ensure video can be seen through */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Positive stack context */
    pointer-events: none;
    transition: transform 0.1s ease-out; /* For JS parallax */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 251, 247, 0.6); /* Slightly stronger beige tint for readability */
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3; /* Content must be above the overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* User's custom large typography + Staggered Reveal Animation */
.brand-name-new {
    font-family: var(--font-body);
    font-size: 3rem; /* Scaled down base for mobile */
    font-weight: 300; /* font-light */
    letter-spacing: 0.05em; /* tracking-wider */
    color: #000; /* text-black */
    margin-bottom: 1rem; 
    line-height: 1.1;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: revealChar 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealChar {
    to { transform: translateY(0); opacity: 1; }
}

.tm-sup {
    font-size: 1.5rem; /* Scaled for mobile */
    vertical-align: super;
    opacity: 0;
    animation: revealChar 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 1.2s; /* reveals after letters */
}

.tagline-new {
    font-family: var(--font-body);
    font-size: 1.25rem; /* Scaled for mobile */
    font-weight: 300; /* font-light */
    color: #000; /* text-black */
    letter-spacing: 0.025em; /* tracking-wide */
    margin-bottom: 1rem;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 576px) {
    .brand-name-new { font-size: 4rem; }
    .tm-sup { font-size: 2rem; }
    .tagline-new { font-size: 1.5rem; }
}

@media (min-width: 768px) {
    .brand-name-new { font-size: 6rem; margin-bottom: 1.5rem; }
    .tm-sup { font-size: 3rem; }
    .tagline-new { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .brand-name-new { font-size: 7rem; }
}

.subheading {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.2s;
}

@media (min-width: 768px) {
    .subheading { font-size: 1.2rem; margin-bottom: 2rem; }
}

.feature-highlights {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 1.4s;
}

@media (min-width: 768px) {
    .feature-highlights { font-size: 0.9rem; gap: 1rem; }
}
.dot { color: var(--accent); font-weight: bold; }

.origin-label {
    border: 1px solid rgba(0,0,0,0.3);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.6s;
}

/* Transition Packaging / Ad Slider Section */
.slider-ad-section {
    width: 100%;
    margin-top: -2px; /* Prevent subpixel gaps */
    position: relative;
    z-index: 5;
    background: var(--bg-color);
}

.slider-ad-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-ad-img {
    width: 100%;
    height: 100%; /* Better handling with max-height & flex */
    max-height: 85vh; /* keeps it reasonable height */
    object-fit: contain; /* Keeps entire image visible without stretching */
    display: block;
    margin: 0 auto; /* centers it */
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Product Collection Section */
.collection-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* 3D Glass Card with Golden Accents */
.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: none; /* specific override to let custom cursor handle it */
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--accent), transparent);
    z-index: -1;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover::after {
    opacity: 0.5;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.4); /* Subtle gold border on hover */
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.02); /* slight tint for images with transparent bg */
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    transform: translateZ(40px);
    z-index: 2;
    margin-bottom: 0.5rem;
}

.view-btn {
    opacity: 0;
    transform: translateY(10px) translateZ(40px);
    transition: var(--transition);
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 2px;
    pointer-events: none;
}

.product-card:hover .view-btn {
    opacity: 1;
    transform: translateY(0) translateZ(40px);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.glass-panel {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    position: relative;
    padding: 2.5rem;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.modal-overlay.active .glass-panel {
    transform: scale(1) translateY(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 60vh;
    max-height: 500px;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-in;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slide img.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.slider-btn:hover { background: #fff; }

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* Animations Scroll Fade */
.scrolly-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}
.scrolly-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-name-new { font-size: 4rem; }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero { 
        min-height: 50vh; 
        padding: 3rem 1rem;
    }
    .brand-name-new { font-size: 3.5rem; margin-bottom: 0.5rem; }
    .tagline-new { font-size: 1.1rem; margin-bottom: 0.5rem; }
    .subheading { font-size: 0.9rem; margin-bottom: 1rem; }
    .feature-highlights { margin-bottom: 1rem; }
    .contact-info { flex-direction: column; gap: 2rem; text-align: center; }
    .contact-item { flex-direction: column; }
    .feature-highlights { font-size: 0.75rem; flex-wrap: wrap; justify-content: center; }
    .slider-btn { display: none; /* Hide arrows on mobile, rely on swipe */ }
}
