/*
Theme Name: Negroni Store
Theme URI: https://tienda.camparimx.com
Author: Campari México
Author URI: https://camparimx.com
Description: Tema personalizado para la tienda Negroni con sistema de monedas
Version: 1.0.0
License: GPL v2 or later
Text Domain: negroni-store
*/

:root {
    --primary-red: rgb(200, 15, 47);
    --primary-red-hover: rgb(160, 12, 38);
    --primary-blue: #007bff;
    --success-green: #28a745;
    --gray-bg: #f8f9fa;
    --gray-light: #e9ecef;
    --gray-border: #dee2e6;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(200, 15, 47, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 1rem;
    --border-radius-large: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.site-main {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WooCommerce Account Pages */
.woocommerce-MyAccount-navigation {
    background: var(--gray-bg);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

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

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

.woocommerce-MyAccount-navigation li:last-child {
    margin-bottom: 0;
}

.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
    background: var(--primary-red);
    color: var(--white);
}

.woocommerce-MyAccount-content {
    min-height: 400px;
}

.negroni-account-dashboard {
    padding: 2rem 0;
}

.user-greeting {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.coin-balance-box {
    background: linear-gradient(135deg, rgba(200, 15, 47, 0.05), rgba(160, 12, 38, 0.1));
    border: 2px solid rgba(200, 15, 47, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(200, 15, 47, 0.1);
}

.balance-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.coin-balance {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(200, 15, 47, 0.3);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.movements-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.movements-link:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
}

.action-buttons {
    text-align: center;
    margin: 2rem 0;
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
}

.featured-products h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-dark), var(--text-gray));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(200, 15, 47, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 15, 47, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(200, 15, 47, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(200, 15, 47, 0.2);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

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

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.product-card:hover .product-title a {
    color: var(--primary-red);
}

.product-price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-bottom {
    text-align: center;
    margin-top: 3rem;
}

/* Component-specific styles only - layout handled by global-layout.css */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.main-menu li {
    margin: 0;
}

.main-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.main-menu a:hover,
.main-menu .current-menu-item a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-logo:hover {
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 1;
    gap: 0.5rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(200, 15, 47, 0.3), 0 3px 10px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-red-hover), #8a0a1f);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(200, 15, 47, 0.4), 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(200, 15, 47, 0.35), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-red {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(200, 15, 47, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-red:hover {
    background: linear-gradient(135deg, var(--primary-red-hover), #8a0a1f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 15, 47, 0.4);
}

.btn-outline {
    background: var(--gray-light);
    color: var(--text-dark);
    border: 1px solid var(--gray-border);
}

.btn-outline:hover {
    background: var(--gray-border);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(200, 15, 47, 0.02), rgba(200, 15, 47, 0.05));
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(200,15,47,0.03)"/><circle cx="60" cy="40" r="1" fill="rgba(200,15,47,0.02)"/><circle cx="80" cy="80" r="1" fill="rgba(200,15,47,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(200, 15, 47, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-carousel:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 80px rgba(200, 15, 47, 0.2), 0 12px 35px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    display: none;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeIn 0.6s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

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

.carousel-slide h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(200, 15, 47, 0.1);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.carousel-slide p {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-text {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(200, 15, 47, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(200, 15, 47, 0.4);
    transform: scale(1.1);
}

.indicator.active {
    background: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 15, 47, 0.2), 0 2px 8px rgba(200, 15, 47, 0.3);
    transform: scale(1.2);
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafbfc 0%, rgba(248, 249, 250, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(200, 15, 47, 0.03) 0%, transparent 50%);
    animation: subtle-float 20s ease-in-out infinite;
}

@keyframes subtle-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -10px) rotate(1deg); }
}

.welcome-section .container {
    position: relative;
    z-index: 2;
}

.welcome-title {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(200, 15, 47, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 15, 47, 0.12), 0 3px 8px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    border-radius: 50%;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(200, 15, 47, 0.3);
    flex-shrink: 0;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Forms */
.form-container {
    max-width: 100%;
    margin: 2rem 0;
    background: var(--white);
    padding: 0;
}

.form-tabs {
    display: flex;
    background: var(--gray-light);
    border-radius: 0.5rem 0.5rem 0 0;
    overflow: hidden;
}

.form-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background: var(--gray-light);
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s;
}

.form-tab.active {
    background: var(--gray-bg);
    color: var(--text-dark);
}

.form-content {
    background: var(--gray-bg);
    padding: 2rem 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 15, 47, 0.1);
    background: var(--white);
}

.form-help-text {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Dashboard */
.dashboard {
    padding: 1.5rem 0;
}

.user-greeting {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.coin-balance-box {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.coin-balance {
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--text-dark);
}

.dashboard-info {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
    margin: 1rem 0;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.product-card {
    background: var(--gray-light);
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    background: var(--white);
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.product-info {
    padding: 0;
}

.product-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: normal;
}

.product-price {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: normal;
    line-height: 1.4;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-success {
    background: var(--primary-red);
    color: var(--white);
}

/* Receipt Upload */
.receipt-upload {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}

.camera-preview {
    width: 100%;
    max-width: 400px;
    margin: 1rem auto;
    border: 2px dashed var(--gray-border);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.camera-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

/* Checkout */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}

.checkout-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-carousel {
        min-height: 240px;
        border-radius: 1rem;
    }
    
    .carousel-slide {
        padding: 2rem 1.5rem;
    }
    
    .carousel-slide h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .carousel-slide p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-title {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .steps-grid {
        margin: 2rem 0;
        gap: 1.25rem;
    }
    
    .step-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .step-number {
        min-width: 2.25rem;
        height: 2.25rem;
        font-size: 0.8rem;
    }
    
    .step-card p {
        font-size: 0.95rem;
    }
    
    .featured-products {
        padding: 3rem 0;
    }
    
    .featured-products h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .product-card {
        border-radius: 1rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        padding: 0.75rem 0;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .main-nav {
        order: 3;
        flex: 1 1 100%;
    }
    
    .main-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .main-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        min-height: 200px;
    }
    
    .carousel-slide h2 {
        font-size: 1.5rem;
    }
    
    .carousel-slide p {
        font-size: 0.95rem;
    }
    
    .welcome-title {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.site-footer {
    background: var(--gray-bg);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-border);
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--text-dark);
}

.footer-cta {
    margin-bottom: 2rem;
    text-align: center;
}

.footer-cta .btn {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    color: var(--white) !important;
    padding: 0.75rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(200, 15, 47, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-cta .btn:hover {
    background: linear-gradient(135deg, var(--primary-red-hover), #8a0a1f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 15, 47, 0.4);
}

.footer-cta .btn:before {
    content: '📍';
    font-size: 1rem;
}

/* Additional Styles */
.btn-block {
    width: 100%;
    text-align: center;
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(200, 15, 47, 0.1);
}

.btn-white:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 15, 47, 0.3);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.divider {
    border-top: 1px solid var(--gray-border);
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    top: -0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Product Single */
.product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.product-price-display {
    margin: 2rem 0;
}

.coin-price-large {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(200, 15, 47, 0.3);
    letter-spacing: -0.5px;
}

.balance-status {
    margin: 1rem 0;
    padding: 0.75rem;
    border-radius: 0.375rem;
}

.balance-status.success {
    background: #d1fae5;
    color: var(--success-green);
}

.balance-status.error {
    background: #fee2e2;
    color: var(--primary-red);
}

.quantity-wrapper {
    margin: 2rem 0;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-border);
    border-radius: 0.375rem;
    margin: 0 1rem;
}

.quantity-selector button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.25rem;
}

.quantity-selector input {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Notifications */
.notification {
    position: fixed;
    top: -100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    background: var(--text-dark);
    color: var(--white);
    transition: top 0.3s ease;
    z-index: 9999;
}

.notification.show {
    top: 20px;
}

.notification.success {
    background: var(--success-green);
}

.notification.error {
    background: var(--primary-red);
}

/* Transactions */
.transactions-table {
    width: 100%;
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    margin: 2rem 0;
}

.transactions-table th {
    background: var(--gray-bg);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.transactions-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-border);
}

.transactions-table .positive {
    color: var(--success-green);
}

.transactions-table .negative {
    color: var(--primary-red);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem;
        display: none;
        flex-direction: column;
        min-width: 200px;
    }
    
    .header-nav.active {
        display: flex;
    }
    
    .product-single {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

/* Cart */
.cart-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.coin-balance-header {
    font-weight: 600;
    color: var(--primary-red);
    text-shadow: 0 1px 2px rgba(200, 15, 47, 0.1);
}

/* Profile Link */
.profile-link {
    color: var(--primary-red);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-link:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
    transform: translateX(2px);
}

/* Movements Link */
.movements-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.movements-link:hover {
    color: var(--primary-red-hover);
    text-decoration: underline;
    transform: translateX(2px);
}

/* Action Buttons */
.action-buttons {
    text-align: center;
    margin: 2rem 0;
}

.cta-bottom {
    text-align: center;
    margin: 3rem 0;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.125rem;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    .site-header {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
    }
    
    .header-nav {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-red-hover));
        box-shadow: 0 4px 20px rgba(200, 15, 47, 0.3);
    }
}

/* WooCommerce Shop Page Adjustments */
.woocommerce-shop .site-main,
.archive.woocommerce .site-main,
.woocommerce.archive .site-main {
    padding: 2rem 0;
    max-width: 100%;
    margin: 0;
}

/* Shop page gets full-width treatment */
.woocommerce-shop .container,
.archive.woocommerce .container,
.woocommerce-page.archive .container {
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .woocommerce-shop .container,
    .archive.woocommerce .container,
    .woocommerce-page.archive .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .woocommerce-shop .container,
    .archive.woocommerce .container,
    .woocommerce-page.archive .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1440px) {
    .woocommerce-shop .container,
    .archive.woocommerce .container,
    .woocommerce-page.archive .container {
        padding: 0 4rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* Shop page layout */
.woocommerce-shop .site-main,
.archive.woocommerce .site-main {
    width: 100%;
}

/* Override container constraints for shop page */
body.woocommerce-shop .container,
body.archive.woocommerce .container {
    max-width: 100% !important;
}

.woocommerce-products-wrapper {
    width: 100%;
}

/* Remove any default WooCommerce container constraints */
.woocommerce-shop .col-full,
.archive.woocommerce .col-full {
    max-width: 100% !important;
    padding: 0;
}

/* Product Grid - Clean Implementation */
.woocommerce ul.products {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Responsive Grid */
@media (min-width: 640px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

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

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

/* Shop loop controls */
.woocommerce-result-count {
    margin: 0 0 1rem 0;
}

.woocommerce-ordering {
    margin: 0 0 2rem 0;
}

.woocommerce .woocommerce-before-shop-loop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Product items */
.woocommerce ul.products li.product {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    width: 100%;
    margin: 0;
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 15, 47, 0.15);
}

/* Hide default WordPress widgets in shop */
.woocommerce-shop .widget_recent_entries,
.woocommerce-shop .widget_recent_comments,
.archive.woocommerce .widget_recent_entries,
.archive.woocommerce .widget_recent_comments {
    display: none !important;
}

/* Fix main content area to push footer down */
.site-main {
    min-height: calc(100vh - 400px);
    padding-bottom: 3rem;
}

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
}

/* Shop page content wrapper */
.woocommerce-products-header {
    margin-bottom: 2rem;
}

/* Remove any Avada sidebar widgets */
.fusion-widget-area .widget_recent_entries,
.fusion-widget-area .widget_recent_comments {
    display: none !important;
}