/*
Theme Name: Yaropa Farm Rio Clone
Theme URI: http://fiverr.com/f_rezawl
Author: Alex Reza
Author URI: http://fiverr.com/f_rezawl
Description: A premium vegan swimwear WordPress theme, cloned from Farm Rio.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yaropa
Tags: e-commerce, fashion, swimwear, responsive
*/

/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --font-serif: 'Playfair Display', serif;
    --font-heading: 'Playfair Display', serif;
    /* Farm Rio uses a similar serif for headings */
    --font-sans: 'Montserrat', sans-serif;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555555;
    --color-bg-light: #f9f9f9;
    --spacing-container: 40px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    font-family: var(--font-sans);
    color: var(--color-text-primary);
    background-color: #F4EFE3;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* Header */
.main-header {
    background-color: #F4EFE3;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--spacing-container);
    max-width: 1600px;
    margin: 0 auto;
    height: 80px;
}


.logo a {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 400;
    /* Minimalist */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    display: inline-block;
    /* Ensure link wraps image */
}

/* Force logo image to be dark (black) */
.logo img {
    filter: brightness(0);
    opacity: 0.9;
    /* Slightly softer than pure #000 for verified look */
}


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

.main-nav a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    color: #000;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-black);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    margin-right: 20px;
    cursor: pointer;
    padding: 5px 0;
}

.search-bar span {
    font-size: 12px;
    color: var(--color-text-secondary);
    display: none;
    /* Often hidden on smaller screens, can show on large */
}

@media (min-width: 1200px) {
    .search-bar span {
        display: block;
    }
}

.icon-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-link ion-icon {
    font-size: 22px;
    color: #000;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 80vh;
    /* Adjust height */
    min-height: 500px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
    /* Moved further right */
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    /* Large Serif title */
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.brand-tag {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    text-shadow: none;
}

.btn-primary:hover {
    background-color: #fff;
    color: #000;
}

/* Product Section */
.product-section {
    padding: 80px var(--spacing-container);
    max-width: 1600px;
    margin: 0 auto;
}

.section-container {
    width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    color: #000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    cursor: pointer;
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/5;
    /* Keep vertical aspect ratio */
    background-color: #f7f7f7;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge {
    font-size: 11px;
    text-transform: uppercase;
    padding: 6px 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.badge.new {
    background-color: #fff;
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.badge.sale {
    background-color: #F3B5B0;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    opacity: 0;
    z-index: 20;
}

.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #000;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.price-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.sale-price {
    color: #F3B5B0;
    font-weight: 600;
}

.view-all-container {
    text-align: center;
    margin-top: 80px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    background: transparent;
    color: #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

/* Footer */
.main-footer {
    background-color: #f9f9f9;
    padding: 80px var(--spacing-container) 30px;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    /* Uneven columns like standard footers */
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.footer-column ul li a:hover {
    color: #000;
    text-decoration: underline;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    max-width: 400px;
}

.newsletter-form input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 10px 0;
    outline: none;
    font-size: 14px;
    color: #000;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    border: none;
    background: transparent;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    color: #000;
    transition: opacity 0.3s;
}

.newsletter-form button:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: #888;
    letter-spacing: 0.5px;
}

/* Responsive Design */
/* Mobile Header Layout (Farm Rio Clone) */
@media (max-width: 1024px) {
    .header-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        height: auto;
        /* Allow auto height for wrapping search bar */
    }

    /* Order 1: Menu Toggle (Left) */
    .mobile-toggle {
        display: block;
        order: 1;
        font-size: 26px;
        margin-right: 0;
        width: 40px;
        /* Fixed width for alignment */
    }

    /* Order 2: Logo (Center) */
    .logo {
        order: 2;
        flex-grow: 1;
        text-align: center;
        margin: 0;
        /* Reset margins */
    }

    .logo a {
        font-size: 24px;
        letter-spacing: 2px;
    }

    /* Order 3: Right Icons (Bag, Flag) */
    .header-icons {
        order: 3;
        margin: 0;
        gap: 15px;
        width: 40px;
        /* Match toggle width for visual balance if needed, or auto */
        display: flex;
        justify-content: flex-end;
        width: auto;
    }

    /* Adjust Icon Group Visibility */
    .icon-group .icon-link:not(:last-child) {
        display: none;
        /* Hide Person, Heart on tablet/mobile if needed */
    }

    .icon-group .icon-link:last-child {
        display: block;
        /* Show Bag */
    }

    /* Ensure Flag is visible if desired */
    .language-dropdown {
        display: block;
    }

    /* Hide Desktop Search inside icons */
    .header-icons .search-bar {
        display: none;
    }

    /* Order 4: Mobile Search Bar (Bottom) */
    .mobile-search-bar {
        display: flex;
        order: 4;
        width: 100%;
        margin-top: 15px;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
        align-items: center;
        gap: 10px;
        color: #666;
    }

    .mobile-search-bar ion-icon {
        font-size: 20px;
    }

    .mobile-search-bar span {
        font-size: 13px;
    }

    /* Navigation Drawer (Keep existing but ensure z-index) */
    .main-nav {
        /* Initially hidden */
        display: none;
        position: absolute;
        top: 100%;
        /* Below header */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        border-top: 1px solid #eee;
        z-index: 999;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .hero-title {
        font-size: 42px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
    }
}

/* Hide Mobile Search on Desktop */
@media (min-width: 1025px) {
    .mobile-search-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 10px;
    }

    .header-container {
        height: 60px;
        padding: 10px 20px;
    }

    .hero-image-container {
        height: 50vh;
        min-height: 350px;
        /* Compromise for content spacing */
    }

    .hero-img {
        object-position: 20% center;
        /* Shift to left side on mobile to show the swimwear model */
    }

    .hero-title {
        font-size: 28px;
        /* Significantly smaller to fit in reduced height */
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 13px !important;
        /* Override inline styles */
        margin-bottom: 20px !important;
        display: block;
        /* Ensure visibility */
        line-height: 1.4;
    }

    .brand-tag {
        font-size: 16px;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .newsletter-form {
        margin: 0 auto;
    }
}

/* --- Single Product Page Styles (Farm Rio Match) --- */

/* Layout & Grid */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Gallery wider than info */
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px var(--spacing-container);
    align-items: start;
}

@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
}

