/*
Theme Name: Perfumes Silent Luxury
Theme URI: https://example.com/perfumes-silent-luxury
Author: Antigravity
Author URI: https://google.com
Description: A minimalist, standalone WordPress theme for silent luxury perfumes.
Version: 1.2
Text Domain: perfumes-silent-luxury
*/

:root {
    --bg-color: #F9F9F9;
    --text-color: #1a1a1a;
    --accent-color: #C5A059;
    --footer-bg: #111111;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --border-color: #e5e5e5;
    --ease-luxury: cubic-bezier(0.2, 1, 0.3, 1);
    --anim-duration: 1s;
}

/* =========================================
   Base Styles & Reset
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 1rem;
    line-height: 1.2;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Title Utility */
.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================================
   Header & Navigation
   ========================================= */
.site-header {
    background: transparent;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(249, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Navigation Lists */
.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Utilities (Cart/User) */
.header-utilities {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.utility-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: color 0.3s;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 1px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-navigation li {
    margin: 1.5rem 0;
}

.mobile-navigation a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    transition: color 0.3s ease;
}

.mobile-navigation a:hover {
    color: var(--accent-color);
}

/* Header/Nav Responsive */
.main-navigation {
    display: none;
}

/* Mobile Default */

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .main-navigation {
        display: block;
    }

    .site-header {
        background: transparent;
    }
}

/* =========================================
   Home: Hero Section & Slider
   ========================================= */
.hero-section {
    height: 80vh;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

@media (min-width: 768px) {
    .hero-section {
        height: 90vh;
    }
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s var(--ease-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 1rem;
}

h1.hero-title {
    font-size: 3rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    font-weight: 400;
}

@media (min-width: 768px) {
    h1.hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #fff;
    color: var(--text-color);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* =========================================
   Home: Dual Category Navigation
   ========================================= */
.dual-nav-section {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile Stack */
    width: 100%;
}

@media (min-width: 768px) {
    .dual-nav-section {
        grid-template-columns: 1fr 1fr;
    }
}

.nav-card {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.nav-card.for-him {
    background-color: #f0f0f0;
    background-image: url('assets/images/him.jpg');
}

.nav-card.for-her {
    background-color: #e8e8e8;
    background-image: url('assets/images/her.jpg');
}

.nav-content {
    text-align: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 3rem;
    transition: transform 0.4s ease;
}

.nav-content h2.nav-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 3px;
}

.nav-card:hover .nav-content {
    transform: translateY(-5px);
}

/* =========================================
   Home: Brand Narrative
   ========================================= */
.brand-narrative {
    padding: 6rem 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.narrative-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.narrative-content p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 300;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .narrative-content h3 {
        font-size: 2rem;
    }
}

/* =========================================
   Home: Curated Collection (Slider)
   ========================================= */
.curated-collection {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

/* Fallback Grid before JS */
.woocommerce ul.products.product-source {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .woocommerce ul.products.product-source {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-source.is-init {
    display: none;
}

/* Slider Logic (CSS Grid Stack Method) */
.product-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* No min-height needed */
}

.product-slider-viewport {
    display: grid;
    grid-template-areas: "slide";
    position: relative;
    width: 100%;
}

.product-slide-page {
    grid-area: slide;
    opacity: 0;
    transition: opacity 1s var(--ease-luxury);
    z-index: 0;
    pointer-events: none;
    /* Internal Grid */
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    justify-items: center;
    width: 100%;
    /* Explicit width */
}

@media (min-width: 768px) {
    .product-slide-page {
        grid-template-columns: repeat(4, 1fr);
        padding: 0;
    }
}

.product-slide-page.active {
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
}

/* Slider Dots */
.product-slider-dots {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;

    /* RESET Hero Styles because we shared the .slider-dots class */
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

.product-slider-dots .dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider-dots .dot.active {
    background: #1a1a1a !important;
    transform: scale(1.3);
}

/* =========================================
   WooCommerce Global & Components
   ========================================= */

/* Main Container Spacing for All Woo Pages */
.woocommerce-page .container {
    padding-top: 1.6rem;
    padding-bottom: 4rem;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0 1.6rem;
    border-bottom: 1px solid #ececec;
}

.woocommerce-breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: var(--text-color);
}

.woocommerce-breadcrumb span {
    margin: 0 0.5rem;
}

/* Product Card Styling (Global) */
.woocommerce ul.products li.product,
.product-slide-page .product {
    text-align: center;
    position: relative;
    width: 100%;
    list-style: none;
    margin: 0 !important;
}

.woocommerce ul.products li.product img,
.product-slide-page .product img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.6s var(--ease-luxury);
}

.woocommerce ul.products li.product:hover img,
.product-slide-page .product:hover img {
    transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-slide-page .product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.woocommerce ul.products li.product .price,
.product-slide-page .product .price {
    font-family: var(--font-body);
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product .price del,
.product-slide-page .product .price del {
    opacity: 0.5;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins,
.product-slide-page .product .price ins {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-color);
}

/* Product Card Button (Outline) */
.woocommerce ul.products li.product .button,
.product-slide-page .product .button {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.woocommerce ul.products li.product .button:hover,
.product-slide-page .product .button:hover {
    background: var(--text-color);
    color: #fff;
    border-color: var(--text-color);
}

/* WooCommerce Block Buttons (Global Override) */
.wc-block-components-button,
.wp-element-button,
.wc-block-components-checkout-place-order-button {
    background: var(--text-color) !important;
    color: #fff !important;
    border: 1px solid var(--text-color) !important;
    padding: 1rem 2rem !important;
    font-family: var(--font-body) !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.15em !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer;
    font-weight: 400 !important;
    /* Ensure text container inherits */
}

.wc-block-components-button:hover,
.wp-element-button:hover,
.wc-block-components-checkout-place-order-button:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.wc-block-components-button__text {
    font-family: inherit !important;
    font-size: inherit !important;
    text-transform: inherit !important;
    letter-spacing: inherit !important;
}

/* Desktop Hover Effect for Button */
/* Desktop Hover Effect for Button - REMOVED per user feedback (buttons always visible on desktop too) */
/*
@media (min-width: 1024px) {
   ... removed opacity:0 styles ...
}
*/

/* Toast Notifications (Message/Info/Error) */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: fixed !important;
    top: 100px;
    right: 20px;
    z-index: 9999;
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 1.5rem 2rem !important;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: 4px solid var(--text-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: var(--font-body);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    animation: slideInToast 0.5s var(--ease-luxury) forwards;
    border-radius: 0 !important;
}

/* =========================================
   Values Section (Trust Signals)
   ========================================= */
.values-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
    background-color: #111;
    /* Dark Luxury Background */
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        align-items: flex-start;
    }
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.value-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    /* Gold Icon */
    line-height: 1;
    opacity: 1;
    /* Full opacity for contrast */
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: #fff;
    /* White Title */
}

.value-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ccc;
    /* Light Grey Text */
    line-height: 1.8;
    max-width: 320px;
    margin: 0 auto;
}

/* =========================================
   Map Section
   ========================================= */
.map-section {
    padding-top: 6rem;
    padding-bottom: 0;
    /* Flush with footer or minimal gap */
}

.map-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Subtler heading */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    filter: grayscale(100%);
    /* Elegant grayscale map */
    transition: filter 1.2s var(--ease-luxury);
}

.map-container:hover {
    filter: grayscale(0%);
    /* Color on hover */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* =========================================
   Footer Update (4 Columns)
   ========================================= */
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
        /* Brand | Links | Contact | Social */
    }
}

.contact-col p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-col a:hover {
    color: #ccc;
    border-color: #ccc;
}

.woocommerce-info {
    border-left-color: #888 !important;
}

.woocommerce-error {
    border-left-color: #d9534f !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    display: none !important;
}

.woocommerce-message .button,
.woocommerce-message a.button {
    float: none !important;
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    padding: 0.5rem 1.2rem !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 0 !important;
}

@keyframes slideInToast {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@media (max-width: 768px) {

    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        top: auto;
        bottom: 20px;
        right: 5%;
        left: 5%;
        flex-direction: column;
        text-align: center;
    }

    .woocommerce-message .button {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   WooCommerce Archive / Shop Page
   ========================================= */
.woocommerce-products-header__title.page-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.shop-header-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding: 10px 0 30px;
}

.woocommerce-result-count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #999;
    margin: 0;
}

.woocommerce-ordering {
    margin: 0;
}

.woocommerce-ordering select {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--text-color);
    border-radius: 0;
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 1em;
}

/* Archive Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 0 !important;
    padding: 0;
}

@media (min-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Pagination */
.woocommerce-pagination {
    text-align: center;
    margin-top: 4rem;
}

.woocommerce-pagination ul {
    display: inline-flex;
    list-style: none;
    border: 1px solid #ddd;
    padding: 0;
}

.woocommerce-pagination ul li {
    border-right: 1px solid #ddd;
}

.woocommerce-pagination ul li:last-child {
    border-right: none;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-body);
}

.woocommerce-pagination ul li span.current {
    background: var(--text-color);
    color: #fff;
}

/* =========================================
   WooCommerce Single Product Page
   ========================================= */
.single-product .product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 0;
}

