@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-olive: #55683F;
    --primary-olive-light: #70845B;
    --primary-olive-dark: #3E4D2C;
    --secondary-wine: #6B1D2F;
    --secondary-wine-light: #892D41;
    --accent-beige: #E5D3C3;
    --accent-gold: #C5A059;
    --bg-pastel: #FAF5F0;
    --bg-card: #FFFFFF;
    --text-dark: #2A2523;
    --text-muted: #6E6865;
    --text-light: #FAF5F0;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(197, 160, 89, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(107, 29, 47, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-pastel);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(85, 104, 63, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(85, 104, 63, 0.7);
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 1.2s ease-in-out forwards;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-pastel);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-olive-light);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-olive);
}

/* Header Banner & Logo */
.announcement-bar {
    background-color: var(--secondary-wine);
    color: var(--text-light);
    text-align: center;
    padding: 8px 15px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(229, 211, 195, 0.2);
}

header {
    background-color: var(--primary-olive);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
    border-bottom: 2px solid var(--accent-beige);
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    .logo-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 5px;
    }
    header h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .slogan-banner {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 90%;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-beige);
    box-shadow: var(--shadow-glow);
    margin-bottom: 10px;
    transition: var(--transition);
}

.logo-wrapper:hover {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--accent-gold);
}

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

header h1 {
    font-family: var(--font-serif);
    color: var(--accent-beige);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.slogan-banner {
    color: var(--bg-pastel);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    text-align: center;
    max-width: 600px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px;
    background: radial-gradient(circle at top right, rgba(229, 211, 195, 0.3), transparent 70%),
                radial-gradient(circle at bottom left, rgba(85, 104, 63, 0.08), transparent 50%);
    text-align: center;
    border-bottom: 1px solid rgba(85, 104, 63, 0.1);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary-olive);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 5px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    color: var(--secondary-wine);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 25px;
    font-weight: 300;
}

.hero-title span {
    font-style: italic;
    font-weight: 500;
    color: var(--primary-olive);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 35px;
    font-weight: 300;
}

.hero-cta {
    background-color: var(--primary-olive);
    color: var(--text-light);
    border: none;
    padding: 15px 35px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.hero-cta:hover {
    background-color: var(--secondary-wine);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(107, 29, 47, 0.2);
}

/* Category Filter or Section Title */
.section-header {
    text-align: center;
    margin: 60px auto 40px;
    max-width: 800px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--secondary-wine);
    margin-bottom: 10px;
    font-weight: 400;
}

.section-header::after {
    content: '✿';
    display: block;
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 10px;
}

/* Catalog Grid */
.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(229, 211, 195, 0.4);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow), 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #FAF5F0;
    border-bottom: 1px solid rgba(229, 211, 195, 0.3);
    cursor: pointer;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.badge-offer {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-wine);
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
}

.badge-out-of-stock {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #555;
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    z-index: 10;
    letter-spacing: 1px;
}

.product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--secondary-wine);
    margin-bottom: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.product-title:hover {
    color: var(--primary-olive);
}

.product-desc-short {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-size {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
    border-top: 1px dashed rgba(229, 211, 195, 0.6);
    padding-top: 8px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: -2px;
}

.current-price {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-olive);
}

.btn-add-cart {
    background-color: var(--primary-olive);
    color: var(--text-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-add-cart svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-add-cart:hover {
    background-color: var(--secondary-wine);
    transform: scale(1.1);
}

.btn-add-cart.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-add-cart.disabled:hover {
    background-color: #ccc;
    transform: none;
}

/* Floating Cart Icon */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-olive);
    color: var(--text-light);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(85, 104, 63, 0.4);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;
}

.floating-cart:hover {
    background-color: var(--secondary-wine);
    box-shadow: 0 15px 35px rgba(107, 29, 47, 0.5);
    transform: scale(1.05);
}

.floating-cart svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-wine);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-pastel);
    box-shadow: var(--shadow-soft);
}

.floating-cart.has-items {
    animation: pulseGlow 2s infinite;
}

/* Modal and Drawers Base */
.modal-overlay, .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 37, 35, 0.5);
    backdrop-filter: blur(5px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active, .drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Product Detail Modal */
.product-modal {
    background: var(--bg-card);
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 1px solid var(--accent-beige);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .product-modal {
        flex-direction: row;
        height: auto;
        max-height: 90vh;
    }
}

.modal-overlay.active .product-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255,255,255,0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--secondary-wine);
    color: var(--text-light);
}

.modal-image {
    width: 100%;
    position: relative;
    background-color: var(--bg-pastel);
}

