:root {
    --brand-olive: #4A5C23;
    --brand-brown: #A65E2E;
    --brand-peach: #FDDACD;
    --brand-cream: #FAF7F2;
    --brand-ink: #2D3748;
    --brand-accent: #A65E2E;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-text: #6b7280;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--brand-ink);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section { padding: 80px 0; }
.alt-bg { background-color: rgba(253, 218, 205, 0.1); }
.faq-bg { background-color: var(--brand-cream); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--brand-olive);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--brand-brown);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--brand-olive);
    border: 1px solid var(--brand-peach);
}

.btn-secondary:hover {
    background-color: var(--brand-cream);
}

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--brand-peach);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-olive);
}

.close-cart {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--brand-olive);
    cursor: pointer;
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--brand-brown);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--gray-text);
    margin-top: 50px;
    font-style: italic;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(253, 218, 205, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-item-info .price {
    font-weight: 700;
    color: var(--brand-brown);
    font-size: 14px;
}

.remove-item {
    background: none;
    border: none;
    color: #EA4335;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.remove-item:hover {
    opacity: 1;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--brand-peach);
    background: var(--brand-cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    color: var(--brand-olive);
}

.checkout-btn {
    width: 100%;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1001;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    border-radius: 8px;
}

.logo span {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-olive);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-olive);
    font-weight: 500;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--brand-brown);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    color: var(--brand-olive);
}

.nav-icon-link {
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px;
}

.nav-icon-link:hover {
    transform: translateY(-2px);
}

.ig-color { color: #E1306C; }
.wa-color { color: #25D366; }

.nav-icon-link i {
    font-size: 20px;
}

.cart-btn i {
    font-size: 18px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--brand-brown);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-olive);
}

/* Hero */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--brand-cream);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background-color: var(--brand-peach);
    opacity: 0.3;
    border-radius: 0 0 0 200px;
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}


h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.1;
    color: var(--brand-olive);
    margin-bottom: 20px;
}

.script-text {
    font-family: 'Caveat', cursive;
    font-size: 56px;
    color: var(--brand-brown);
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.logo-card {
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(74, 92, 35, 0.1);
    transform: rotate(3deg);
    transition: var(--transition);
    height: 400px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.logo-card:hover { rotate: 0deg; }

.logo-card img {
    max-width: 100%;
    height: auto;
}

.badge-float {
    position: absolute;
    top: 50%;
    right: -30px;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-float .number { font-weight: 800; color: var(--brand-accent); }
.badge-float .label { font-size: 10px; white-space: nowrap; }

/* Product Grid */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--brand-olive);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray-text);
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 30px;
    padding: 10px;
    border: 1px solid rgba(253, 218, 205, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: var(--transition);
}

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

.best-seller-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
    color: var(--brand-brown);
}

.product-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.img-box {
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 10px 15px 20px;
}

.info-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.info-head h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

.info-head .price {
    font-weight: 700;
    color: var(--brand-brown);
}

.color-options .label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(253, 218, 205, 0.3);
    color: var(--brand-brown);
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(253, 218, 205, 0.5);
}

.btn-order {
    width: 100%;
}

/* Ganci */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.title-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 36px;
    color: var(--brand-olive);
}

.big-price {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--brand-brown);
}

.ganci-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.ganci-card {
    background: white;
    padding: 20px;
    border-radius: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.ganci-img-box {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.ganci-img-box img { width: 100%; height: 100%; object-fit: cover; }

.ganci-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ganci-price { font-weight: 700; color: var(--brand-brown); margin: 5px 0 15px; }

.ganci-details { margin-bottom: 20px; }

.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.tag-filled {
    background: rgba(253, 218, 205, 0.4);
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 10px;
    color: var(--brand-olive);
    font-weight: 600;
}

.tags-outline { display: flex; gap: 5px; }
.tags-outline span {
    font-size: 10px;
    border: 1px solid var(--brand-peach);
    padding: 2px 8px;
    border-radius: 10px;
    font-style: italic;
    color: var(--gray-text);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 20px;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--gray-text);
    display: none;
}

/* Custom Card */
.custom-card {
    background: linear-gradient(135deg, rgba(253, 218, 205, 0.2), white);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border: 1px solid rgba(253, 218, 205, 0.4);
}

.custom-list {
    list-style: none;
    margin: 30px 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--brand-olive);
}

.grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-images img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.offset-y { transform: translateY(40px); }


/* Map Section */
.map-section {
    background: var(--brand-cream);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 4px solid white;
}

/* Footer */
footer {
    padding-top: 80px;
    background: white;
    border-top: 1px solid rgba(253, 218, 205, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    color: var(--gray-text);
    margin: 20px 0;
    max-width: 300px;
}

.social-links { 
    display: flex; 
    gap: 15px; 
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--brand-peach);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    text-decoration: none;
}

.ig-btn { color: #E1306C; }
.wa-btn { color: #25D366; }
.map-btn { color: #EA4335; }

.social-links a:hover {
    transform: translateY(-5px);
}

.social-links a.ig-btn:hover {
    background-color: #fdf2f6;
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.2);
    border-color: #E1306C;
}

.social-links a.wa-btn:hover {
    background-color: #f0fdf4;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

.social-links a.map-btn:hover {
    background-color: #fef2f2;
    box-shadow: 0 10px 20px rgba(234, 67, 53, 0.2);
    border-color: #EA4335;
}

.footer-links h6 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    text-decoration: none;
    color: var(--gray-text);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--brand-brown); }

.contact-list a { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.contact-list a i {
    width: 20px;
    text-align: center;
}
.contact-list .fa-instagram { color: #E1306C; }
.contact-list .fa-whatsapp { color: #25D366; }
.contact-list .fa-envelope { color: var(--brand-olive); }

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.legal-links { display: flex; gap: 20px; }

/* Help Modals */
.help-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.help-modal.open {
    display: flex;
}

.help-modal-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: var(--brand-olive);
    transition: var(--transition);
}

.close-modal:hover { color: var(--brand-brown); }

.help-modal-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brand-olive);
    margin-bottom: 20px;
    font-size: 24px;
}

.size-table {
    background: var(--brand-cream);
    padding: 15px;
    border-radius: 15px;
    margin: 15px 0;
}

.size-row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.size-row:last-child { border: none; }

.help-list {
    padding-left: 20px;
}

.help-list li {
    margin-bottom: 10px;
    color: var(--gray-text);
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 48px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { order: -1; display: flex; justify-content: center; }
    .logo-card { width: 300px; height: 300px; }
    .custom-card { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr; }
    .ganci-grid { grid-template-columns: 1fr; }
    .ganci-card { flex-direction: column; }
    .ganci-img-box { width: 100%; height: 250px; }
}
