/* ========================================
   ATLAS - Estilos Principales
   ======================================== */

/* Variables CSS */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #000000;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

/* ========================================
   Header & Navegación
   ======================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFDF1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: #000000;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   Nav Icons & Carrito
   ======================================== */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon {
    position: relative;
    color: #000000;
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.cart-icon:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Carrito Modal
   ======================================== */
.cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-modal.active {
    visibility: visible;
    opacity: 1;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cart-panel {
    position: absolute;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-modal.active .cart-panel {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--primary-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: block;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cart-empty .btn {
    margin-top: 10px;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto auto auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-light);
}

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

.cart-item-info h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.8rem;
    color: var(--text-dark);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.qty-value {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.cart-item-subtotal {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 70px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding: 20px;
    background: var(--bg-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cart-total span:first-child {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

#cartTotal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Checkout Page
   ======================================== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-form {
    background: var(--gradient-secondary);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    color: white;
}

.checkout-form h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form h2 i {
    color: var(--primary-color);
}

.checkout-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form-fields .form-group label {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-form-fields .form-group label i {
    color: var(--primary-color);
}

.checkout-form-fields .form-group input,
.checkout-form-fields .form-group select,
.checkout-form-fields .form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #ffffff;
    color: var(--text-dark);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.checkout-summary {
    background: var(--gradient-secondary);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
    color: white;
}

.checkout-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-summary h2 i {
    color: var(--primary-color);
}

.summary-products {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

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

.summary-item-info h4 {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.summary-item-info p {
    font-size: 0.8rem;
    color: #cccccc;
}

.summary-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.summary-totals {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 1rem;
    color: #ffffff;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 10px;
}

.summary-row.total span:last-child {
    color: var(--primary-color);
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.checkout-actions .btn {
    width: 100%;
    justify-content: center;
}

.btn-checkout {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.payment-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
}

.payment-info p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info p:last-child {
    margin-bottom: 0;
}

.payment-info i {
    color: var(--primary-color);
    width: 20px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.payment-option input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--primary-color);
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
    flex: 1;
}

.payment-label i {
    font-size: 1.2rem;
}

.card-logos {
    display: flex;
    gap: 8px;
    margin-left: auto;
    font-size: 1.5rem;
}

.card-logos i {
    color: #ffffff;
}

.card-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.card-type-display {
    display: none;
    margin-top: 8px;
}

.card-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-type-badge i {
    font-size: 1.3rem;
}

.comprobante-preview {
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
}

.file-name {
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-name i {
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #ffffff;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.terms-link:hover {
    color: var(--primary-light);
}

.payment-details {
    margin-top: 20px;
    margin-bottom: 20px;
}

.payment-info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.payment-info-box h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-box h4 i {
    color: var(--primary-color);
}

.bank-info,
.cod-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}

.bank-info p,
.cod-info p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.bank-info p:last-child,
.cod-info p:last-child {
    margin-bottom: 0;
}

.payment-instructions {
    background: rgba(37, 99, 235, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-sm);
}

.payment-instructions p {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.payment-instructions ul {
    margin: 0;
    padding-left: 20px;
}

.payment-instructions li {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.5;
}

.whatsapp-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-info p {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 8px;
}

.whatsapp-info p:last-child {
    margin-bottom: 0;
}

.whatsapp-info i {
    color: #25D366;
    width: 20px;
}

/* ========================================
   Product Quick View Modal
   ======================================== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-modal.active {
    visibility: visible;
    opacity: 1;
}

.product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.product-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    max-height: 800px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    background: #1a1a2e;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.product-modal.active .product-modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    z-index: 100;
}

.product-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow: hidden;
}

.product-modal-gallery {
    padding: 30px;
    background: #0f0f1a;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.product-modal-main-image {
    width: 100%;
    height: 350px;
    min-height: 350px;
    background: #1a1a2e;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-modal-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-shrink: 0;
}

.product-modal-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-modal-thumbnails .thumbnail:hover,
.product-modal-thumbnails .thumbnail.active {
    border-color: var(--primary-color);
}

.product-modal-thumbnails .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 40px;
    overflow-y: auto;
    background: #1a1a2e;
    max-height: 85vh;
}

.product-modal-info::-webkit-scrollbar {
    width: 8px;
}

.product-modal-info::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.product-modal-info::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.product-modal-info::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.product-modal-header {
    margin-bottom: 20px;
}

.product-modal-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-modal-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
}

.product-modal-rating i {
    font-size: 0.9rem;
}

.product-modal-rating span {
    color: #cccccc;
    font-size: 0.9rem;
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.product-modal-price .price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-modal-price .price-old {
    font-size: 1.3rem;
    color: #666666;
    text-decoration: line-through;
}

.product-modal-description h3,
.product-modal-features h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-modal-description {
    margin-bottom: 25px;
}

.product-modal-description p {
    color: #cccccc;
    line-height: 1.7;
}

.product-modal-features {
    margin-bottom: 25px;
}

.product-modal-features ul {
    list-style: none;
    padding: 0;
}

.product-modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    padding: 8px 0;
    font-size: 0.95rem;
}

.product-modal-features li i {
    color: var(--success-color);
}

.product-modal-stock {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
}

.stock-status i {
    color: var(--primary-color);
}

.stock-available {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-color);
    font-size: 0.9rem;
}

.product-modal-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-end;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-selector label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-controls .qty-btn {
    width: 40px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.quantity-controls .qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.quantity-controls input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 600;
}

.btn-add-to-cart {
    flex: 1;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.product-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

/* Responsive Modal */
@media (max-width: 968px) {
    .product-modal-content {
        grid-template-columns: 1fr;
    }
    
    .product-modal-gallery {
        padding: 20px;
    }
    
    .product-modal-main-image {
        height: 300px;
    }
    
    .product-modal-info {
        padding: 25px;
    }
    
    .product-modal-title {
        font-size: 1.5rem;
    }
    
    .product-modal-price .price-current {
        font-size: 1.8rem;
    }
    
    .product-modal-actions {
        flex-direction: column;
    }
    
    .quantity-selector {
        width: 100%;
    }
    
    .quantity-controls {
        width: 100%;
    }
    
    .quantity-controls input {
        flex: 1;
    }
}

/* ========================================
   Botones
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.btn-cart {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
    margin-top: 12px;
    flex-shrink: 0;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

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

/* ========================================
   Page Header
   ======================================== */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

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

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: #000000;
}

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

.feature-card {
    background: #000000;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.7;
}

/* ========================================
   Products Preview
   ======================================== */
.products-preview {
    background: #000000;
}

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

.category-card {
    background: #000000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.category-image {
    height: 300px;
    min-height: 300px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}

.category-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    border-radius: 12px;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.placeholder-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.category-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.category-link:hover {
    gap: 15px;
    color: var(--primary-dark);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    background: #000000;
}

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

.testimonial-card {
    background: #000000;
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: #cccccc;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content {
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-video video {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 400px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    background: rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* ========================================
   Products Page
   ======================================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.products-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-color);
}

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

.product-card {
    background: #000000;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    height: 280px;
    min-height: 280px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 15px;
    cursor: pointer;
}

.product-image::after {
    content: '👁 Ver detalles';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.product-image:hover::after {
    opacity: 1;
}

.product-image:hover {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.5);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.placeholder-product {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.sale {
    background: var(--error-color);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.4;
    min-height: auto;
}

.product-description {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-rating span {
    color: #cccccc;
    margin-left: 5px;
}

.product-stock {
    color: var(--success-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-stock i {
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-current::before {
    content: '';
}

.price-old {
    font-size: 1rem;
    color: #999999;
    text-decoration: line-through;
}

/* Features Banner */
.features-banner {
    background: #000000;
    padding: 60px 0;
}

.features-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.banner-item {
    text-align: center;
    padding: 20px;
}

.banner-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.banner-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.banner-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* ========================================
   About Page
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

/* Values Section */
.values {
    background: #000000;
}

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

.value-card {
    background: #000000;
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-card p {
    color: #cccccc;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-role {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mission & Vision */
.mission-vision {
    background: #000000;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: #000000;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.mv-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    color: white;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-intro {
    color: #cccccc;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Contact Info */
.contact-info {
    background: var(--gradient-secondary);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    color: white;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-intro {
    color: #cccccc;
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.info-content p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.6;
}

.social-contact h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    height: 400px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #cccccc;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3 i {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-section a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-right {
    padding-right: 80px;
}

.epyme-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.epyme-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 5px 12px;
    border-radius: 20px;
}

.epyme-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.15);
}

.epyme-tagline {
    color: #cccccc;
    font-size: 0.85rem;
}

.epyme-logo {
    display: inline-block;
    transition: var(--transition);
    padding: 5px;
    border-radius: 10px;
}

.epyme-logo:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.epyme-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.epyme-logo:hover img {
    filter: brightness(0) invert(1) brightness(1.2);
}

/* ========================================
   Main Content Wrapper
   ======================================== */
.main-content {
    min-height: calc(100vh - 70px - 300px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid,
    .contact-grid,
    .cta-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        text-align: center;
        padding: 30px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000000;
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        color: #ffffff;
    }

    .nav-link.active {
        color: var(--primary-color);
    }

    .nav-icons {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .cart-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .cart-panel {
        width: 100%;
        right: -100%;
    }

    .cart-item {
        grid-template-columns: 60px 1fr auto;
        gap: 10px;
    }

    .cart-item-subtotal {
        grid-column: 3;
        text-align: right;
    }

    .cart-item-remove {
        grid-column: 3;
        width: 30px;
        height: 30px;
    }

    .cart-item-quantity {
        grid-column: 3;
    }

    .qty-btn {
        width: 25px;
        height: 25px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 50px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-image {
        height: 250px;
    }

    .category-content {
        padding: 20px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }

    .info-cards {
        gap: 15px;
    }

    .social-links-large {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .filter-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

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

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

    .footer-section .social-links {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 450px;
    }

    .hero-image img {
        object-position: center top;
    }

    .hero-title {
        font-size: 2rem;
        font-weight: 700;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.5;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 700;
    }

    .section {
        padding: 40px 0;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .category-image {
        height: 220px;
    }

    .category-content h3 {
        font-size: 1.2rem;
    }

    .category-content p {
        font-size: 0.9rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-content p {
        font-size: 0.9rem;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 0.95rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .product-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price-current {
        font-size: 1.3rem;
    }

    .btn-cart {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .features-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .banner-item i {
        font-size: 2rem;
    }

    .banner-item h4 {
        font-size: 0.9rem;
    }

    .banner-item p {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-rating {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-video {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cta-video video {
        width: 100%;
        height: 250px;
        max-width: 100%;
        object-fit: cover;
        border-radius: var(--border-radius-lg);
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 0 15px 15px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .footer-logo img {
        height: 50px;
    }

    .checkout-form,
    .checkout-summary {
        padding: 20px 15px;
    }

    .checkout-summary {
        position: static;
    }

    .summary-totals {
        margin-bottom: 15px;
    }

    .summary-row.total {
        font-size: 1.1rem;
    }

    .btn-checkout {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .payment-info {
        padding: 15px;
    }

    .payment-info p {
        font-size: 0.85rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .payment-info-box {
        padding: 20px 15px;
    }

    .payment-info-box h4 {
        font-size: 1rem;
    }

    .bank-info,
    .cod-info {
        padding: 12px;
    }

    .payment-instructions {
        padding: 12px;
    }

    .payment-instructions li {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        padding-right: 0;
    }

    .epyme-content {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.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; }

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
