/*
Theme Name: Hans Beauty
Theme URI: https://hansbeauty.com
Author: Hans Beauty Team
Author URI: https://hansbeauty.com
Description: A modern, elegant WordPress theme for Hans Beauty cosmetics store in Monterey Park, CA. Features a beautiful rose gold color scheme, responsive design, and WooCommerce support.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hans-beauty
Tags: e-commerce, blog, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready

Hans Beauty WordPress Theme, Copyright 2025
Hans Beauty is distributed under the terms of the GNU GPL
*/

/* ==========================================================================
   Base Styles & CSS Variables
   ========================================================================== */

:root {
    --rose-gold: #B76E79;
    --deep-charcoal: #2C2C2C;
    --cream-white: #FAF8F5;
    --soft-coral: #E8A598;
    --jade-green: #88B5A0;
    --warm-gray: #A39B93;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset & Base Typography
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--deep-charcoal);
    background-color: var(--cream-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.625rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--soft-coral);
}

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

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.site-content {
    padding: var(--spacing-2xl) 0;
}

.content-area {
    margin-bottom: var(--spacing-2xl);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    padding: var(--spacing-md) 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.site-branding .site-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin: 0;
}

.site-title a {
    color: var(--rose-gold);
    text-decoration: none;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-lg);
}

.main-navigation a {
    color: var(--deep-charcoal);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: var(--spacing-xs) 0;
    text-decoration: none;
}

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

.header-icons {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.header-icons a {
    display: flex;
    align-items: center;
    color: var(--deep-charcoal);
}

.header-icons svg {
    width: 22px;
    height: 22px;
    transition: var(--transition);
}

.header-icons a:hover svg {
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn,
button.btn,
input[type="submit"],
.wp-block-button__link {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary,
input[type="submit"] {
    background: var(--rose-gold);
    color: var(--white);
}

.btn-primary:hover,
input[type="submit"]:hover {
    background: var(--deep-charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
}

.btn-secondary:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--deep-charcoal);
    color: var(--deep-charcoal);
}

.btn-outline:hover {
    background: var(--deep-charcoal);
    color: var(--white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--soft-coral) 100%);
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Cards & Product Grid
   ========================================================================== */

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: var(--spacing-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e5e5e5;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--deep-charcoal);
}

/* ==========================================================================
   WooCommerce Integration
   ========================================================================== */

.woocommerce-products-header {
    margin-bottom: var(--spacing-xl);
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: var(--transition);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.woocommerce ul.products li.product .price {
    color: var(--rose-gold);
    font-size: 1.25rem;
    font-weight: 600;
}

.woocommerce ul.products li.product .button {
    background: var(--rose-gold);
    color: var(--white);
    width: 100%;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--deep-charcoal);
}

.woocommerce div.product {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
}

.woocommerce div.product .price {
    color: var(--rose-gold);
    font-size: 2rem;
    font-weight: 700;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--rose-gold);
    color: var(--white);
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--deep-charcoal);
}

/* ==========================================================================
   Sidebar & Widgets
   ========================================================================== */

.sidebar {
    padding: var(--spacing-md);
}

.widget {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--rose-gold);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Blog & Posts
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