@media (min-width: 768px) {
    .modal-image {
        width: 50%;
    }
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-content {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .modal-content {
        width: 50%;
        overflow-y: auto;
    }
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--secondary-wine);
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-size {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 300;
}

.modal-price-btn-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-olive);
}

.modal-old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.btn-modal-action {
    background-color: var(--primary-olive);
    color: var(--text-light);
    border: none;
    padding: 12px 25px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal-action:hover {
    background-color: var(--secondary-wine);
}

.btn-modal-action.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Slide-out Shopping Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: rgba(254, 251, 248, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    border-left: 1px solid var(--accent-beige);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.drawer-header {
    padding: 25px;
    border-bottom: 1px solid rgba(85, 104, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--secondary-wine);
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close svg {
    width: 24px;
    height: 24px;
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(229, 211, 195, 0.5);
}

.cart-item-img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--accent-beige);
}

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

.cart-item-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-wine);
}

.cart-item-price {
    font-size: 0.95rem;
    color: var(--primary-olive);
    font-weight: 600;
}

.cart-item-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--accent-beige);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 5px;
    width: fit-content;
}

.btn-qty {
    background: none;
    border: none;
    width: 28px;
    height: 24px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.btn-qty:hover {
    background-color: var(--accent-beige);
}

.qty-val {
    width: 30px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove-item:hover {
    color: var(--secondary-wine);
}

.btn-remove-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Drawer Footer */
.drawer-footer {
    padding: 25px;
    border-top: 1px solid rgba(85, 104, 63, 0.15);
    background-color: rgba(250, 245, 240, 0.5);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.summary-total {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-wine);
}

.btn-checkout-step {
    background-color: var(--primary-olive);
    color: var(--text-light);
    border: none;
    width: 100%;
    padding: 14px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-checkout-step:hover {
    background-color: var(--secondary-wine);
}

/* Checkout Form Screen (within drawer) */
.checkout-screen {
    display: none;
    padding: 25px;
    flex-grow: 1;
    overflow-y: auto;
}

.checkout-screen.active {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent-beige);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background-color: var(--bg-card);
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-olive);
    box-shadow: 0 0 0 3px rgba(85, 104, 63, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.delivery-options-container, .payment-options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 5px;
}

.option-card {
    border: 1px solid var(--accent-beige);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--bg-card);
}

.option-card.selected {
    border-color: var(--primary-olive);
    background-color: rgba(85, 104, 63, 0.05);
    color: var(--primary-olive);
    font-weight: 600;
}

.option-card p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.yappy-instructions {
    display: none;
    background-color: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #8C6A24;
}

.yappy-instructions.active {
    display: block;
}

.btn-send-whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-send-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.btn-send-whatsapp:hover {
    background-color: #1ebd59;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-back-to-cart {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: underline;
    align-self: center;
}

.btn-back-to-cart:hover {
    color: var(--secondary-wine);
}

/* Footer Section */
footer {
    background-color: var(--primary-olive-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
    border-top: 3px solid var(--accent-beige);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-beige);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-gold);
    color: var(--primary-olive-dark);
    transform: scale(1.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--accent-beige);
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-col ul li strong {
    color: var(--accent-beige);
}

.btn-map-link {
    display: inline-block;
    margin-top: 8px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.btn-map-link:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom a {
    color: var(--accent-beige);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Loader Spinner */
.loader-spinner {
    border: 3px solid rgba(85, 104, 63, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-left-color: var(--primary-olive);
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Category Filters Styling */
.category-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 50px;
    max-width: 900px;
    padding: 0 10px;
    animation: fadeIn 1s ease-in-out forwards;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--accent-beige);
    color: var(--text-dark);
    padding: 10px 22px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    border-color: var(--primary-olive);
    color: var(--primary-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 104, 63, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-olive);
    border-color: var(--primary-olive);
    color: var(--text-light);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(85, 104, 63, 0.3);
}

/* Yappy Copy Button */
.btn-copy-yappy {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: #8C6A24;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    border-radius: 12px;
    cursor: pointer;
    margin-left: 8px;
    transition: var(--transition);
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}

.btn-copy-yappy:hover {
    background-color: var(--accent-gold);
    color: #fff;
    transform: scale(1.05);
}

/* Micro animations / Glow for WhatsApp button */
.btn-send-whatsapp {
    position: relative;
    overflow: hidden;
}

.btn-send-whatsapp::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.5s;
    opacity: 0;
    pointer-events: none;
}

.btn-send-whatsapp:hover::after {
    animation: shimmer 1.5s infinite;
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translate(-100%, -100%) rotate(30deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(30deg);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-icon-img {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon-img {
        width: 50px;
        height: 50px;
    }
    .floating-cart {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