@media (min-width: 992px) {
    .single-product .product {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Gallery */
.woocommerce-product-gallery {
    width: 100% !important;
    position: relative;
}

.woocommerce-product-gallery img {
    aspect-ratio: 1 / 1;
}

.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 100;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery__trigger:hover {
    transform: scale(1.1);
}

.woocommerce-product-gallery__trigger img {
    display: none !important;
}

.woocommerce-product-gallery__trigger::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11' cy='11' r='8'%3e%3c/circle%3e%3cline x1='21' y1='21' x2='16.65' y2='16.65'%3e%3c/line%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Summary Column */
.summary.entry-summary {
    width: 100% !important;
    padding-top: 0;
}

.product_title.entry-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.summary p.price {
    font-size: 1.25rem;
    margin-bottom: 1.6rem;
}

.woocommerce-product-details__short-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Add to Cart Area */
.cart {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Quantity Buttons (+/-) */
.quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
    height: 43px;
}

.quantity .qty {
    border: none;
    width: 2.5rem;
    text-align: center;
    /* Center text for spacing */
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.5rem;
    /* Remove default spinners (Webkit/Firefox) */
    -moz-appearance: textfield;
}

.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    width: 2rem;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-btn.minus {
    border-right: 1px solid #eee;
}

.qty-btn.plus {
    border-left: 1px solid #eee;
}

.single_add_to_cart_button.button {
    background: transparent !important;
    border: 1px solid var(--text-color) !important;
    color: var(--text-color) !important;
    padding: 0.8rem 1rem !important;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
}

.single_add_to_cart_button.button:hover {
    background: var(--text-color) !important;
    color: #fff !important;
}

.product_meta {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.6rem;
}

.product_meta a {
    color: var(--text-color);
}

/* Tabs */
.woocommerce-tabs {
    margin: 4rem 0;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid #eee;
}

.woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    padding: 0 0 1rem 0;
}

.woocommerce-tabs ul.tabs li a {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active {
    border-bottom: 2px solid var(--text-color);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--text-color);
}

.woocommerce-Tabs-panel {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-body);
    line-height: 1.8;
    color: #555;
    text-align: center;
    /* Generally centering content adds to the feel */
}

