/*
Theme Name: Ateliê Lara Dreher
Theme URI: https://atelielaradreher.com.br
Author: Ateliê Lara Dreher
Author URI: https://atelielaradreher.com.br
Description: Tema WordPress premium para e-commerce de alfaiataria masculina de luxo. Design sofisticado em preto, branco e vermelho com animações dinâmicas e layout responsivo.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atelie-lara-dreher
Tags: e-commerce, luxury, fashion, woocommerce, responsive, elegant
*/

:root {
    --noir: #0A0A0A;
    --blanc: #FAFAFA;
    --rouge: #DC143C;
    --rouge-dark: #A01028;
    --bordo: #8B0000;
    --bordo-hover: #A52A2A;
    --grey: #B8B8B8;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--blanc);
    color: var(--noir);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--noir);
    padding: 1rem 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--rouge);
    animation: slideDown 0.6s ease-out;
    gap: 2rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-left {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

.custom-logo-link {
    display: inline-block;
    line-height: 0;
}

.custom-logo {
    height: 45px;
    width: auto;
    max-height: 60px;
    display: block;
    transition: opacity 0.3s ease;
}

.custom-logo:hover {
    opacity: 0.8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--blanc);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--rouge);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.account-link:hover {
    background: var(--rouge);
    border-color: var(--rouge);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.account-link svg {
    width: 18px;
    height: 18px;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: var(--rouge);
    border-radius: 8px;
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-link:hover {
    background: var(--rouge-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

.cart-link svg {
    width: 18px;
    height: 18px;
}

.cart-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.header-right-image {
    max-height: 45px;
    width: auto;
    display: block;
}

.main-navigation {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-navigation .nav-menu {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation li a {
    color: var(--blanc);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    display: block;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rouge);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--rouge);
}

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

.cart-link {
    background: var(--rouge);
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--blanc) !important;
    white-space: nowrap;
}

.cart-link:hover {
    background: var(--rouge-dark);
    transform: scale(1.05);
}

.cart-link::after {
    display: none !important;
}

/* WordPress Menu Items */
.main-navigation .nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.main-navigation .menu-item {
    display: inline-block;
}

.main-navigation .menu-item-has-children {
    position: relative;
}

/* Submenu Styles */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--noir);
    border: 1px solid var(--rouge);
    min-width: 200px;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0.5rem;
}

.main-navigation .menu-item-has-children:hover .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    display: block;
    margin: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    white-space: nowrap;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: rgba(220, 20, 60, 0.1);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: var(--rouge);
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--blanc);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    min-height: 90vh;
    position: relative;
    background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    color: var(--rouge);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--blanc);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: var(--rouge);
    color: var(--blanc);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--rouge);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--blanc);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--noir);
    border-color: var(--blanc);
}

.cta-button:hover::before {
    left: 0;
}

.hero-carousel-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 400px;
    z-index: 2;
}

.hero-banner-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.hero-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    z-index: 1;
}

.hero-banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-banner-slide.fading-out {
    opacity: 0;
    z-index: 1;
}

.hero-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(220, 20, 60, 0.03) 2px, rgba(220, 20, 60, 0.03) 4px);
    pointer-events: none;
}

/* Featured Section */
.featured-section {
    padding: 8rem 5%;
    background: var(--blanc);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--rouge);
}

.section-subtitle {
    color: var(--grey);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    font-weight: 300;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--rouge);
}

.product-image {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rouge);
    color: var(--blanc);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 2rem;
}

.product-category {
    color: var(--rouge);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bordo);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.product-name a:hover {
    color: var(--bordo-hover);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bordo);
    margin-bottom: 1.5rem;
}

.product-button {
    width: 100%;
    background: var(--noir);
    color: var(--blanc);
    border: none;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-button:hover {
    background: var(--rouge);
}

/* Categories Section */
.categories-section {
    padding: 8rem 5%;
    background: var(--noir);
    position: relative;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(220, 20, 60, 0.05) 10px, rgba(220, 20, 60, 0.05) 20px);
    pointer-events: none;
}

