/* ============================================================
   YA AGBANTE — New Features CSS
   Blog, Gallery, FAQ, Theme Toggle, Animations, Appointments, Referral
   ============================================================ */

/* ---- THEME VARIABLES (Light Mode Override) ---- */
[data-theme="light"] {
    --primary-dark: #f5f0eb;
    --secondary-dark: #ede7df;
    --tertiary-dark: #d4c8b8;
    --text-light: #2c2c2c;
    --text-muted: #666666;
    --text-white: #1a1a1a;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-border: rgba(212, 175, 55, 0.25);
    --overlay-dark: rgba(255, 255, 255, 0.85);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
}

[data-theme="light"] body {
    color: #2c2c2c;
    background-color: #f5f0eb;
}

[data-theme="light"] .navbar {
    background: rgba(245, 240, 235, 0.95) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
[data-theme="light"] .navbar .nav-link {
    color: #2c2c2c !important;
}
[data-theme="light"] .navbar .nav-link:hover,
[data-theme="light"] .navbar .nav-link.active {
    color: var(--accent-gold) !important;
}
[data-theme="light"] .navbar .brand-text {
    color: #1a1a2e !important;
}
[data-theme="light"] .section-dark {
    background: #ede7df;
}
[data-theme="light"] .section-title {
    color: #1a1a2e;
}
[data-theme="light"] .section-tag {
    color: var(--accent-gold);
}
[data-theme="light"] .service-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .product-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .fetiche-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.2);
    color: #2c2c2c;
}
[data-theme="light"] .service-card h3,
[data-theme="light"] .blog-card h3,
[data-theme="light"] .fetiche-card h3 {
    color: #1a1a2e;
}
[data-theme="light"] .service-card p,
[data-theme="light"] .blog-card p {
    color: #555;
}
[data-theme="light"] .hero-overlay {
    background: linear-gradient(180deg, rgba(245,240,235,0.3) 0%, rgba(245,240,235,0.7) 100%);
}
[data-theme="light"] .site-footer {
    background: #1a1a2e;
    color: #e0e0e0;
}
[data-theme="light"] .site-footer .footer-heading,
[data-theme="light"] .site-footer .brand-text {
    color: #ffffff !important;
}
[data-theme="light"] .testimonial-card {
    background: rgba(255,255,255,0.95);
    color: #2c2c2c;
}
[data-theme="light"] .testimonial-card .testimonial-text {
    color: #444;
}
[data-theme="light"] .contact-info-card {
    background: rgba(255,255,255,0.9);
}
[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: #ffffff !important;
    color: #2c2c2c !important;
    border-color: #ccc !important;
}
[data-theme="light"] .parallax-divider {
    opacity: 0.3;
}
[data-theme="light"] .cart-modal,
[data-theme="light"] .checkout-modal {
    background: #f5f0eb;
}
[data-theme="light"] .cart-item-info h4,
[data-theme="light"] .cart-item-qty span {
    color: #2c2c2c;
}
[data-theme="light"] .cart-total {
    color: #2c2c2c;
}
[data-theme="light"] .product-image {
    background: rgba(212,175,55,0.05);
}

/* Theme transition */
body, .navbar, .service-card, .blog-card, .product-card, .faq-item, .fetiche-card,
.testimonial-card, .site-footer, .hero-overlay, input, select, textarea,
.section-title, .section-tag, .nav-link, .brand-text {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ---- THEME TOGGLE BUTTON ---- */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    background: transparent;
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}
.theme-toggle:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(180deg);
}
.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: inline; }
[data-theme="light"] .theme-toggle .fa-sun { display: inline; }
[data-theme="light"] .theme-toggle .fa-moon { display: none; }