/* Hide Reviews Tab */
#tab-reviews,
li.reviews_tab {
    display: none !important;
}

/* Hide the source list when slider is initialized (Global) */
.product-slider-source {
    display: none !important;
}

/* Hide the added to cart message */
a.added_to_cart.wc-forward {
    display: none;
}

/* =========================================
   WooCommerce Cart Page
   ========================================= */

/* Use the Page Title style from Global, but Cart Page needs specific checks? No, global .entry-title works. */

/* Cart Table (Classic Shortcode support just in case, plus Block below) */
.woocommerce-cart table.shop_table {
    border: none !important;
    border-collapse: collapse !important;
    width: 100%;
}

.woocommerce-cart table.shop_table th {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #999;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee !important;
}

.woocommerce-cart table.shop_table td {
    padding: 2rem 0;
    border-bottom: 1px solid #eee !important;
}

/* Coupon */
.coupon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.coupon input.input-text {
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    background: transparent;
    padding: 0.5rem 0 !important;
}

.coupon button.button {
    background: transparent !important;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    text-transform: uppercase;
}

/* Cart Totals */
.cart-collaterals {
    margin-top: 4rem;
    display: flex;
    justify-content: flex-end;
}

.cart_totals {
    width: 100%;
    max-width: 400px;
    background: #fcfcfc;
    padding: 3rem;
    border: 1px solid #f0f0f0;
}

