/**
 * Main Stylesheet for Leo Beauty Theme
 * استایل اصلی قالب لئو بیوتی
 */

/* ============================================
   Variables
   ============================================ */
:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-primary: 'IRANSans', 'Tahoma', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    --spacing-unit: 20px;
}

/* ============================================
   Reset & Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 80px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: #ffffff;
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    color: var(--secondary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-unit);
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    padding: var(--spacing-unit) 0;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo img {
    max-height: 60px;
}

/* ============================================
   Navigation
   ============================================ */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 500px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-widget a {
    color: #cccccc;
}

.footer-widget a:hover {
    color: var(--primary-color);
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

/* ============================================
   Forms
   ============================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ============================================
   Utilities
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ============================================
   Leo Beauty Footer
   ============================================ */
.leo-beauty-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
}

.leo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.leo-footer-content {
   display: grid;
    grid-template-columns: repeat(4, 1fr); /* اجبار به ۴ ستون در دسکتاپ */
    gap: 30px;
    margin-bottom: 50px;
}

.leo-footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.leo-footer-description {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.leo-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.leo-footer-brand {
    margin-top: 20px;
    padding: 20px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    text-align: center;
}

.leo-brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.leo-brand-slogan {
    font-size: 0.9rem;
    color: #cccccc;
    font-style: italic;
}

/* Footer Links */
.leo-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leo-footer-menu li {
    margin-bottom: 12px;
}

.leo-footer-menu a,
.leo-account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.leo-footer-menu a:hover,
.leo-account-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.link-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.link-text {
    flex: 1;
}

.leo-user-welcome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.user-icon {
    font-size: 1.5rem;
}

.cart-count-badge {
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 5px;
}

/* Contact Info */
.leo-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.leo-contact-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contact-text {
    flex: 1;
    color: #cccccc;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-text small {
    display: block;
    color: #999999;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Newsletter */
.leo-footer-newsletter {
    margin: 30px 0;
}

.leo-footer-newsletter h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.leo-newsletter-form {
    margin-bottom: 15px;
}

.leo-newsletter-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.leo-newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.leo-newsletter-input::placeholder {
    color: #999999;
}

.leo-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.leo-newsletter-btn {
    padding: 12px 25px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.leo-newsletter-btn:hover {
    background: #c4955f;
    transform: translateY(-2px);
}

.leo-newsletter-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.leo-newsletter-note {
    display: block;
    color: #999999;
    font-size: 0.85rem;
    line-height: 1.6;
}

.leo-newsletter-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.newsletter-success {
    padding: 15px;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    border-radius: 6px;
    color: #28a745;
    text-align: center;
    font-weight: 600;
}

/* Social Icons */
.leo-social-section {
    margin-top: 30px;
}

.leo-social-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.leo-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.leo-social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leo-social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.9rem;
}

/* Footer Bottom */
.leo-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.leo-footer-bottom-content {
    position: relative;
}

/* Trust Badges */
.leo-trust-section {
    margin-bottom: 30px;
}

.leo-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.leo-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.leo-trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.leo-badge-icon {
    font-size: 2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.badge-text small {
    color: #999999;
    font-size: 0.75rem;
}

/* Payment Methods */
.leo-payment-section {
    text-align: center;
    margin: 30px 0;
}

.leo-payment-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 15px;
}

.leo-payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icon {
    font-size: 2rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Legal Section */
.leo-legal-section {
    text-align: center;
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.leo-copyright {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.leo-developer {
    margin: 20px 0;
    color: #999999;
    font-size: 0.9rem;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.developer-icon {
    font-size: 1.2rem;
}

.leo-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.policy-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: var(--primary-color);
}

.policy-separator {
    color: #666666;
    margin: 0 5px;
}

/* Back to Top Button */
.leo-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.leo-back-to-top:hover {
    background: #c4955f;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.leo-back-to-top.show {
    display: flex;
}

.back-to-top-icon {
    font-size: 1.2rem;
}

.back-to-top-text {
    font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .leo-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leo-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .leo-payment-methods {
        justify-content: center;
    }
    
    .leo-back-to-top {
        bottom: 20px;
        left: 20px;
        padding: 10px 15px;
    }
    
    .back-to-top-text {
        display: none;
    }
}

/* ============================================
   Leo Beauty Home Page Styles
   ============================================ */

/* Image Slider Section */
.leo-image-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.leo-image-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.leo-image-slider-container h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.leo-image-slider-container > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.leo-image-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leo-image-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.leo-image-slide {
    min-width: 100%;
    position: relative;
}

.leo-image-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.leo-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: #ffffff;
    text-align: right;
}

.leo-slide-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.leo-slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.leo-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.leo-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.leo-slider-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.prev-btn {
    right: 20px;
}

.next-btn {
    left: 20px;
}

.leo-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.leo-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.leo-slider-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Categories Section */
.leo-categories {
    padding: 80px 0;
    background: #ffffff;
}

.leo-section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.leo-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.leo-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.leo-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: center;
}

.leo-category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.2);
}

.leo-category-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.leo-category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.leo-category-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Products Grid */
.leo-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.leo-product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.leo-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.leo-product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--accent-color);
}