/* ---- BLOG SECTION ---- */
.blog-section {
    padding: 100px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--accent-gold);
}
.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}
.blog-card-image .blog-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--accent-gold);
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-card-body {
    padding: 24px;
}
.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-body .blog-excerpt {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.blog-card-body .blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-coral);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}
.blog-card-body .blog-read-more:hover {
    color: var(--accent-gold);
}
.blog-card-body .blog-read-more i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}
.blog-card-body .blog-read-more:hover i {
    transform: translateX(5px);
}
/* Blog article expanded content */
.blog-full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}
.blog-full-content.expanded {
    max-height: 2000px;
    padding: 0 24px 24px;
}
.blog-full-content p {
    margin-bottom: 12px;
}

/* ---- BOUTIQUE SECTION ---- */
.boutique-section {
    padding: 100px 0;
}
.boutique-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.boutique-filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    background: transparent;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boutique-filter-btn:hover,
.boutique-filter-btn.active {
    background: var(--accent-gold);
    color: #000;
}
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--accent-gold);
}
.product-card.hidden {
    display: none;
}
.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-image .product-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    opacity: 0.7;
}
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.product-badge.in-stock {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}
.product-badge.low-stock {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.4);
}
.product-body {
    padding: 20px;
}
.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-coral);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-body .product-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 14px;
    min-height: 40px;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--accent-gold);
    font-weight: 700;
}
.btn-add-cart {
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: #000;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-add-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}
.btn-add-cart.added {
    background: #2ecc71;
    color: #fff;
}

/* ---- FLOATING CART ---- */
.floating-cart {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
    color: #000;
    font-size: 1.3rem;
}
.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212,175,55,0.6);
}
.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-coral);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
}
.cart-count:empty, .cart-count[data-count="0"] {
    display: none;
}

/* ---- CART MODAL ---- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    justify-content: flex-end;
    align-items: stretch;
}
.cart-overlay.active {
    display: flex;
}
.cart-modal {
    width: 420px;
    max-width: 100%;
    background: var(--primary-dark, #0d0d1a);
    border-left: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--card-border);
}
.cart-header h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin: 0;
    font-size: 1.2rem;
}
.cart-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}
.cart-close:hover {
    color: var(--accent-coral);
}
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}
.cart-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}
.cart-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(212,175,55,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.cart-item-info {
    flex: 1;
}
.cart-item-info h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 4px 0;
}
.cart-item-info .cart-item-price {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.cart-item-qty button:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.cart-item-qty span {
    font-weight: 600;
    color: var(--text-light);
    min-width: 20px;
    text-align: center;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding: 4px;
}
.cart-item-remove:hover {
    color: var(--accent-coral);
}
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--card-border);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
}
.cart-total span:last-child {
    color: var(--accent-gold);
    font-size: 1.3rem;
}
.cart-actions {
    display: flex;
    gap: 12px;
}
.btn-clear-cart {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-coral);
    color: var(--accent-coral);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.88rem;
}
.btn-clear-cart:hover {
    background: var(--accent-coral);
    color: #fff;
}
.btn-checkout {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border: none;
    color: #000;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.88rem;
}
.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

/* ---- CHECKOUT MODAL ---- */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
}
.checkout-overlay.active {
    display: flex;
}
.checkout-modal {
    width: 560px;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--primary-dark, #0d0d1a);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--card-border);
}
.checkout-header h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin: 0;
    font-size: 1.15rem;
}
.checkout-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}
.checkout-close:hover {
    color: var(--accent-coral);
}
.checkout-body {
    padding: 24px 28px;
}
.checkout-body h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 16px;
    margin-top: 20px;
}
.checkout-body h4:first-child {
    margin-top: 0;
}
.checkout-form-group {
    margin-bottom: 14px;
}
.checkout-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.88rem;
}
.checkout-form-group input,
.checkout-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
    color: var(--text-light);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s;
}
.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
    border-color: var(--accent-gold);
}
.checkout-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.checkout-summary {
    background: rgba(212,175,55,0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 18px;
    margin-top: 20px;
}
.checkout-summary h4 {
    margin-top: 0 !important;
}
.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}
.checkout-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--card-border);
}
.btn-submit-order {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* ---- LANGUAGE TOGGLE ---- */
.lang-toggle {
    display: flex;
    gap: 4px;
    margin-left: 12px;
    border: 1px solid var(--card-border);
    border-radius: 25px;
    padding: 3px;
}
.lang-btn {
    padding: 4px 10px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.lang-btn.active {
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
}
.lang-btn:hover:not(.active) {
    color: var(--accent-gold);
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 100px 0;
}
.faq-search {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}
.faq-search input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid var(--card-border);
    border-radius: 30px;
    background: var(--card-bg);
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.faq-search input:focus {
    border-color: var(--accent-gold);
}
.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
}
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 8px 22px;
    border: 1px solid var(--card-border);
    border-radius: 25px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}