.cart_totals h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 1rem;
    display: inline-block;
}

/* =========================================
   WooCommerce Cart Block Support
   ========================================= */
.wp-block-woocommerce-cart-order-summary-block {
    padding: 2rem 1.2rem 0 !important;
    border: 1px solid #ececec !important;
}

.wp-block-woocommerce-cart {
    font-family: var(--font-body);
}

.wc-block-cart-items__header,
.wc-block-cart-items__row {
    border-bottom: 1px solid #ececec;
}

.wc-block-components-product-name {
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    color: var(--text-color) !important;
    text-transform: uppercase;
    text-decoration: none !important;
}

/* Block Quantity Selector */
.wc-block-components-quantity-selector {
    border: 1px solid #ececec !important;
    background: #fff;
    border-radius: 0 !important;
}

.wc-block-components-quantity-selector__input {
    background: transparent !important;
    border: none !important;
}

.wc-block-components-quantity-selector__button {
    background: transparent !important;
    color: var(--text-color) !important;
}

/* Block Totals */
.wp-block-woocommerce-cart-order-summary-block {
    background: #fcfcfc;
    padding: 2rem;
    border: 1px solid #f0f0f0;
}

.wc-block-cart__totals-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--text-color);
    padding-bottom: 1rem;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Checkout Button */
.wc-block-cart__submit-button,
.wc-proceed-to-checkout .checkout-button {
    background: var(--text-color) !important;
    color: #fff !important;
    text-transform: uppercase;
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.15em !important;
    border-radius: 0 !important;
    padding: 1.2rem 2rem !important;
    text-align: center;
    display: block;
    width: 100%;
}

.wc-block-cart__submit-button:hover,
.wc-proceed-to-checkout .checkout-button:hover {
    background: #000 !important;
}

/* =========================================
   WooCommerce My Account Page (Login & Dashboard)
   ========================================= */

/* Login / Register Layout */
#customer_login {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    #customer_login {
        flex-direction: row;
        gap: 6rem;
    }

    #customer_login .u-column1,
    #customer_login .u-column2 {
        flex: 1;
    }
}

/* Form Styles Override (Global Clean inputs) */
.woocommerce-form-login,
.woocommerce-form-register {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid #f0f0f0;
    background: #fcfcfc;
}

.woocommerce-form-row {
    margin-bottom: 2rem;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce-Input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: transparent;
    outline: none;
    transition: border 0.3s ease;
    font-family: var(--font-body);
}

.woocommerce-Input:focus {
    border-color: var(--text-color);
}

/* Remember Me & Lost Password */
.woocommerce-form-login__rememberme {
    margin: 1rem 0;
    display: block;
}

.woocommerce-LostPassword {
    margin-top: 1rem;
    font-size: 0.85rem;
}

.woocommerce-LostPassword a {
    color: #999;
    text-decoration: underline;
}

/* My Account Dashboard Layout */
.woocommerce-MyAccount-navigation {
    margin-bottom: 3rem;
}