.leo-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leo-product-card:hover .leo-product-image-wrapper img {
    transform: scale(1.1);
}

.leo-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 4rem;
}

.leo-new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.leo-product-info {
    padding: 20px;
}

.leo-product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.leo-product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leo-product-info h3 a:hover {
    color: var(--primary-color);
}

.leo-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.leo-price-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.leo-add-btn {
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.leo-add-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Best Selling Section */
.leo-best-selling {
    padding: 80px 0;
    background: var(--accent-color);
}

/* New Products Section */
.leo-new-products {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
}

.leo-new-products .leo-section-title {
    color: #ffffff;
}

.leo-new-products .leo-product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leo-new-products .leo-product-info h3 a {
    color: #ffffff;
}

.leo-view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.leo-view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leo-view-all-btn:hover {
    background: #c4955f;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

/* Promo Banners */
.leo-promo-banners {
    padding: 80px 0;
    background: #ffffff;
}

.leo-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leo-banner {
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.leo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.leo-banner > * {
    position: relative;
    z-index: 2;
}

.leo-banner-1 {
    background: linear-gradient(135deg, #FF6B8B 0%, #FF8E9B 100%);
}

.leo-banner-2 {
    background: linear-gradient(135deg, #4ECDC4 0%, #6EDCD4 100%);
}

.leo-banner-3 {
    background: linear-gradient(135deg, #45B7D1 0%, #6BC5D8 100%);
}

.leo-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.leo-banner p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.leo-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.leo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Blog Section */
.leo-blog {
    background: #ffffff;
    padding: 80px 0;
}

.leo-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leo-blog-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
}

.leo-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.leo-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.leo-blog-placeholder {
    height: 200px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.leo-blog-info {
    padding: 25px;
}

.leo-blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.leo-blog-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.leo-blog-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leo-blog-info h3 a:hover {
    color: var(--primary-color);
}

.leo-blog-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Home Section */
.leo-newsletter-home {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c4955f 100%);
    text-align: center;
    color: #ffffff;
}

.leo-newsletter-home h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.leo-newsletter-home > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.leo-newsletter-form-home {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.leo-newsletter-form-home .leo-newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.leo-newsletter-form-home .leo-btn {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
}

.leo-newsletter-form-home .leo-btn:hover {
    background: #1a1a1a;
}

/* Responsive Home Page */
@media screen and (max-width: 768px) {
    .leo-image-slider-container h2 {
        font-size: 1.8rem;
    }
    
    .leo-image-slide img {
        height: 300px;
    }
    
    .leo-slide-content {
        padding: 20px;
    }
    
    .leo-slide-content h3 {
        font-size: 1.5rem;
    }
    
    .leo-section-title {
        font-size: 2rem;
    }
    
    .leo-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .leo-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .leo-banners-grid {
        grid-template-columns: 1fr;
    }
    
    .leo-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .leo-newsletter-form-home {
        flex-direction: column;
    }
    
    .leo-newsletter-form-home .leo-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .leo-products-grid,
    .leo-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Leo Beauty Cart Page Styles
   ============================================ */

/* Cart Progress Bar */
.leo-cart-progress {
    background: var(--accent-color);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.leo-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.step-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 700;
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--border-color);
    position: relative;
    margin: 0 10px;
}

.step-line.active {
    background: var(--primary-color);
}

/* Cart Page Wrapper */
.leo-cart-page-wrapper {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.leo-cart-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.leo-cart-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leo-cart-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.leo-cart-count {
    color: var(--primary-color);
    font-weight: 700;
}

/* Empty Cart */
.leo-empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.leo-empty-cart-icon {
    margin-bottom: 30px;
}

.leo-empty-cart-icon svg {
    opacity: 0.5;
}

.leo-empty-cart h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leo-empty-cart p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.leo-empty-cart .leo-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leo-empty-cart .leo-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

/* Cart Layout */
.leo-cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 60px;
}

.leo-cart-items {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Cart Table */
.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart-form__contents thead {
    background: var(--accent-color);
}

.woocommerce-cart-form__contents th {
    padding: 15px;
    text-align: right;
    font-weight: 700;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--border-color);
}

.woocommerce-cart-form__contents td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.woocommerce-cart-form__contents tbody tr {
    transition: all 0.3s ease;
}

.woocommerce-cart-form__contents tbody tr:hover {
    background: var(--accent-color);
}

/* Product Remove */
.product-remove .remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    color: var(--error-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    line-height: 1;
}

.product-remove .remove:hover {
    background: var(--error-color);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Product Thumbnail */
.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.product-thumbnail a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.product-thumbnail a:hover {
    transform: scale(1.1);
}

/* Product Name */
.product-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary-color);
}

/* Product Price */
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Product Quantity */
.product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
}

.product-quantity .qty {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px;
}

.product-quantity .qty:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Product Subtotal */
.product-subtotal {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Coupon Box */
.leo-coupon-box {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.leo-coupon-header h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leo-coupon-form {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 10px;
}

.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.coupon-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.leo-apply-coupon {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leo-apply-coupon:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.leo-update-cart {
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.leo-update-cart:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* Cart Collaterals */
.leo-cart-collaterals {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-collaterals {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart_totals {
    margin-bottom: 0;
}

.cart_totals h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cart_totals table {
    width: 100%;
    margin-bottom: 25px;
}

.cart_totals tr {
    border-bottom: 1px solid var(--border-color);
}

.cart_totals th,
.cart_totals td {
    padding: 15px 0;
    text-align: right;
}

.cart_totals th {
    font-weight: 600;
    color: var(--text-color);
}

.cart_totals td {
    font-weight: 700;
    color: var(--secondary-color);
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.3rem;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    padding-top: 20px;
}

.checkout-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.checkout-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

/* Cross Sell Products */
.leo-cross-sell-products {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.leo-cross-sell-products .leo-section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Cart Page */
@media screen and (max-width: 1024px) {
    .leo-cart-layout {
        grid-template-columns: 1fr;
    }
    
    .leo-cart-collaterals {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .leo-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-line {
        display: none;
    }
    
    .woocommerce-cart-form__contents {
        font-size: 0.9rem;
    }
    
    .woocommerce-cart-form__contents th,
    .woocommerce-cart-form__contents td {
        padding: 10px 5px;
    }
    
    .product-thumbnail {
        display: none;
    }
    
    .product-thumbnail img {
        width: 60px;
        height: 60px;
    }
    
    .coupon-input-group {
        flex-direction: column;
    }
    
    .leo-apply-coupon {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .leo-cart-header h1 {
        font-size: 1.8rem;
    }
    
    .woocommerce-cart-form__contents thead {
        display: none;
    }
    
    .woocommerce-cart-form__contents td {
        display: block;
        text-align: right;
        padding: 15px 0;
        border-bottom: none;
        border-top: 1px solid var(--border-color);
    }
    
    .woocommerce-cart-form__contents td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        color: var(--secondary-color);
        display: inline-block;
        width: 100px;
    }
    
    .product-remove {
        text-align: left;
        border-top: none;
    }
    
    .product-remove::before {
        display: none;
    }
}

/* ============================================
   Leo Beauty Login & Register Page Styles
   ============================================ */

/* Login Wrapper */
.leo-login-wrapper {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.leo-login-intro {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.leo-login-intro h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leo-login-intro > p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Login Notices */
.leo-login-notice {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.leo-notice-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.leo-notice-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Login Grid */
.leo-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Login Box */
.leo-login-box,
.leo-register-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leo-login-box:hover,
.leo-register-box:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.leo-login-header,
.leo-register-header {
    margin-bottom: 30px;
    text-align: center;
}

.leo-login-header h2,
.leo-register-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.leo-login-benefits,
.leo-register-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.leo-login-benefits span,
.leo-register-benefits span {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 15px;
    background: var(--accent-color);
    border-radius: 8px;
}

/* Form Groups */
.leo-form-group {
    margin-bottom: 25px;
    position: relative;
}

.leo-form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.leo-form-group .required {
    color: var(--error-color);
}

.leo-form-group input[type="text"],
.leo-form-group input[type="email"],
.leo-form-group input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #ffffff;
}

.leo-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.leo-form-group.leo-form-group-focused label {
    color: var(--primary-color);
}

.leo-input-error {
    border-color: var(--error-color) !important;
}

/* Password Wrapper */
.leo-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.leo-password-wrapper input {
    padding-left: 50px;
}

.leo-password-toggle {
    position: absolute;
    left: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    z-index: 10;
}

.leo-password-toggle:hover {
    transform: scale(1.2);
}

.leo-password-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Checkbox */
.leo-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.leo-checkbox input[type="checkbox"] {
    display: none;
}

.leo-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.leo-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.leo-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

.leo-checkbox .label-text {
    color: var(--text-color);
    font-size: 0.95rem;
}

.leo-terms-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.leo-terms-link:hover {
    color: var(--secondary-color);
}

/* Form Options */
.leo-form-options {
    margin: 25px 0;
}

/* Submit Button */
.leo-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.leo-submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.leo-submit-btn .btn-icon {
    font-size: 1.2rem;
}

.register-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c4955f 100%);
}

.register-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
}

/* Login Footer */
.leo-login-footer {
    margin-top: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leo-forgot-link,
.leo-home-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.leo-forgot-link:hover,
.leo-home-link:hover {
    color: var(--primary-color);
}

/* Social Login */
.leo-social-login {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.leo-social-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.leo-social-divider::before,
.leo-social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--border-color);
}

.leo-social-divider::before {
    right: 0;
}

.leo-social-divider::after {
    left: 0;
}

.leo-social-divider span {
    background: #ffffff;
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.leo-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leo-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.leo-social-btn:hover {
    border-color: var(--primary-color);
    background: var(--accent-color);
    transform: translateY(-2px);
}

.leo-social-google {
    border-color: #4285F4;
    color: #4285F4;
}

.leo-social-google:hover {
    background: #4285F4;
    color: #ffffff;
}

.leo-social-telegram {
    border-color: #0088cc;
    color: #0088cc;
}

.leo-social-telegram:hover {
    background: #0088cc;
    color: #ffffff;
}

.social-icon {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Register Box */
.leo-auto-password-note {
    background: var(--accent-color);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.leo-auto-password-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.leo-register-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.leo-register-footer p {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.leo-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.leo-benefits-list li {
    padding: 10px 15px;
    background: var(--accent-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Security Info */
.leo-security-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.leo-security-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--accent-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.leo-security-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.security-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.security-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Login Page */
@media screen and (max-width: 1024px) {
    .leo-login-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .leo-security-info {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .leo-login-wrapper {
        padding: 40px 15px;
    }
    
    .leo-login-intro h1 {
        font-size: 2rem;
    }
    
    .leo-login-box,
    .leo-register-box {
        padding: 30px 20px;
    }
    
    .leo-login-header h2,
    .leo-register-header h2 {
        font-size: 1.5rem;
    }
    
    .leo-benefits-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .leo-login-intro h1 {
        font-size: 1.5rem;
    }
    
    .leo-form-group input[type="text"],
    .leo-form-group input[type="email"],
    .leo-form-group input[type="password"] {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .leo-submit-btn {
        padding: 15px;
        font-size: 1rem;
    }
}

/* ============================================
   Leo Beauty Shop Archive Page Styles
   ============================================ */

/* Shop Hero Section */
.leo-shop-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c4955f 100%);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.leo-shop-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.leo-shop-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.leo-breadcrumb {
    margin-top: 30px;
}

.woocommerce-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: #ffffff;
}

.leo-breadcrumb-separator {
    margin: 0 5px;
    opacity: 0.7;
}

/* Shop Banner */
.leo-shop-banner {
    margin: 40px 0;
}

.leo-shop-banner img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Shop Layout */
.leo-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Shop Sidebar */
.leo-shop-sidebar {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.leo-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.leo-sidebar-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-icon {
    font-size: 1.2rem;
}

.leo-clear-filters {
    background: none;
    border: none;
    color: var(--error-color);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.leo-clear-filters:hover {
    background: var(--accent-color);
}

.leo-sidebar-inner {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding-right: 10px;
}

.leo-sidebar-inner::-webkit-scrollbar {
    width: 6px;
}

.leo-sidebar-inner::-webkit-scrollbar-track {
    background: var(--accent-color);
    border-radius: 3px;
}

.leo-sidebar-inner::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Widgets */
.leo-widget {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.leo-widget:last-child {
    border-bottom: none;
}

.leo-widget-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.leo-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leo-category-list li {
    margin-bottom: 10px;
}

.leo-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--accent-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.leo-category-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(-5px);
}

.cat-name {
    font-weight: 500;
}

.cat-count {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile Filter Actions */
.leo-mobile-filter-actions {
    display: none;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.leo-apply-filters {
    flex: 1;
    padding: 12px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.leo-close-filters {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Shop Content */
.leo-shop-content {
    min-width: 0;
}

/* Quick Filters */
.leo-quick-filters {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.leo-quick-filter-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.leo-quick-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.leo-quick-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.leo-quick-filter:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    transform: translateY(-2px);
}

.leo-quick-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Shop Toolbar */
.leo-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.leo-toolbar-left,
.leo-toolbar-center,
.leo-toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.leo-current-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--accent-color);
    border-radius: 8px;
    font-size: 0.95rem;
}

.current-cat-icon {
    font-size: 1.2rem;
}

.cat-product-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* View Toggle */
.leo-view-toggle-group {
    display: flex;
    gap: 5px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
}

.leo-view-toggle {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leo-view-toggle:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.leo-view-toggle.active {
    background: var(--primary-color);
    color: #ffffff;
}

/* Product Count */
.leo-product-count {
    font-size: 0.95rem;
    color: var(--text-light);
}

.count-current {
    font-weight: 700;
    color: var(--primary-color);
}

.count-total {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Sort Wrapper */
.leo-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.leo-sort-wrapper select {
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    background: #ffffff;
}

.leo-sort-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Mobile Filter Toggle */
.leo-mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leo-mobile-filter-toggle:hover {
    background: var(--secondary-color);
}

/* Products Grid/List View */
.products.leo-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.products.leo-list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products.leo-list-view li.product {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products.leo-list-view li.product .product-image-wrapper {
    width: 200px;
    flex-shrink: 0;
}

.products.leo-list-view li.product .leo-product-info {
    flex: 1;
}

/* No Products */
.leo-no-products {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.leo-no-products-icon {
    margin-bottom: 30px;
}

.leo-no-products-icon svg {
    opacity: 0.5;
}

.leo-no-products h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leo-no-products p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Shop Bottom Banner */
.leo-shop-bottom-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 60px 20px;
    margin-top: 60px;
    text-align: center;
    color: #ffffff;
}

.leo-bottom-banner-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.leo-bottom-banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.leo-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.leo-btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Shop Page */
@media screen and (max-width: 1024px) {
    .leo-shop-layout {
        grid-template-columns: 1fr;
    }
    
    .leo-shop-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .leo-shop-sidebar.active {
        right: 0;
    }
    
    .leo-mobile-filter-actions {
        display: flex;
    }
    
    .leo-mobile-filter-toggle {
        display: flex;
    }
    
    body.leo-filters-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }
}

@media screen and (max-width: 768px) {
    .leo-shop-hero {
        padding: 40px 15px;
    }
    
    .leo-shop-title {
        font-size: 2rem;
    }
    
    .leo-shop-subtitle {
        font-size: 1.1rem;
    }
    
    .leo-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .leo-toolbar-left,
    .leo-toolbar-center,
    .leo-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .leo-quick-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .leo-quick-filter-buttons {
        width: 100%;
    }
    
    .leo-quick-filter {
        flex: 1;
        justify-content: center;
    }
    
    .products.leo-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products.leo-list-view li.product {
        flex-direction: column;
    }
    
    .products.leo-list-view li.product .product-image-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .leo-shop-title {
        font-size: 1.5rem;
    }
    
    .products.leo-grid-view {
        grid-template-columns: 1fr;
    }
    
    .leo-shop-sidebar {
        width: 100%;
    }
}

/* ============================================
   Leo Beauty Shop Archive Page Styles
   ============================================ */

/* Shop Hero Section */
.leo-shop-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c4955f 100%);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.leo-shop-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}

.leo-shop-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.leo-breadcrumb {
    margin-top: 30px;
}

.woocommerce-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
    color: #ffffff;
}

.leo-breadcrumb-separator {
    margin: 0 5px;
    opacity: 0.7;
}

/* Shop Banner */
.leo-shop-banner {
    margin: 40px 0;
}

.leo-shop-banner img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Shop Layout */
.leo-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Shop Sidebar */
.leo-shop-sidebar {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.leo-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.leo-sidebar-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-icon {
    font-size: 1.2rem;
}

.leo-clear-filters {
    background: none;
    border: none;
    color: var(--error-color);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.leo-clear-filters:hover {
    background: var(--accent-color);
}

.leo-sidebar-inner {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding-right: 10px;
}

.leo-sidebar-inner::-webkit-scrollbar {
    width: 6px;
}

.leo-sidebar-inner::-webkit-scrollbar-track {
    background: var(--accent-color);
    border-radius: 3px;
}

.leo-sidebar-inner::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Widgets */
.leo-widget {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.leo-widget:last-child {
    border-bottom: none;
}

.leo-widget-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.leo-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leo-category-list li {
    margin-bottom: 10px;
}

.leo-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--accent-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.leo-category-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(-5px);
}

.cat-name {
    font-weight: 500;
}

.cat-count {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Mobile Filter Actions */
.leo-mobile-filter-actions {
    display: none;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.leo-apply-filters {
    flex: 1;
    padding: 12px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.leo-close-filters {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Shop Content */
.leo-shop-content {
    min-width: 0;
}

/* Quick Filters */
.leo-quick-filters {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.leo-quick-filter-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.leo-quick-filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.leo-quick-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.leo-quick-filter:hover {
    border-color: var(--primary-color);
    background: #ffffff;
    transform: translateY(-2px);
}

.leo-quick-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.filter-icon {
    font-size: 1rem;
}

/* Shop Toolbar */
.leo-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.leo-toolbar-left,
.leo-toolbar-center,
.leo-toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.leo-current-category {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--accent-color);
    border-radius: 8px;
    font-size: 0.95rem;
}

.current-cat-icon {
    font-size: 1.2rem;
}

.cat-product-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* View Toggle */
.leo-view-toggle-group {
    display: flex;
    gap: 5px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
}

.leo-view-toggle {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leo-view-toggle:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.leo-view-toggle.active {
    background: var(--primary-color);
    color: #ffffff;
}

/* Product Count */
.leo-product-count {
    font-size: 0.95rem;
    color: var(--text-light);
}

.count-current {
    font-weight: 700;
    color: var(--primary-color);
}

.count-total {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Sort Wrapper */
.leo-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.leo-sort-wrapper select {
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    background: #ffffff;
}

.leo-sort-wrapper select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Mobile Filter Toggle */
.leo-mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leo-mobile-filter-toggle:hover {
    background: var(--secondary-color);
}

/* Products Grid/List View */
.products.leo-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.products.leo-list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products.leo-list-view li.product {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.products.leo-list-view li.product .product-image-wrapper {
    width: 200px;
    flex-shrink: 0;
}

.products.leo-list-view li.product .leo-product-info {
    flex: 1;
}

/* No Products */
.leo-no-products {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.leo-no-products-icon {
    margin-bottom: 30px;
}

.leo-no-products-icon svg {
    opacity: 0.5;
}

.leo-no-products h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.leo-no-products p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Shop Bottom Banner */
.leo-shop-bottom-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 60px 20px;
    margin-top: 60px;
    text-align: center;
    color: #ffffff;
}

.leo-bottom-banner-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.leo-bottom-banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.leo-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.leo-btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Shop Page */
@media screen and (max-width: 1024px) {
    .leo-shop-layout {
        grid-template-columns: 1fr;
    }
    
    .leo-shop-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .leo-shop-sidebar.active {
        right: 0;
    }
    
    .leo-mobile-filter-actions {
        display: flex;
    }
    
    .leo-mobile-filter-toggle {
        display: flex;
    }
    
    body.leo-filters-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }
}

@media screen and (max-width: 768px) {
    .leo-shop-hero {
        padding: 40px 15px;
    }
    
    .leo-shop-title {
        font-size: 2rem;
    }
    
    .leo-shop-subtitle {
        font-size: 1.1rem;
    }
    
    .leo-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .leo-toolbar-left,
    .leo-toolbar-center,
    .leo-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .leo-quick-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .leo-quick-filter-buttons {
        width: 100%;
    }
    
    .leo-quick-filter {
        flex: 1;
        justify-content: center;
    }
    
    .products.leo-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products.leo-list-view li.product {
        flex-direction: column;
    }
    
    .products.leo-list-view li.product .product-image-wrapper {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .leo-shop-title {
        font-size: 1.5rem;
    }
    
    .products.leo-grid-view {
        grid-template-columns: 1fr;
    }
    
    .leo-shop-sidebar {
        width: 100%;
    }
}