.faq-tab:hover,
.faq-tab.active {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--accent-gold);
}
.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.3s;
}
.faq-question:hover {
    color: var(--accent-gold);
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-gold);
    font-size: 0.9rem;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.93rem;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 18px;
}
.faq-item.faq-hidden {
    display: none;
}

/* ---- APPOINTMENT FORM ---- */
.appointment-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}
.appointment-form-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 24px;
    text-align: center;
}
.appointment-form .form-group {
    margin-bottom: 18px;
}
.appointment-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--accent-gold);
}
.appointment-form .btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.appointment-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* ---- REFERRAL SECTION ---- */
.referral-section {
    padding: 80px 0;
}
.referral-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(233,69,96,0.1) 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.referral-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.6rem;
    margin-bottom: 16px;
}
.referral-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}
.referral-code-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    border: 2px dashed var(--accent-gold);
    border-radius: 12px;
    padding: 14px 24px;
    margin-bottom: 24px;
}
.referral-code-box code {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
}
.referral-code-box .copy-btn {
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.referral-code-box .copy-btn:hover {
    background: var(--accent-gold-light);
}
.referral-share-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}
.referral-share-btns a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}
.referral-share-btns a:hover {
    transform: translateY(-3px);
}
.referral-share-btns .btn-whatsapp { background: #25D366; }
.referral-share-btns .btn-facebook { background: #1877F2; }
.referral-share-btns .btn-email { background: var(--accent-coral); }

/* ---- ENHANCED ANIMATIONS ---- */
/* Typing cursor */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--accent-gold);
    margin-left: 4px;
    animation: blink-cursor 0.8s infinite;
    vertical-align: text-bottom;
}
@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Pulse CTA buttons */
.btn-accent {
    animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(233,69,96,0.3); }
    50% { box-shadow: 0 0 25px rgba(233,69,96,0.6), 0 0 50px rgba(233,69,96,0.2); }
}

/* Card hover lift */
.service-card:hover,
.fetiche-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold), 0 20px 40px rgba(0,0,0,0.3);
}

/* Floating particles enhancement */
.hero-particle {
    pointer-events: none;
}

/* Mystical cursor glow */
.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: screen;
}

/* Stats counter section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(233,69,96,0.05) 100%);
}
.stat-item {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .referral-card {
        padding: 30px 20px;
    }
    .cart-modal {
        width: 360px;
    }
}
@media (max-width: 767.98px) {
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .boutique-filters {
        gap: 8px;
    }
    .boutique-filter-btn {
        padding: 6px 16px;
        font-size: 0.82rem;
    }
    .faq-tabs {
        gap: 6px;
    }
    .faq-tab {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
    .appointment-form-wrapper {
        padding: 24px 16px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .cart-modal {
        width: 100%;
    }
    .checkout-modal {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    .checkout-form-row {
        grid-template-columns: 1fr;
    }
    .lang-toggle {
        margin-left: 8px;
    }
}
@media (max-width: 575.98px) {
    .boutique-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-card-image {
        height: 180px;
    }
    .referral-code-box {
        flex-direction: column;
        gap: 8px;
    }
    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .floating-cart {
        bottom: 80px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}