.woocommerce-MyAccount-content {
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .woocommerce-account .woocommerce {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Dashboard Navigation Links */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #f0f0f0;
}

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

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

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation a:hover {
    color: var(--text-color);
    background: #f9f9f9;
    padding-left: 2rem;
    /* Subtle shift */
    border-left: 3px solid var(--text-color);
}

/* Dashboard Content */
.woocommerce-MyAccount-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content a {
    color: var(--text-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* Edit Account Form Styles */
.woocommerce-EditAccountForm fieldset {
    border: 1px solid #f0f0f0;
    padding: 2rem;
    margin: 3rem 0;
    background: #fcfcfc;
}

.woocommerce-EditAccountForm fieldset legend {
    font-family: var(--font-heading);
    color: var(--text-color);
    text-transform: uppercase;
    padding: 0 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* Password Input Wrapper */
.woocommerce-form-row .password-input {
    display: block;
    position: relative;
}

/* Show Password Toggle Button */
.woocommerce-form-row .show-password-input {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0;
    width: auto;
    height: auto;
    outline: none;
}

.woocommerce-form-row .show-password-input:hover {
    color: var(--text-color);
    text-decoration: underline;
}

/* Ensure the button has content if the theme/plugin relies on CSS for the icon/text */
.woocommerce-form-row .show-password-input::after {
    content: "Ver";
    /* Fallback text if icon missing */
}

/* Save Changes Button */
.woocommerce-EditAccountForm .woocommerce-Button,
.woocommerce-MyAccount-content .button {
    background: var(--text-color) !important;
    color: #fff !important;
    border: 1px solid var(--text-color) !important;
    padding: 1rem 2rem !important;
    font-family: var(--font-body) !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.15em !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover,
.woocommerce-MyAccount-content .button:hover {
    background: #000 !important;
    border-color: #000 !important;
    transform: translateY(-2px);
}

/* =========================================
   Page Title Override (Cart/Checkout)
   ========================================= */
.wp-block-woocommerce-checkout {
    padding-top: 0;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    margin-top: 0;
}

/* Specific selector for these pages if needed, though Global h1 usually covers */
.page .entry-header .entry-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

/* =========================================
   Footer Area
   ========================================= */
.site-footer {
    background-color: var(--footer-bg);
    color: #888;
    padding: 6rem 0 2rem;
    font-size: 0.9rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer-brand {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-col h5 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #888;
}

.footer-menu a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-links a {
    color: #888;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

/* =========================================
   Animations (Reveal System)
   ========================================= */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--anim-duration) var(--ease-luxury), transform var(--anim-duration) var(--ease-luxury);
    will-change: opacity, transform;
}

.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Header Load Animation */
.site-header .site-branding,
.main-navigation li,
.header-utilities .utility-icon {
    opacity: 0;
    animation: headerFadeIn 1s var(--ease-luxury) forwards;
}

.site-header .site-branding {
    animation-delay: 0.1s;
}

.main-navigation li:nth-child(1) {
    animation-delay: 0.2s;
}

.main-navigation li:nth-child(2) {
    animation-delay: 0.3s;
}

.main-navigation li:nth-child(3) {
    animation-delay: 0.4s;
}

.main-navigation li:nth-child(4) {
    animation-delay: 0.5s;
}

.header-utilities .user-icon {
    animation-delay: 0.6s;
}

.header-utilities .cart-icon {
    animation-delay: 0.7s;
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Mobile Menu Animation */
.mobile-menu-overlay .mobile-navigation li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
}

.mobile-menu-overlay.is-active .mobile-navigation li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.is-active .mobile-navigation li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.is-active .mobile-navigation li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.is-active .mobile-navigation li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.is-active .mobile-navigation li:nth-child(4) {
    transition-delay: 0.4s;
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Luxury Pulse Animation */
.pulse-luxury {
    animation: pulse-luxury 2s infinite;
}

@keyframes pulse-luxury {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}