.categories-section .section-title {
    color: var(--blanc);
}

.categories-section .section-subtitle {
    color: var(--grey);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.category-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.category-card-link {
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: var(--rouge);
    transform: translateY(-5px);
}

.category-card-link:hover {
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rouge);
}

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

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanc);
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--grey);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    background: var(--blanc);
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-image-container {
    flex: 0 0 380px;
    max-width: 380px;
}

.about-store-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-store-photo:hover {
    transform: scale(1.02);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--rouge);
}

.about-text {
    max-width: 100%;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: justify;
}

.about-content p strong {
    color: var(--rouge);
    font-weight: 600;
}

.about-image {
    flex: 1;
    height: 500px;
    background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

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

/* Newsletter */
.newsletter-section {
    padding: 6rem 5%;
    background: var(--rouge);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--blanc);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.newsletter-input {
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--blanc);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: var(--blanc);
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-button {
    background: var(--noir);
    color: var(--blanc);
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    grid-column: 1 / -1;
    border-radius: 8px;
}

.newsletter-button:hover {
    background: var(--blanc);
    color: var(--noir);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Footer */
.site-footer {
    background: var(--noir);
    color: var(--blanc);
    padding: 4rem 5% 2rem;
    border-top: 2px solid var(--rouge);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--blanc);
}

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

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

.footer-section ul li a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--rouge);
}

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

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

.footer-menu li a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-menu li a:hover {
    color: var(--rouge);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blanc);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--rouge);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: var(--grey);
    font-size: 0.9rem;
}

/* WordPress Compatibility */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SINGLE PRODUCT PAGE - LUXURY EDITION
   ============================================ */

.single-product-luxury {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    padding-bottom: 0;
}