article.post {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

article.post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.post-thumbnail img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.entry-content {
    padding: var(--spacing-md);
}

.entry-title {
    margin-bottom: var(--spacing-sm);
}

.entry-meta {
    font-size: 0.875rem;
    color: var(--warm-gray);
    margin-bottom: var(--spacing-md);
}

.entry-meta a {
    color: var(--warm-gray);
}

.entry-meta a:hover {
    color: var(--rose-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--deep-charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    background: var(--rose-gold);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Legacy footer widget support */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-widget h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

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

.footer-widget ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-widget a:hover {
    color: var(--rose-gold);
}

.site-info {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.section-title {
    font-size: 2.625rem;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
        position: relative;
    }

    .site-branding {
        order: 1;
    }

    .header-actions {
        order: 2;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        display: none;
        margin-top: var(--spacing-md);
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation.toggled {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) 0;
    }

    .main-navigation a {
        display: block;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .hero-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .products-grid,
    .category-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .site-header {
        padding: var(--spacing-sm) 0;
    }
    
    .hero-section {
        padding: var(--spacing-xl) 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   Homepage Sections
   ========================================================================== */

/* Featured Categories */
.featured-categories {
    padding: var(--spacing-3xl) 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--soft-coral) 0%, var(--rose-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.category-info {
    padding: var(--spacing-md);
    text-align: center;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.category-info p {
    color: var(--warm-gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Featured Products */
.featured-products {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.product-card {
    background: var(--cream-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-image {
    width: 100%;
    height: 260px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
    font-size: 0.875rem;
}

.product-info h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.product-brand {
    color: var(--warm-gray);
    font-size: 0.8125rem;
    margin-bottom: var(--spacing-sm);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: var(--spacing-sm);
}

.product-card .btn {
    width: 100%;
    background: var(--rose-gold);
    color: var(--white);
}

.product-card .btn:hover {
    background: var(--deep-charcoal);
}

.view-all {
    text-align: center;
}

/* Why Choose Us */
.why-choose {
    padding: var(--spacing-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--soft-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2.25rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Blog Section */
.blog-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: var(--cream-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--jade-green) 0%, var(--soft-coral) 100%);
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-content h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
    color: var(--warm-gray);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    line-height: 1.6;
}

.blog-meta {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    margin-bottom: var(--spacing-sm);
}

.blog-card .read-more {
    color: var(--rose-gold);
    font-weight: 500;
    display: inline-block;
}

.blog-card .read-more:hover {
    color: var(--soft-coral);
}

/* Newsletter */
.newsletter {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, #1a1a1a 100%);
    color: var(--white);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.625rem;
    margin-bottom: var(--spacing-sm);
}

.newsletter p {
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-size: 1.125rem;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--rose-gold);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.newsletter-form button:hover {
    background: var(--soft-coral);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--rose-gold);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-icon {
    position: relative;
}

.cart-icon.bounce {
    animation: bounceCart 0.5s ease;
}

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

/* ==========================================================================
   Elementor Compatibility
   ========================================================================== */

/* Full Width Template */
.elementor-full-width .container {
    max-width: 100%;
    padding: 0;
}

.elementor-full-width .site-main {
    padding: 0;
}

/* Elementor Canvas - No Header/Footer */
.elementor-canvas {
    margin: 0;
    padding: 0;
}

/* Elementor Widget Compatibility */
.elementor-widget-container {
    margin: 0;
}

.elementor-section {
    position: relative;
}

/* Fix Elementor button colors */
.elementor-button {
    background-color: var(--rose-gold);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}

.elementor-button:hover {
    background-color: var(--soft-coral);
    color: var(--white);
}

/* Elementor heading colors */
.elementor-heading-title {
    font-family: var(--font-heading);
    color: var(--deep-charcoal);
}

/* Elementor text editor */
.elementor-text-editor {
    font-family: var(--font-body);
    color: var(--deep-charcoal);
}

/* Make sure Elementor sections work well with theme */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1440px;
}

/* Elementor column gaps match theme spacing */
.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
    padding: var(--spacing-md);
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .menu-toggle,
    .header-icons,
    .hero-buttons,
    button,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ORIGINAL HTML CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --rose-gold: #B76E79;
            --deep-charcoal: #2C2C2C;
            --cream-white: #FAF8F5;
            --soft-coral: #E8A598;
            --jade-green: #88B5A0;
            --warm-gray: #A39B93;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--deep-charcoal);
            background: var(--cream-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            line-height: 1.2;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--rose-gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--deep-charcoal);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--rose-gold);
        }

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

        .nav-icons svg {
            width: 22px;
            height: 22px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .nav-icons svg:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--rose-gold) 0%, var(--soft-coral) 100%);
            padding: 120px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: white;
            color: var(--rose-gold);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--rose-gold);
        }

        /* Featured Categories */
        .featured-categories {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 48px;
            color: var(--deep-charcoal);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .category-image {
            width: 100%;
            height: 240px;
            background: linear-gradient(135deg, var(--soft-coral) 0%, var(--rose-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
        }

        .category-info {
            padding: 24px;
            text-align: center;
        }

        .category-info h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .category-info p {
            color: var(--warm-gray);
            font-size: 14px;
        }

        /* Featured Products */
        .featured-products {
            padding: 80px 0;
            background: white;
        }

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

        .product-card {
            background: var(--cream-white);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .product-image {
            width: 100%;
            height: 260px;
            background: white;
            border-radius: 8px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--warm-gray);
            font-size: 14px;
        }

        .product-info h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .product-brand {
            color: var(--warm-gray);
            font-size: 13px;
            margin-bottom: 12px;
        }

        .product-price {
            font-size: 20px;
            font-weight: 600;
            color: var(--rose-gold);
            margin-bottom: 16px;
        }

        .product-card .btn {
            width: 100%;
            background: var(--rose-gold);
            color: white;
        }

        .product-card .btn:hover {
            background: var(--deep-charcoal);
        }

        .view-all {
            text-align: center;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
            margin-top: 48px;
        }

        .feature {
            text-align: center;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--rose-gold) 0%, var(--soft-coral) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 36px;
        }

        .feature h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .feature p {
            color: var(--warm-gray);
            line-height: 1.8;
        }

        /* Blog Section */
        .blog-section {
            padding: 80px 0;
            background: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .blog-card {
            background: var(--cream-white);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .blog-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--jade-green) 0%, var(--soft-coral) 100%);
        }

        .blog-content {
            padding: 24px;
        }

        .blog-content h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .blog-excerpt {
            color: var(--warm-gray);
            margin-bottom: 16px;
            font-size: 14px;
            line-height: 1.6;
        }

        .blog-meta {
            font-size: 13px;
            color: var(--warm-gray);
        }

        /* Newsletter */
        .newsletter {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--deep-charcoal) 0%, #1a1a1a 100%);
            color: white;
        }

        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 42px;
            margin-bottom: 16px;
        }

        .newsletter p {
            margin-bottom: 32px;
            opacity: 0.9;
            font-size: 18px;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 6px;
            border: none;
            font-size: 16px;
        }

        .newsletter-form button {
            background: var(--rose-gold);
            color: white;
            padding: 14px 32px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: var(--soft-coral);
        }

        /* Footer */
        footer {
            background: var(--deep-charcoal);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

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

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

        .footer-column a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--rose-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--rose-gold);
            transform: translateY(-2px);
        }

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

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 32px;
            }

            .newsletter h2 {
                font-size: 32px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

/* New Products Badge */
.new-products-slider .new-badge {
    position: absolute;
    top: 10px;
    left: 25px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
}

.new-products-slider .slider-item a {
    position: relative;
}

/* Uniform 500x500 Image Sizing */
.sale-products-slider .slider-item img,
.new-products-slider .slider-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Elementor Editor Fix for Product Sliders */
body.elementor-editor-active .sale-products-slider,
body.elementor-editor-active .new-products-slider,
body.elementor-editor-active .tag-products-slider {
    display: flex !important;
    flex-wrap: wrap !important;
}

body.elementor-editor-active .slider-item {
    flex: 0 0 23% !important;
    max-width: 300px !important;
    margin: 10px 1% !important;
}

body.elementor-editor-active .slider-item img {
    width: 100% !important;
    height: auto !important;
}