@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --bg-primary: #FDFCFB; /* Soft Pearl White */
    --bg-nude: #F9F4F1;
    --brand-purple: #716FB3;
    --text-primary: #5D3326; /* Brand Dark Brown */
    --text-accent: #716FB3; /* Brand Purple for accents */
    --text-muted: #545759; /* Brand Neutral Grey */
    --border-color: #E6E0DA;
    --golden: #D4AF37;
    --deadline-bg: #E63946;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Elite Deadline Banner */
.deadline-banner {
    background-color: var(--text-primary);
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-transform: uppercase;
    border-bottom: 1px solid var(--text-accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('assets/hero_02.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0 20px;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 1px;
    color: #f1f1f1;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
}

.hero .cta-whatsapp {
    border-color: white;
    color: white;
}

.hero .cta-whatsapp:hover {
    background-color: white;
    color: var(--text-primary);
}

/* Product Gallery */
.gallery {
    padding: 150px 0;
}

.product-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.product-block.active {
    opacity: 1;
    transform: translateY(0);
}

.product-block:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1.2;
    position: relative;
}

.product-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 4px; /* Minimalist sharp edges */
    filter: brightness(0.95);
    transition: var(--transition-smooth);
}

.product-image:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

.product-info {
    flex: 1;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-accent);
    margin-bottom: 15px;
    display: block;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-spec {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.product-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 450px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
    display: block;
    color: var(--text-primary);
}

.cta-whatsapp {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid var(--text-primary);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-whatsapp:hover {
    background-color: var(--text-primary);
    color: white;
}

/* Ordering Section */
.order-guide {
    background-color: var(--bg-nude);
    padding: 120px 0;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.guide-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.guide-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Locations */
.locations {
    padding: 100px 0;
    text-align: center;
}

.location-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-block {
        flex-direction: column !important;
        gap: 40px;
        margin-bottom: 120px;
    }
    .hero-title { font-size: 3rem; }
    .product-title { font-size: 2.2rem; }
    .guide-grid { grid-template-columns: 1fr; }
}


/* E-Commerce Cart Styles */
#cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--brand-purple);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
#cart-icon:hover {
    transform: scale(1.05);
}
#cart-icon span {
    background: white;
    color: var(--brand-purple);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.9rem;
}

#cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#cart-overlay.open {
    display: block; opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0; right: -450px; width: 400px; height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open {
    right: 0;
}
@media (max-width: 600px) {
    .cart-sidebar { width: 100%; right: -100%; }
}

.cart-header {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-nude);
}
.cart-header h2 { font-size: 1.5rem; margin: 0; }
.close-cart {
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted);
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}
.empty-cart { text-align: center; color: var(--text-muted); margin-top: 20px; font-style: italic; }

.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 15px; margin-bottom: 15px; border-bottom: 1px solid var(--border-color);
}
.cart-item-info h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.cart-item-info p { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin: 0; }
.cart-controls { display: flex; align-items: center; gap: 10px; }
.cart-controls button { 
    background: var(--bg-nude); border: 1px solid var(--border-color); 
    width: 25px; height: 25px; border-radius: 50%; cursor: pointer; font-weight: bold; color: var(--text-primary);
}
.cart-controls button:hover { background: var(--brand-purple); color: white; border-color: var(--brand-purple); }

.cart-footer {
    padding: 20px 30px; background: white; border-top: 1px solid var(--border-color); box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
}
.cart-total { display: flex; justify-content: space-between; font-weight: 600; font-size: 1.3rem; margin-bottom: 15px; }

/* Authority Banner */
.authority-banner {
    background-color: var(--bg-nude);
    padding: 15px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}
.authority-banner .container {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; text-transform: uppercase;
}
@media (max-width: 600px) {
    .authority-banner .container { gap: 10px; flex-direction: column; text-align: center; }
}