/* Gallery Column */
.product-gallery-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-gallery-column img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Info Column & Sticky */
.product-info-column {
    position: sticky;
    top: 120px;
    /* Account for header */
}

/* Typography & Alignment */
.product-info-column .entry-summary {
    text-align: left;
    /* Left align everything as per desktop reference */
    max-width: 500px;
    /* No auto margin, keep left */
}

/* Title */
.product_title {
    font-family: var(--font-heading);
    /* Serif */
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.2;
    color: var(--color-text-primary);
    text-transform: none;
    /* Reference uses specific casing, but often Sentence Case */
    letter-spacing: 0.5px;
}

/* Price */
.price {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 25px;
    display: block;
    /* Block for left align */
}

.price del {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-size: 16px;
}

.price ins {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 400;
}

/* Product Short Description */
.woocommerce-product-details__short-description {
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quantity - HIDE IT */
.quantity {
    display: none !important;
}

/* Add to Cart Container */
form.cart {
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping */
    gap: 10px;
    margin-bottom: 20px;
}

/* Add to Cart Button */
.single_add_to_cart_button {
    flex-grow: 1;
    /* Take up available space */
    background-color: #333 !important;
    /* Dark grey/black */
    color: #fff !important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 18px 20px !important;
    border: none;
    border-radius: 0 !important;
    cursor: pointer;
    transition: opacity 0.3s;
}

.single_add_to_cart_button:hover {
    opacity: 0.9;
    background-color: #000 !important;
}

/* Wishlist Button */
.product-wishlist-action {
    display: none;
    /* JS will move button and clear this */
}

.wishlist-btn {
    background: #fff;
    border: 1px solid #e5e5e5;
    min-width: 58px;
    width: 58px;
    height: 100%;
    /* Stretch to fill container if flex */
    min-height: 52px;
    /* fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: border-color 0.2s;
    margin: 0;
    padding: 0;
}

.wishlist-btn:hover {
    border-color: #000;
}

.wishlist-btn ion-icon {
    font-size: 24px;
}

/* Accordions */
.product-accordions {
    border-top: 1px solid #e5e5e5;
    margin-top: 30px;
    text-align: left;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    color: #000;
    text-align: left;
}

.accordion-content {
    display: none;
    padding-bottom: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Variations (Standard WooCommerce Select override) */
.variations_form {
    width: 100%;
}

.variations {
    width: 100%;
    margin-bottom: 10px;
}

.variations label {
    display: none;
}

.variations select {
    display: none;
    /* Hidden because we use custom buttons */
}

/* Custom Size Buttons (Generated by JS) */
.custom-size-selector {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.size-option-btn {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    padding: 0 10px;
    color: #000;
}

.size-option-btn:hover {
    border-color: #000;
}

.size-option-btn.selected {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.size-option-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
    color: #ccc;
    text-decoration: line-through;
    border-color: #eee;
}

.size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    text-decoration: none;
    margin-bottom: 15px;
    color: #666;
    cursor: pointer;
    width: 100%;
    /* Force new line */
}



.modal-price {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.modal-price .sale {
    color: #F3B5B0;
}

.modal-price .original {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.modal-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.modal-actions {
    margin-top: 30px;
}

.size-selector {
    margin-bottom: 25px;
}

.size-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.sizes {
    display: flex;
    gap: 10px;
}

.size-btn {
    border: 1px solid #ddd;
    background: transparent;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.size-btn:hover,
.size-btn.selected {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.add-cart-btn-large {
    width: 100%;
    padding: 18px;
    background-color: #000;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-cart-btn-large:hover {
    background-color: #333;
}

@media (max-width: 900px) {
    .modal-content {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .modal-gallery {
        grid-template-columns: 1fr;
        /* Full width images on mobile */
    }

    .modal-details {
        position: static;
    }
}

/* --- Category Collection Styles --- */
.category-section {
    padding: 0 var(--spacing-container) 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.category-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

.category-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.category-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 800px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 450px;
        margin-bottom: 20px;
    }
}

/* --- Spotlight Section --- */
.spotlight-section {
    padding: 0 var(--spacing-container) 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.spotlight-item {
    text-align: center;
}

.spotlight-img-container {
    overflow: hidden;
    margin-bottom: 25px;
}

.spotlight-img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.spotlight-item:hover .spotlight-img {
    transform: scale(1.03);
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 10px;
}

.spotlight-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.spotlight-btn {
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    font-weight: 500;
    transition: all 0.3s;
}

.spotlight-btn:hover {
    color: #555;
    border-color: #555;
}

/* --- Values/Icons Section --- */
.values-section {
    background-color: #f9f9f9;
    padding: 60px var(--spacing-container);
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.value-item ion-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #000;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* --- Instagram/Social Feed --- */
.social-section {
    padding: 0 0 80px;
    text-align: center;
}

.social-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 40px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.social-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Lightbox Modal (For Social Images) --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Language Dropdown */
.header-icons {
    position: relative;
    /* Ensure dropdown context */
    align-items: center;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.dropbtn {
    background-color: transparent;
    color: #000;
    padding: 0;
    font-size: 13px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    /* High z-index */
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #eee;
    padding: 5px 0;
}

.dropdown-content a {
    color: black;
    padding: 8px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
}

.dropdown-content img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

.cart-contents {
    position: relative;
    display: inline-flex;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #000;
    color: #fff;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
    padding: 2px;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}


/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .main-nav {
        /* Initially hidden by display: none above */
        position: absolute;
        top: 80px;
        /* Header height */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        z-index: 999;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .main-nav.active {
        display: block !important;
        /* Force display */
        animation: slideDown 0.3s ease-out;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

/* Chat Widget Styles */
.chat-widget-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-size: 28px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-widget-btn:hover {
    transform: scale(1.1);
}

.chat-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-modal-overlay.active {
    display: block;
    opacity: 1;
}

.chat-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    background: #f4f4f4;
    /* Light grey bg from image */
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    /* Prevent overflow */
    font-family: var(--font-sans);
}

.chat-modal.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Chat Header */
.chat-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* text-align: center for drag handle? */
}

.chat-header-title {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.chat-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Chat Body */
.chat-body {
    padding: 20px;
    overflow-y: auto;
}

.offline-message {
    font-size: 20px;
    /* Big text */
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Action List */
.chat-options-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-option-btn {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-option-btn:last-child {
    border-bottom: none;
}

.chat-option-btn:hover {
    background: #f9f9f9;
}

.chat-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Track Order Card */
.track-order-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.track-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.track-icon-box {
    width: 36px;
    height: 36px;
    background: #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Message Input Area */
.chat-input-area {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: text;
}

.input-placeholder {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.input-subtext {
    font-size: 13px;
    color: #888;
}

.send-icon {
    font-size: 20px;
    color: #000;
}

/* Mobile Responsive Chat */
@media (max-width: 480px) {
    .chat-modal {
        width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        /* Bottom sheet style */
        margin: 0;
        transform: translateY(100%);
    }

    .chat-modal.active {
        transform: translateY(0);
    }
}

/* --- Brand Philosophy Section (Page 15) --- */
.philosophy-section {
    padding: 100px var(--spacing-container);
    background-color: #f4f1ea;
    /* Soft warm beige */
    text-align: center;
}

.philosophy-container {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #555;
    font-weight: 500;
}

.philosophy-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.btn-text {
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 2px;
    font-weight: 500;
}

.btn-text:hover {
    color: #555;
    border-color: #555;
}


/* --- Fabric Technology Section (Page 13) --- */
.fabric-section {
    padding: 100px var(--spacing-container);
    background-color: #F4EFE3;
    text-align: center;
}

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

.section-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    margin-top: -40px;
    /* Pull closer to title */
    font-family: var(--font-serif);
    font-style: italic;
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    /* Centered looks better for icons here */
}

.fabric-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.fabric-item:hover {
    transform: translateY(-5px);
}

.fabric-item ion-icon {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.fabric-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.fabric-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.fabric-footer {
    margin-top: 60px;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .philosophy-title {
        font-size: 32px;
    }

    .fabric-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fabric-item {
        padding: 0;
    }
}

/* --- Foundation Pillars Section (Page 3) --- */
.pillars-section {
    padding: 100px var(--spacing-container);
    background-color: #F4EFE3;
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pillar-item {
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pillar-item:hover {
    border-color: #1a1a1a;
    transform: translateY(-5px);
}

.pillar-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.pillar-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.section-subtitle {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.category-subtitle {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

/* Responsive for Pillars */
@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Mission & Vision Section (Pages 5-6) --- */
.mission-vision-section {
    padding: 100px var(--spacing-container);
    background-color: #1a1a1a;
    color: var(--color-white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.box-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 25px;
}

.box-quote {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 400;
}

.box-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 991px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .box-desc {
        margin: 0 auto;
    }
}

/* --- Mini Values Bar (Page 7) --- */
.mini-values-bar {
    padding: 30px var(--spacing-container);
    background-color: #F4EFE3;
    border-top: 1px solid #eee;
}

.values-bar-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.value-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #555;
}

.value-dot {
    width: 6px;
    height: 6px;
    background-color: #1a1a1a;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .values-bar-container {
        gap: 20px;
        justify-content: center;
    }
}

/* --- New Design Updates --- */

/* Split Hero */
.hero-section.split-hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-bg-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-side {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 4px;
    width: 80%;
    max-width: 600px;
}


/* Split Banner Grid */
.split-banner {
    display: flex;
    width: 100%;
    height: 700px;
    /* Matches the image height to remove any gaps */
    background-color: #F4EFE3;
    overflow: hidden;
}

.split-col {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-col {
    background-color: #f7f7f7;
    padding: 0;
}

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


.split-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    color: #fff;
    width: 100%;
    /* removed pointer-events: none to make button clickable */
}

.script-title {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 64px;
    /* Reduced for better balance */
    margin-bottom: 25px;
    color: #fff;
    line-height: 0.8;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.text-col {
    padding: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.green-bg {
    background-color: #1a2a1a;
    color: #ffffff;
}

.pattern-bg {
    background-image: url('assets/images/Hero-image-background.jpg');
    /* Use the leafy background */
    background-size: cover;
    background-position: center;
    position: relative;
}

.pattern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 30, 15, 0.85);
    /* Darker green overlay */
    z-index: 1;
}

.split-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
}

.clean-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
}

.split-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #efefef;
    font-weight: 400;
}

.split-content p:last-child {
    margin-bottom: 0;
}

/* Custom button for split banner */
.custom-btn.white {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 35px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.custom-btn.white:hover {
    background: #fff;
    color: #1a2a1a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Shop Occasion */
.shop-occasion-section {
    padding: 80px var(--spacing-container);
    background-color: #F4EFE3 !important;
    text-align: center;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #c2a172;
    color: #c2a172;
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn.active {
    background: #c2a172;
    color: #fff;
}

.filter-btn:hover:not(.active) {
    background: rgba(194, 161, 114, 0.1);
}

.occasion-grid-container {
    position: relative;
    min-height: 400px;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: opacity 0.3s ease;
}

.occasion-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

.occasion-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.btn-overlay-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.btn-overlay-bottom:hover {
    opacity: 1;
}

/* Updated Social Section */
.social-section.updated {
    padding-top: 60px;
    text-align: center;
}

.social-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
}

.social-grid-4 img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Newsletter Bar */
.newsletter-bar {
    position: relative;
    background-color: #739B80 !important;
    padding: 20px var(--spacing-container);
    display: flex;
    justify-content: center;
    border-top: 1px solid #739B80;
}

.special-badge {
    position: absolute;
    top: -40px;
    left: 10%;
    width: 90px;
    height: 90px;
    background-color: #739B80;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-15deg);
    border: 2px solid #fff;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
}

.newsletter-label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: #fff;
    flex: 1;
}

.newsletter-inline-form {
    display: flex;
    flex: 2;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.newsletter-inline-form input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
}

.newsletter-inline-form button {
    background: none;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

/* Footer Update */
.main-footer {
    background-color: #d2b48c !important;
    color: #fff;
}

.main-footer h4,
.main-footer .footer-column ul li a,
.main-footer .newsletter p,
.main-footer input,
.main-footer button {
    color: #1a1a1a !important;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .split-banner {
        flex-direction: column;
        height: auto;
    }

    .split-banner.reverse-mobile {
        flex-direction: column-reverse;
    }

    .split-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        height: auto;
        min-height: 400px;
    }

    .split-col.image-col {
        min-height: auto;
    }

    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .social-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-title.white {
        font-size: 32px !important;
    }

    .hero-subtitle.white {
        font-size: 13px;
        max-width: 95%;
    }

    .header-icons {
        gap: 10px;
    }

    .language-dropdown {
        margin-right: 5px;
    }

    .category-filters {
        flex-wrap: wrap;
        gap: 10px;
    }

    .newsletter-inline-form {
        flex: 1;
        width: 100%;
    }

    .special-badge {
        left: 50%;
        transform: translateX(-50%) rotate(-15deg);
        top: -45px;
    }

    .product-title {
        font-size: 12px;
    }
}

/* --- Dark Tropical Hero Updates --- */
.hero-section.dark-tropical-hero {
    position: relative;
    height: 90vh;
    /* Full viewport height */
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Darken bg a bit to pop models/text */
}

/* Models */
.hero-model {
    position: absolute;
    bottom: 0;
    z-index: 1;
    height: 85%;
    /* Adjust based on image aspect ratio */
    width: auto;
}



.hero-model img {
    height: 100%;
    width: auto;
    object-fit: contain;
    margin-right: -220px;
}

.hero-model.left {
    left: 2%;
    height: 135%;
    bottom: -350px;
    width: 550px;
    overflow: hidden;
}

.hero-model.right {
    right: 5%;
}

/* Centered Content */
.hero-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 60%;
    max-width: 600px;
}

.hero-logo .logo-img {
    max-width: 180px;
    margin-bottom: 20px;
    /* Invert logo color to white via filter if it is black PNG */
    filter: brightness(0) invert(1);
}

.hero-title.white {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle.white {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #f1f1f1;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-btn-container {
    display: flex;
    justify-content: center;
}

.btn-shop-now {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    /* Transparent as per ref */
}

.btn-shop-now:hover {
    background-color: #fff;
    color: #000;
}


/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-model.left {
        left: -10%;
        /* Shift out slightly */
    }

    .hero-model.right {
        right: -10%;
    }

    .hero-title.white {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero-model {
        display: none;
        /* Hide models on mobile to focus on text/bg */
    }

    .hero-content-centered {
        width: 90%;
    }
}

/* --- New Background & Cinematic Shadow --- */
.hero-overlay-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cinematic gradient: subtle dark teal/blue vignette */
    background: radial-gradient(circle at center, rgba(10, 40, 50, 0.1) 0%, rgba(5, 20, 30, 0.4) 80%);
    z-index: 1;
    /* Above bg image, below models */
    pointer-events: none;
}

/* Adjust models to be above shadow */
.hero-model {
    z-index: 2;
}

/* Adjust content to be above models */
.hero-content-centered {
    z-index: 3;
}

/* --- YITH Wishlist Button Customization --- */
.custom-wishlist-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 54px;
    margin-left: 10px;
    vertical-align: top;
    box-sizing: border-box;
}

/* Base Button Style (Add, Browse, Exists) */
.custom-wishlist-container a,
.custom-wishlist-container .yith-wcwl-add-to-wishlist-button a,
.custom-wishlist-container .yith-wcwl-wishlistaddedbrowse a,
.custom-wishlist-container .yith-wcwl-wishlistexistsbrowse a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 54px !important;
    height: 54px !important;
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    position: relative;
    opacity: 1 !important;
    font-size: 0 !important;
    /* Hide any rogue text */
    color: transparent !important;
    /* Hide text color */
}

/* Icons */
.custom-wishlist-container a i,
.custom-wishlist-container a svg,
.custom-wishlist-container .yith-wcwl-icon {
    font-size: 24px !important;
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    color: #000 !important;
    /* Force icon color */
    fill: none;
    stroke: #000;
}

/* Hover State */
.custom-wishlist-container a:hover {
    border-color: #000 !important;
}

/* Succes/Added State - Filled Heart */
.custom-wishlist-container .yith-wcwl-wishlistaddedbrowse a,
.custom-wishlist-container .yith-wcwl-wishlistexistsbrowse a {
    border-color: #000 !important;
}

.custom-wishlist-container .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon,
.custom-wishlist-container .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon {
    fill: #000 !important;
    /* Solid black fill */
    stroke: none !important;
}

/* Hide specific labels if present */
.custom-wishlist-container .yith-wcwl-add-to-wishlist-button__label,
.custom-wishlist-container .feedback {
    display: none !important;
}

/* Fix vertical alignment with add to cart */
.custom-wishlist-container .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
}

/* Mobile Hero Background Update - Removed to match PC view */

/* Hide duplicate unstyled swatch container */
.swatch-container {
    display: none !important;
}

/* --- My Account Page Styles --- */

.woocommerce-account .woocommerce {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 20px;
    }
}

/* Navigation Sidebar */
.woocommerce-MyAccount-navigation {
    flex: 0 0 250px;
    background: #fff;
    border-right: 1px solid #eee;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 20px;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 5px;
    border-bottom: 1px solid #f9f9f9;
}

.woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.woocommerce-MyAccount-navigation li a:hover {
    background-color: #f7f7f7;
    color: #000;
    padding-left: 20px;
    /* Subtle slide effect */
}

.woocommerce-MyAccount-navigation li.is-active a {
    background-color: #f0f0f0;
    color: #000;
    font-weight: 600;
    border-left: 3px solid #000;
    /* Sidebar accent */
}

/* Account Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    min-height: 400px;
}

.woocommerce-MyAccount-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: none;
    color: #555;
}

/* Dashboard Greeting Styling */
.woocommerce-MyAccount-content p:first-child {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Login/Register Forms (if active) */
.woocommerce-form-login,
.woocommerce-form-register {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.woocommerce-form-row {
    margin-bottom: 15px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce-input-wrapper input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover {
    background-color: #333;
}

/* --- WooCommerce Cart Block Styles (High Specificity) --- */

body .wp-block-woocommerce-cart {
    padding: 60px 0;
    font-family: inherit;
}

/* PC View: 90% Width Constraint */
@media (min-width: 1024px) {
    body .wp-block-woocommerce-cart {
        max-width: 90%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Cart Table Headers */
body .wc-block-cart-items__header span {
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600 !important;
    color: #555 !important;
}

body .wc-block-cart-items__header {
    border-bottom: 2px solid #000 !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px !important;
}

/* Product Row Styling */
body .wc-block-cart-items .wc-block-cart-item {
    border-bottom: 1px solid #eee !important;
    padding: 30px 0 !important;
}

body .wc-block-cart-item__image {
    width: 120px !important;
    max-width: 120px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid #eee;
}

body .wc-block-cart-item__product-name {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    margin-bottom: 10px !important;
    display: block;
}

body .wc-block-cart-item__prices {
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #000 !important;
}

/* Quantity Selector - Minimalist */
body .wc-block-components-quantity-selector {
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    overflow: hidden;
    height: 40px !important;
    min-width: 100px !important;
    background: #fff !important;
}

body .wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
    border: none !important;
    background: transparent !important;
    font-weight: 600 !important;
    color: #000 !important;
}

body .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    background: transparent !important;
    color: #000 !important;
    opacity: 1 !important;
}

body .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover {
    background: #f0f0f0 !important;
}

/* Remove Item Link */
body .wc-block-cart-item__remove-link {
    font-size: 11px !important;
    color: #999 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: underline !important;
    margin-top: 15px !important;
}

body .wc-block-cart-item__remove-link:hover {
    color: #000 !important;
}

/* Totals Sidebar Card */
body .wc-block-cart__totals-wrapper {
    background: #fafafa !important;
    padding: 40px !important;
    border: none !important;
    position: sticky;
    top: 100px;
}

body .wc-block-cart__totals-title {
    font-size: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 30px !important;
    border-bottom: 1px solid #ddd !important;
    padding-bottom: 20px !important;
    font-weight: 400 !important;
}

/* Total Items Rows */
body .wc-block-components-totals-item {
    margin-bottom: 20px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #333 !important;
}

/* Grand Total */
body .wc-block-components-totals-item.total {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #000 !important;
    border-top: 2px solid #000 !important;
    padding-top: 20px !important;
    margin-top: 20px !important;
}

/* Checkout Button */
body .wc-block-cart__submit-button,
body .checkout-button,
body .wc-block-components-checkout-button {
    background-color: #000 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: 18px 30px !important;
    border-radius: 0 !important;
    letter-spacing: 2px !important;
    width: 100% !important;
    margin-top: 30px !important;
    border: 1px solid #000 !important;
    display: block !important;
    text-align: center !important;
    text-decoration: none !important;
}



body .wc-block-cart__submit-button:hover,
body .checkout-button:hover,
body .wc-block-components-checkout-button:hover {
    background-color: #fff !important;
    color: #000 !important;
}

/* --- WooCommerce Checkout Block Styles --- */

body .wp-block-woocommerce-checkout {
    padding: 60px 0;
    font-family: inherit;
}

/* Desktop Width Constraint */
@media (min-width: 1024px) {
    body .wp-block-woocommerce-checkout {
        max-width: 90%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Mobile Adjustments for Checkout */
@media (max-width: 767px) {
    body .wp-block-woocommerce-checkout {
        padding: 30px 20px !important;
        max-width: 100% !important;
    }

    body .wc-block-components-sidebar-layout .wc-block-components-main {
        padding-right: 0 !important;
    }

    body .wc-block-components-title,
    body .wc-block-components-checkout-step__title,
    body .wc-block-components-panel__title {
        font-size: 16px !important;
        margin-bottom: 20px !important;
        letter-spacing: 1px !important;
    }

    body .wc-block-components-text-input input[type="text"],
    body .wc-block-components-text-input input[type="email"],
    body .wc-block-components-text-input input[type="tel"],
    body .wc-block-components-combobox-control input {
        height: 45px !important;
        font-size: 16px !important;
        /* Prevents zoom on iOS */
    }

    /* Stack First/Last Name inputs on mobile if they aren't already */
    .wc-block-components-address-form__name {
        flex-direction: column;
    }

    .wc-block-components-address-form__name .wc-block-components-text-input {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    /* Order Summary on Mobile */
    body .wc-block-components-sidebar {
        padding: 25px 20px !important;
        margin-top: 30px;
        border-left: none !important;
        border-top: 1px solid #eee;
        background: #f9f9f9 !important;
    }
}

/* Section Headings */
body .wc-block-components-title,
body .wc-block-components-checkout-step__title,
body .wc-block-components-panel__title {
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 500 !important;
    color: #000 !important;
    margin-bottom: 25px !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

/* Form Inputs */
body .wc-block-components-text-input input[type="text"],
body .wc-block-components-text-input input[type="email"],
body .wc-block-components-text-input input[type="tel"],
body .wc-block-components-combobox-control input {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
    padding: 12px 15px !important;
    font-size: 14px;
    height: 48px !important;
    background-color: #fcfcfc !important;
    transition: all 0.3s ease;
}

body .wc-block-components-text-input input:focus,
body .wc-block-components-combobox-control input:focus {
    border-color: #000 !important;
    background-color: #fff !important;
    outline: none !important;
    box-shadow: 0 0 0 1px #000 !important;
}

body .wc-block-components-text-input label {
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #777 !important;
}

/* Order Summary Sidebar */
body .wc-block-components-sidebar {
    background: #fafafa !important;
    padding: 40px !important;
    border-left: 1px solid #eee;
}

body .wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: 60px;
}

/* Order Notes */
body .wc-block-components-textarea-control textarea {
    border: 1px solid #ddd !important;
    background-color: #fcfcfc;
    border-radius: 0;
    padding: 15px;
}

/* Payment Methods */
body .wc-block-components-radio-control__label {
    font-weight: 500 !important;
    font-size: 15px !important;
}

body .wc-block-components-radio-control__description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Place Order Button */
body .wc-block-components-checkout-place-order-button {
    background-color: #000 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: 18px 30px !important;
    border-radius: 0 !important;
    letter-spacing: 2px !important;
    font-size: 14px !important;
    border: 1px solid #000 !important;
    transition: all 0.3s ease;
    margin-top: 20px;
}

body .wc-block-components-checkout-place-order-button:hover {
    background-color: #fff !important;
    color: #000 !important;
}

/* Totals Summary */
body .wc-block-components-totals-item__value {
    font-family: inherit !important;
    font-weight: 600;
}


body .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 20px !important;
    color: #000;
}

/* --- WooCommerce Shop / Archive Page Styles --- */

/* 1. Main Container Layout */
body.post-type-archive-product #content,
body.tax-product_cat #content,
body.post-type-archive-product .site-main,
body.tax-product_cat .site-main {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

@media (min-width: 1400px) {

    body.post-type-archive-product #content,
    body.tax-product_cat #content {
        max-width: 85%;
    }
}

/* 2. Hero Section Refinement */
body.archive .yaropa-hero-widget,
body.archive .entry-header {
    margin-bottom: 40px;
    text-align: center;
}

body.archive .page-title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: none;
    /* Hiding default title to use Hero Widget if available, or cleaner look */
}

/* 3. Filter & Sort Bar Styling */
.woocommerce-products-header+.woocommerce-ordering,
.storefront-sorting,
.woocommerce-ordering {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
    /* Align sort to right */
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.woocommerce-ordering select {
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 30px 10px 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
    background-size: 10px;
}

/* 4. Product Grid Layout */
ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px !important;
}

@media (max-width: 1024px) {
    ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* 5. Product Card Styling */
ul.products li.product {
    margin-bottom: 20px !important;
    width: 100% !important;
    /* Override WooCommerce default width calculations */
    float: none !important;
}

ul.products li.product a img {
    margin-bottom: 15px !important;
    transition: transform 0.5s ease;
    object-fit: cover;
    aspect-ratio: 4/5;
    /* Modern Portrait Ratio */
    width: 100%;
}

ul.products li.product a:hover img {
    transform: scale(1.03);
}

ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400 !important;
    margin-bottom: 5px;
    color: #000;
    padding-top: 10px;
}

ul.products li.product .price {
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    color: #555 !important;
    font-weight: 500 !important;
    display: block;
    margin-bottom: 10px;
}

ul.products li.product .price del {
    color: #aaa !important;
    margin-right: 5px;
    font-size: 13px !important;
}

ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 600;
}

ul.products li.product .button.add_to_cart_button {
    background-color: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    padding: 10px 20px !important;
    text-transform: uppercase;
    font-size: 11px !important;
    letter-spacing: 1px;
    font-weight: 600 !important;
    border-radius: 0 !important;
    transition: all 0.3s;
    margin-top: 5px;
    display: inline-block;
}

ul.products li.product .button.add_to_cart_button:hover {
    background-color: #000 !important;
    color: #fff !important;
}

/* 6. Badges (Sale / New) */
.woocommerce span.onsale {
    background-color: #000 !important;
    color: #fff !important;
    font-size: 10px !important;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1 !important;
    border-radius: 0 !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    position: absolute;
    z-index: 9;
}

/* 7. Pagination */
.woocommerce-pagination {
    margin-top: 60px;
    text-align: center;
}

.woocommerce-pagination ul {
    border: none !important;
    display: inline-flex !important;
    gap: 10px;
}

.woocommerce-pagination ul li {
    border: none !important;
    overflow: visible !important;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    padding: 10px 15px !important;
    font-size: 14px !important;
    background: transparent !important;
    color: #000 !important;
    border: 1px solid transparent !important;
    font-weight: 500;
}

.woocommerce-pagination ul li span.current {
    border-bottom: 2px solid #000 !important;
}


.woocommerce-pagination ul li a:hover {
    background-color: #f5f5f5 !important;
}

/* --- Specific Shop Header Styles (Overrides) --- */

/* Hide the duplicate 'All Products' title if Hero is present */
.shop-header h2.section-title {
    display: none !important;
}

/* Filter Bar Layout */
.shop-header .filter-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 40px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #eee !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

/* Filter Buttons */
.shop-header .filter-group {
    display: flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.shop-header .filter-btn {
    background: transparent !important;
    border: 1px solid #ddd !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s !important;
    border-radius: 0 !important;
}

.shop-header .filter-btn:hover {
    border-color: #000 !important;
    background-color: #f9f9f9 !important;
}

.shop-header .filter-btn ion-icon {
    font-size: 14px !important;
    color: #999 !important;
}

/* Sort Group */
.shop-header .sort-group {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.shop-header .sort-label {
    font-size: 13px !important;
    color: #777 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.shop-header .sort-select {
    border: none !important;
    background: transparent !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    padding: 5px 25px 5px 5px !important;
    outline: none !important;
    /* Custom arrow */
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0px center !important;
    background-size: 8px !important;
}

/* Mobile Adjustments for Shop Header */
@media (max-width: 768px) {
    .shop-header .filter-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .shop-header .filter-group {
        width: 100% !important;
        overflow-x: auto !important;
        padding-bottom: 5px !important;
    }

    .shop-header .filter-btn {
        white-space: nowrap !important;
    }

    .shop-header .sort-group {
        width: 100% !important;
        justify-content: flex-end !important;
        border-top: 1px solid #f0f0f0 !important;
        padding-top: 15px !important;
    }
}

/* --- Final Responsiveness Fixes for Full Page --- */
@media (max-width: 480px) {
    :root {
        --spacing-container: 20px;
    }

    .hero-title.white {
        font-size: 32px !important;
    }

    .hero-subtitle.white {
        font-size: 13px;
        max-width: 100%;
    }

    .section-title {
        font-size: 28px !important;
        margin-bottom: 30px;
    }

    .product-grid,
    .occasion-grid,
    .social-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .product-title {
        font-size: 11px !important;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .product-price,
    .sale-price,
    .original-price {
        font-size: 11px !important;
    }

    .product-badges {
        top: 8px;
        left: 8px;
        gap: 4px;
    }

    .badge {
        font-size: 9px;
        padding: 4px 8px;
    }

    .product-image {
        margin-bottom: 12px;
    }

    .add-to-cart-btn {
        display: none !important;
        /* Hide on mobile to maintain clean professional look, common in luxury mobile sites */
    }

    .split-content {
        max-width: 100% !important;
        padding: 40px 20px !important;
    }

    .btn-overlay-bottom {
        white-space: nowrap !important;
        border-radius: 15px !important;
        padding: 8px 15px !important;
        font-size: 10px !important;
        width: auto !important;
        min-width: 100px;
        bottom: 15px !important;
    }

    .newsletter-form,
    .newsletter-inline-form {
        max-width: 100% !important;
    }

    .footer-container {
        gap: 40px;
    }

    .top-bar-content {
        font-size: 9px;
    }

    /* Fix any horizontal overflow */
    body,
    html {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

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

    .btn-secondary {
        padding: 12px 30px;
        width: 100%;
    }

    .category-filters {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        flex: 1;
        min-width: 140px;
        padding: 8px 15px;
    }
}