.container-product-luxury {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

/* ===== Product Hero Section ===== */
.product-hero-luxury {
    background: white;
    padding: 6rem 0 8rem;
    margin-top: 80px;
    position: relative;
    width: 100%;
}

.product-hero-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.product-hero-luxury .container-product-luxury {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    align-items: start;
}

/* ===== Gallery Section ===== */
.product-gallery-luxury {
    position: sticky;
    top: 100px;
    z-index: 1;
}

.gallery-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sale-badge,
.featured-badge {
    padding: 0.7rem 1.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sale-badge {
    background: linear-gradient(135deg, #DC143C 0%, #c71333 100%);
    color: white;
}

.featured-badge {
    background: linear-gradient(135deg, #FFB800 0%, #ff9500 100%);
    color: white;
}

.product-gallery-luxury .woocommerce-product-gallery {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    background: #fff;
    border: 1px solid #f0f0f0;
}

.product-gallery-luxury .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.product-gallery-luxury .woocommerce-product-gallery__image {
    margin: 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.product-gallery-luxury .woocommerce-product-gallery__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-gallery-luxury .woocommerce-product-gallery__image:hover::before {
    opacity: 1;
}

.product-gallery-luxury .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-gallery-luxury .woocommerce-product-gallery__image:hover img {
    transform: scale(1.08);
}

.product-gallery-luxury .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 1.8rem;
    padding: 0 0.5rem;
}

.product-gallery-luxury .flex-control-thumbs li {
    margin: 0;
    list-style: none;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.product-gallery-luxury .flex-control-thumbs li::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(220, 20, 60, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-gallery-luxury .flex-control-thumbs li:hover {
    transform: translateY(-6px);
    border-color: var(--rouge);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.25);
}

.product-gallery-luxury .flex-control-thumbs li:hover::after {
    opacity: 1;
}

.product-gallery-luxury .flex-control-thumbs li img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-gallery-luxury .flex-control-thumbs li:hover img {
    transform: scale(1.1);
}

.product-gallery-luxury .flex-control-thumbs li img.flex-active {
    border-color: var(--rouge);
}

/* ===== Product Info Section ===== */
.product-info-luxury {
    padding: 1rem 0;
}

.product-breadcrumb-luxury {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-breadcrumb-luxury a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb-luxury a:hover {
    color: var(--rouge);
}

.product-breadcrumb-luxury span {
    margin: 0 0.8rem;
    color: #ddd;
}

.product-title-luxury {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.product-rating-luxury {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f5f5f5;
}

.rating-stars-wrapper .star-rating {
    color: #FFB800;
    font-size: 1.2rem;
}

.rating-link {
    color: #666;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rating-link:hover {
    color: var(--rouge);
    text-decoration: underline;
}

.product-price-luxury {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.product-price-luxury .price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--rouge);
}

.product-price-luxury .price del {
    font-size: 2rem;
    color: #999;
    font-weight: 400;
    margin-right: 1rem;
}

.savings-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-description-luxury {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fafafa;
    border-radius: 16px;
    border-left: 4px solid var(--rouge);
}

.product-description-luxury p {
    margin-bottom: 0.8rem;
}

.product-description-luxury p:last-child {
    margin-bottom: 0;
}

/* ===== Key Features ===== */
.product-features-luxury {
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.product-features-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.product-features-luxury h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 2rem;
    position: relative;
}

.product-features-luxury h3::before {
    content: '✓';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    color: white;
    text-align: center;
    line-height: 32px;
    border-radius: 8px;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.product-features-luxury ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.3rem;
}

.product-features-luxury li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-features-luxury li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.product-features-luxury li svg {
    flex-shrink: 0;
    color: white;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

/* ===== Add to Cart Form ===== */
.product-cart-form-luxury {
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    border: 2px solid #f0f0f0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-cart-form-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rouge) 0%, #ff6b6b 50%, var(--rouge) 100%);
    border-radius: 24px 24px 0 0;
}

.product-cart-form-luxury .variations {
    margin-bottom: 2.5rem;
}

.product-cart-form-luxury .variations tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.product-cart-form-luxury .variations label {
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.product-cart-form-luxury .variations select,
.product-cart-form-luxury .quantity input {
    width: 100%;
    padding: 1.3rem 1.8rem;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    font-size: 1.05rem;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.product-cart-form-luxury .variations select:hover,
.product-cart-form-luxury .quantity input:hover {
    border-color: #d0d0d0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-cart-form-luxury .variations select:focus,
.product-cart-form-luxury .quantity input:focus {
    border-color: var(--rouge);
    background: white;
    outline: none;
    box-shadow: 0 0 0 5px rgba(220, 20, 60, 0.1);
}

.product-cart-form-luxury .quantity {
    margin-bottom: 2.5rem;
}

.product-cart-form-luxury .quantity label {
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.product-cart-form-luxury .single_add_to_cart_button {
    width: 100%;
    background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 1.8rem 2rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-cart-form-luxury .single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--rouge);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.8s ease, height 0.8s ease;
}

.product-cart-form-luxury .single_add_to_cart_button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-cart-form-luxury .single_add_to_cart_button:hover::before {
    width: 600px;
    height: 600px;
}

.product-cart-form-luxury .single_add_to_cart_button:active {
    transform: translateY(-2px);
}

.product-cart-form-luxury .single_add_to_cart_button span {
    position: relative;
    z-index: 1;
}

/* ===== Trust Section ===== */
.product-trust-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--rouge);
}

.trust-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-item strong {
    font-size: 0.95rem;
    color: var(--noir);
    font-weight: 700;
}

.trust-item span {
    font-size: 0.85rem;
    color: #666;
}

/* ===== Product Meta ===== */
.product-meta-luxury {
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item-luxury {
    font-size: 0.9rem;
    color: #666;
}

.meta-item-luxury strong {
    color: var(--noir);
    margin-right: 0.5rem;
    font-weight: 700;
}

.meta-item-luxury a {
    color: var(--rouge);
    text-decoration: none;
    transition: all 0.3s ease;
}

.meta-item-luxury a:hover {
    text-decoration: underline;
}

/* ===== Product Details Section ===== */
.product-details-luxury {
    background: white;
    padding: 8rem 0;
    margin-top: 5rem;
    position: relative;
}

.product-details-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.product-details-luxury .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 3rem;
    border-bottom: 2px solid #f0f0f0;
    padding: 0;
    margin: 0 0 4rem 0;
    list-style: none;
    justify-content: center;
}

.product-details-luxury .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}

.product-details-luxury .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 1.2rem 0;
    color: #999;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.product-details-luxury .woocommerce-tabs ul.tabs li.active a {
    color: var(--rouge);
    border-bottom-color: var(--rouge);
}

.product-details-luxury .woocommerce-tabs ul.tabs li a:hover {
    color: var(--noir);
}

.product-details-luxury .woocommerce-tabs .panel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: #fafafa;
    border-radius: 20px;
}

.product-details-luxury .woocommerce-tabs .panel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--noir);
}

.product-details-luxury .woocommerce-tabs .panel p {
    line-height: 2;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ===== Related Products ===== */
.related.products,
.upsells.products {
    margin-top: 6rem;
    padding-top: 6rem;
    border-top: 2px solid #f5f5f5;
}

.related.products h2,
.upsells.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -1px;
}

.related.products ul.products,
.upsells.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Review List */
.woocommerce-Reviews .commentlist {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.woocommerce-Reviews .comment {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--rouge);
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce-Reviews .comment::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(220, 20, 60, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.woocommerce-Reviews .comment:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.woocommerce-Reviews .comment_container {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.woocommerce-Reviews .avatar {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border: 3px solid var(--rouge);
    box-shadow: 0 4px 10px rgba(220, 20, 60, 0.2);
}

.woocommerce-Reviews .comment-text {
    flex: 1;
}

.woocommerce-Reviews .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.woocommerce-Reviews .woocommerce-review__author {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--noir);
}

.woocommerce-Reviews .woocommerce-review__published-date {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.woocommerce-Reviews .star-rating {
    color: var(--rouge);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.woocommerce-Reviews .star-rating span {
    color: var(--rouge);
}

.woocommerce-Reviews .description p {
    line-height: 1.9;
    color: #555;
    margin: 0;
    font-size: 1.05rem;
}

/* Review Form */
.woocommerce-Reviews .comment-form-rating {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.woocommerce-Reviews .comment-form-rating label {
    font-weight: 600;
    color: var(--noir);
    font-size: 1.1rem;
}

.woocommerce-Reviews .stars {
    display: flex;
    gap: 0.5rem;
}

.woocommerce-Reviews .stars a {
    color: #ddd;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-Reviews .stars a:hover,
.woocommerce-Reviews .stars a.active {
    color: var(--rouge);
    transform: scale(1.2);
}

.woocommerce-Reviews .comment-reply-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--noir);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.woocommerce-Reviews .comment-reply-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--rouge);
}

.woocommerce-Reviews .comment-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.woocommerce-Reviews .comment-form-comment,
.woocommerce-Reviews .comment-form-author,
.woocommerce-Reviews .comment-form-email {
    margin-bottom: 1.8rem;
}

.woocommerce-Reviews .comment-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--noir);
    font-size: 1rem;
}

.woocommerce-Reviews .comment-form input[type="text"],
.woocommerce-Reviews .comment-form input[type="email"],
.woocommerce-Reviews .comment-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.woocommerce-Reviews .comment-form input:focus,
.woocommerce-Reviews .comment-form textarea:focus {
    border-color: var(--rouge);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.woocommerce-Reviews .comment-form textarea {
    min-height: 180px;
    resize: vertical;
}

.woocommerce-Reviews .form-submit {
    margin-top: 2rem;
    text-align: center;
}

.woocommerce-Reviews .submit {
    background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
    color: var(--blanc);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce-Reviews .submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--rouge);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.woocommerce-Reviews .submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.woocommerce-Reviews .submit:hover::before {
    width: 300px;
    height: 300px;
}

.woocommerce-Reviews .submit span {
    position: relative;
    z-index: 1;
}

/* No Reviews Yet */
.woocommerce-noreviews {
    text-align: center;
    padding: 4rem;
    color: #999;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-carousel-container {
        display: none;
    }

    .about-section {
        flex-direction: column;
    }
    
    .about-image-container {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .hero-image {
        opacity: 0.2;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--noir);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 999;
        gap: 1.5rem;
        border-left: 2px solid var(--rouge);
    }

    .main-navigation.active {
        right: 0;
    }
    
    .header-social {
        display: none;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .main-navigation li {
        width: 100%;
    }

    .main-navigation a {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }
    
    .main-navigation li a {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }
    
    /* Mobile Submenu */
    .main-navigation .sub-menu {
        position: static;
        display: none;
        border: none;
        border-left: 2px solid var(--rouge);
        margin-left: 1rem;
        margin-top: 0.5rem;
        padding-left: 1rem;
    }
    
    .main-navigation .menu-item-has-children.active .sub-menu {
        display: block;
    }

    .cart-link {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .header-right {
        display: none;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 0.8rem 5%;
    }

    .logo-image {
        height: 35px;
    }

    .hero-section {
        margin-top: 60px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .product-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .newsletter-section h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .main-navigation {
        width: 100%;
        right: -100%;
    }

    .cart-text {
        display: none;
    }
}

/* Scroll Animation */    .main-navigation {
        width: 100%;
        right: -100%;
    }

    .cart-text {
        display: none;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 30px;
        height: 30px;
    }
    
    /* Single Product Mobile - Luxury */
    .container-product-luxury {
        padding: 0 1.5rem;
    }
    
    .product-hero-luxury {
        padding: 4rem 0 5rem;
    }
    
    .product-hero-luxury .container-product-luxury {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .product-gallery-luxury {
        position: static;
    }
    
    .product-title-luxury {
        font-size: 2.2rem;
    }
    
    .product-price-luxury {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-price-luxury .price {
        font-size: 2rem;
    }
    
    .product-features-luxury {
        padding: 2rem 1.5rem;
    }
    
    .product-cart-form-luxury {
        padding: 2rem 1.5rem;
    }
    
    .product-trust-luxury {
        grid-template-columns: 1fr;
    }
    
    .product-details-luxury {
        padding: 5rem 0;
    }
    
    .product-details-luxury .woocommerce-tabs ul.tabs {
        gap: 1.5rem;
        overflow-x: auto;
        justify-content: flex-start;
    }
    
    .product-details-luxury .woocommerce-tabs .panel {
        padding: 2rem 1.5rem;
    }
    
    .related.products ul.products,
    .upsells.products ul.products {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WOOCOMMERCE MY ACCOUNT & LOGIN PAGES
   ============================================ */

.woocommerce-account .woocommerce,
.woocommerce-page.woocommerce-account {
    padding: 6rem 5% 4rem;
    margin-top: 80px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* Login & Register Forms */
.woocommerce-form-login,
.woocommerce-form-register {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.woocommerce-form-login h2,
.woocommerce-form-register h2,
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.woocommerce-form-login h2::after,
.woocommerce-form-register h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--rouge);
}

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

.woocommerce-form-row label {
    display: block;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.woocommerce-Input,
.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="password"],
.woocommerce-form-register input[type="email"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.woocommerce-Input:focus,
.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
    border-color: var(--rouge);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.woocommerce-form-login__rememberme {
    margin: 1.5rem 0;
}

.woocommerce-form-login__rememberme label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

.woocommerce-Button,
.woocommerce-form-login button[type="submit"],
.woocommerce-form-register button[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 1.3rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}

.woocommerce-Button:hover,
.woocommerce-form-login button:hover,
.woocommerce-form-register button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--rouge) 0%, #c71333 100%);
}

.woocommerce-LostPassword {
    margin-top: 1.5rem;
    text-align: center;
}

.woocommerce-LostPassword a {
    color: var(--rouge);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.woocommerce-LostPassword a:hover {
    color: var(--noir);
    text-decoration: underline;
}

/* My Account Page Layout */
.woocommerce-account .woocommerce {
    max-width: 1400px;
    margin: 6rem auto 4rem;
    padding: 0 3rem;
}

.woocommerce-MyAccount-navigation {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

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

.woocommerce-MyAccount-navigation li {
    margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 1rem 1.5rem;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
    background: var(--rouge);
    color: white;
    transform: translateX(8px);
}

.woocommerce-MyAccount-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Orders Table */
.woocommerce-orders-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.woocommerce-orders-table th {
    background: var(--noir);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.woocommerce-orders-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-orders-table tr:hover td {
    background: #fafafa;
}

.woocommerce-orders-table .button {
    background: var(--rouge);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.woocommerce-orders-table .button:hover {
    background: var(--rouge-dark);
    transform: translateY(-2px);
}

/* Address Box */
.woocommerce-Address {
    background: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    margin-bottom: 2rem;
}

.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.woocommerce-Address-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--noir);
    margin: 0;
}

.woocommerce-Address-title .edit {
    color: var(--rouge);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.woocommerce-Address-title .edit:hover {
    background: var(--rouge);
    color: white;
    transform: translateY(-2px);
}

/* Account Details Form */
.woocommerce-EditAccountForm {
    background: white;
}

.woocommerce-EditAccountForm label {
    display: block;
    font-weight: 600;
    color: var(--noir);
    margin-bottom: 0.8rem;
}

.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.woocommerce-EditAccountForm input:focus {
    border-color: var(--rouge);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.woocommerce-EditAccountForm button {
    background: linear-gradient(135deg, var(--noir) 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 1.3rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.woocommerce-EditAccountForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, var(--rouge) 0%, #c71333 100%);
}

/* Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border-left: 4px solid;
    font-weight: 500;
}

.woocommerce-message {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.woocommerce-error {
    background: #ffebee;
    border-color: #f44336;
    color: #c62828;
}

.woocommerce-info {
    background: #f5f5f5;
    border-color: #666;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        padding: 4rem 1.5rem 2rem;
    }
    
    .woocommerce-form-login,
    .woocommerce-form-register,
    .woocommerce-MyAccount-content {
        padding: 2rem 1.5rem;
    }
    
    .woocommerce-form-login h2,
    .woocommerce-form-register h2 {
        font-size: 2rem;
    }
    
    .woocommerce-MyAccount-navigation a {
        padding: 0.8rem 1rem;
    }
    
    .account-link .account-text,
    .cart-link .cart-text {
        display: none;
    }
}


/* ============================================
   PRODUCT PAGE FIX - Force Styles
   ============================================ */

/* Ensure product page uses correct background */
body.single-product .single-product-luxury,
.single-product .single-product-luxury {
    background: #fafafa !important;
    padding-bottom: 0 !important;
}

/* Force container max-width */
.single-product .container-product-luxury {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 3rem !important;
}

/* Force hero section styling */
.single-product .product-hero-luxury {
    background: white !important;
    padding: 6rem 0 8rem !important;
    margin-top: 80px !important;
}

/* Force grid layout */
.single-product .product-hero-luxury .container-product-luxury {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 8rem !important;
}

/* Force gallery styling */
.single-product .product-gallery-luxury .woocommerce-product-gallery {
    border-radius: 24px !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #f0f0f0 !important;
}

/* Force title styling */
.single-product .product-title-luxury {
    font-family: 'Playfair Display', serif !important;
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    color: #0A0A0A !important;
    line-height: 1.15 !important;
}

/* Force price styling */
.single-product .product-price-luxury .price {
    font-family: 'Playfair Display', serif !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #DC143C !important;
}

/* Force cart form styling */
.single-product .product-cart-form-luxury {
    background: white !important;
    padding: 3.5rem !important;
    border-radius: 24px !important;
    border: 2px solid #f0f0f0 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
}

/* Force button styling */
.single-product .product-cart-form-luxury .single_add_to_cart_button {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%) !important;
    padding: 1.8rem 2rem !important;
    font-size: 1.15rem !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
   PRODUCT PAGE COMPLETE FIX
   ============================================ */

/* Force full width and centering */
.single-product-luxury {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #fafafa 100%) !important;
    padding-bottom: 0 !important;
    width: 100% !important;
}

.container-product-luxury {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 3rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.product-hero-luxury {
    background: white !important;
    padding: 6rem 0 8rem !important;
    margin-top: 80px !important;
    width: 100% !important;
}

.product-hero-luxury .container-product-luxury {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 8rem !important;
    align-items: start !important;
}

/* Gallery improvements */
.product-gallery-luxury {
    position: sticky !important;
    top: 100px !important;
    width: 100% !important;
}

/* Icons spacing fix - Trust badges */
.product-trust-luxury {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.trust-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    background: #f8f9fa !important;
    border-radius: 14px !important;
}

.trust-item svg {
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    color: var(--rouge) !important;
}

.trust-item div {
    flex: 1 !important;
}

/* Features icons spacing */
.product-features-luxury li {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    padding: 1.2rem !important;
}

.product-features-luxury li svg {
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
    padding: 0.6rem !important;
    border-radius: 10px !important;
}

/* Responsive fixes */
@media (max-width: 1200px) {
    .container-product-luxury {
        max-width: 100% !important;
        padding: 0 2rem !important;
    }
    
    .product-hero-luxury .container-product-luxury {
        gap: 5rem !important;
    }
}

@media (max-width: 968px) {
    .product-hero-luxury .container-product-luxury {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .product-gallery-luxury {
        position: static !important;
    }
    
    .product-trust-luxury {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .container-product-luxury {
        padding: 0 1.5rem !important;
    }
}

@media (max-width: 640px) {
    .product-hero-luxury {
        padding: 3rem 0 4rem !important;
    }
    
    .product-title-luxury {
        font-size: 2rem !important;
    }
    
    .product-price-luxury .price {
        font-size: 2rem !important;
    }
    
    .product-cart-form-luxury {
        padding: 2rem 1.5rem !important;
    }
    
    .product-features-luxury {
        padding: 2rem 1.5rem !important;
    }
}


/* ============================================
   WHATSAPP FLOATING BUTTON FIX - FORCE FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.whatsapp-button:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7) !important;
    background: #20BA5A !important;
}

.whatsapp-button svg {
    width: 35px !important;
    height: 35px !important;
    fill: white !important;
    pointer-events: none !important;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .whatsapp-button {
        width: 55px !important;
        height: 55px !important;
    }
    
    .whatsapp-button svg {
        width: 30px !important;
        height: 30px !important;
    }
}


/* ============================================
   FALLBACK - FORCE VISIBILITY
   ============================================ */

/* Garante que seções principais sejam visíveis mesmo sem JavaScript */
.featured-section,
.categories-section,
.about-section,
.newsletter-section {
    visibility: visible !important;
    display: block !important;
}

/* Fallback para fade-in - se JS não carregar, mostra após 2s */
.fade-in {
    animation: fadeInFallback 0.6s ease forwards;
    animation-delay: 0.2s;
}

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

/* Force specific sections to be visible */
.product-grid,
.category-grid,
.about-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Force products and categories visible */
.product-card,
.category-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

