/*
Theme Name: Batistello Theme
Theme URI: https://batistello.co
Description: Tema para Batistello - Bolsos y Accesorios en Cuero
Version: 1.3.0
Template: astra
*/

:root {
    --color-dark: #3d2b1f;
    --color-tan: #8b7355;
    --color-cream: #faf8f5;
    --color-beige: #f5f0e8;
    --color-white: #ffffff;
    --color-gold: #c9a86c;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
    --transition: 0.3s ease;
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

.batistello-landing {
    font-family: var(--font-sans);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.batistello-landing * { box-sizing: border-box; }

.batistello-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.batistello-landing .text-center { text-align: center; }

/* Navigation */
.batistello-landing .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.batistello-landing .nav.scrolled {
    background: rgba(255,255,255,0.98);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.batistello-landing .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.batistello-landing .nav-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.batistello-landing .nav.scrolled .nav-logo img {
    height: 55px;
}

.batistello-landing .logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 3px;
}

.batistello-landing .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.batistello-landing .nav-links a {
    font-size: 0.9rem;
    color: var(--color-dark);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.batistello-landing .nav-links a:hover {
    color: var(--color-tan);
}

.batistello-landing .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.batistello-landing .nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
}

/* Buttons */
.batistello-landing .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.batistello-landing .btn-primary {
    background: var(--color-dark);
    color: var(--color-white);
}

.batistello-landing .btn-primary:hover {
    background: var(--color-tan);
    transform: translateY(-2px);
}

.batistello-landing .btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.batistello-landing .btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* Mobile Nav */
.batistello-landing .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-cream);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
}

.batistello-landing .mobile-nav.active {
    right: 0;
}

.batistello-landing .mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.batistello-landing .mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.batistello-landing .mobile-nav-links li {
    margin: 1.5rem 0;
}

.batistello-landing .mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-dark);
    text-decoration: none;
}

/* Hero */
.batistello-landing .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    overflow: hidden;
}

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

.batistello-landing .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.batistello-landing .hero-slide.active {
    opacity: 1;
}

.batistello-landing .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 245, 0.75);
    z-index: 1;
}

.batistello-landing .hero-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.batistello-landing .hero-logo img {
    height: 120px;
    margin-bottom: 2rem;
}

.batistello-landing .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-tan);
    margin-bottom: 1rem;
}

.batistello-landing .hero h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.batistello-landing .hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-tan);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.batistello-landing .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.batistello-landing .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.batistello-landing .hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-tan);
}

.batistello-landing .hero-scroll-line {
    width: 1px;
    height: 50px;
    background: var(--color-tan);
    margin: 0.5rem auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section Labels */
.batistello-landing .section-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-tan);
    margin-bottom: 1rem;
}

.batistello-landing .section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.batistello-landing .section-intro {
    font-size: 1.1rem;
    color: var(--color-tan);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Collection / Products - FONDO BLANCO */
.batistello-landing .collection {
    padding: 6rem 0;
    background: var(--color-white);
}

.batistello-landing .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.batistello-landing .product-card {
    background: #ffffff !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.batistello-landing .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.batistello-landing .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #ffffff !important;
}

.batistello-landing .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 1rem;
    transition: var(--transition);
}

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

.batistello-landing .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 43, 31, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.batistello-landing .product-card:hover .product-overlay {
    opacity: 1;
}

.batistello-landing .product-info {
    padding: 1.5rem;
    text-align: center;
    background: #ffffff !important;
}

.batistello-landing .product-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    color: var(--color-dark);
}

.batistello-landing .product-price {
    font-size: 1rem;
    color: var(--color-tan);
    font-weight: 500;
}

/* Concept */
.batistello-landing .concept {
    padding: 6rem 0;
    background: var(--color-beige);
}

.batistello-landing .concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.batistello-landing .concept-image img {
    width: 100%;
    border-radius: 8px;
}

.batistello-landing .concept-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.batistello-landing .concept-content p {
    margin-bottom: 1rem;
    color: #666;
}

.batistello-landing .concept-signature {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-tan);
    margin-top: 2rem;
}

/* Materials */
.batistello-landing .materials {
    padding: 6rem 0;
    background: var(--color-white);
}

.batistello-landing .materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.batistello-landing .material-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-cream);
    border-radius: 8px;
}

.batistello-landing .material-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.batistello-landing .material-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.batistello-landing .material-card p {
    font-size: 0.9rem;
    color: var(--color-tan);
}

/* Contact */
.batistello-landing .contact {
    padding: 6rem 0;
    background: var(--color-beige);
}

.batistello-landing .contact h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.batistello-landing .contact-cta {
    margin: 2rem 0;
}

.batistello-landing .btn-whatsapp:hover {
    background: #25d366;
}

.batistello-landing .contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.batistello-landing .contact-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-tan);
    margin-bottom: 0.5rem;
}

.batistello-landing .contact-item a,
.batistello-landing .contact-item span {
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1.1rem;
}

/* Footer */
.batistello-landing .footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 4rem 0 2rem;
}

.batistello-landing .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.batistello-landing .footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.batistello-landing .footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.batistello-landing .footer-links a {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.batistello-landing .footer-links a:hover {
    opacity: 1;
}

.batistello-landing .footer-social {
    display: flex;
    gap: 1.5rem;
}

.batistello-landing .footer-social a {
    color: var(--color-cream);
    text-decoration: none;
    opacity: 0.8;
}

.batistello-landing .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* WhatsApp Float */
.batistello-landing .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.batistello-landing .whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.batistello-landing .whatsapp-float a:hover {
    transform: scale(1.1);
}

.batistello-landing .whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Reveal Animation */
.batistello-landing .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.batistello-landing .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .batistello-landing .nav-links,
    .batistello-landing .nav-cta { display: none; }
    .batistello-landing .nav-toggle { display: flex; }
    .batistello-landing .hero h1 { font-size: 3rem; }
    .batistello-landing .products-grid { grid-template-columns: repeat(2, 1fr); }
    .batistello-landing .concept-grid { grid-template-columns: 1fr; }
    .batistello-landing .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .batistello-landing .footer-main { flex-direction: column; gap: 2rem; text-align: center; }
    .batistello-landing .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}

@media (max-width: 576px) {
    .batistello-landing .hero h1 { font-size: 2.2rem; }
    .batistello-landing .section-title { font-size: 2rem; }
    .batistello-landing .products-grid { grid-template-columns: 1fr; }
    .batistello-landing .materials-grid { grid-template-columns: 1fr; }
    .batistello-landing .contact-info { flex-direction: column; gap: 2rem; }
}

/* ============================================
   WOOCOMMERCE STYLES
   ============================================ */

.woocommerce .woocommerce-products-header__title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.woocommerce ul.products li.product {
    background: #ffffff !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 1.5rem;
    margin: 0 !important;
    width: 100% !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 300px;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 1rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-dark);
    padding: 1rem 1rem 0.5rem;
    margin: 0;
}

.woocommerce ul.products li.product .price {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-tan);
    font-weight: 500;
}

.woocommerce ul.products li.product .batistello-whatsapp-btn,
.woocommerce div.product .batistello-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-dark);
    color: var(--color-white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.woocommerce ul.products li.product .batistello-whatsapp-btn:hover,
.woocommerce div.product .batistello-whatsapp-btn:hover {
    background-color: #25d366;
    transform: scale(1.02);
}

.woocommerce div.product .product_title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-dark);
}

.woocommerce div.product p.price {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--color-tan);
}

.woocommerce div.product div.images {
    background: #ffffff !important;
    padding: 1rem;
    border-radius: 8px;
}

.woocommerce div.product div.images img {
    background: #ffffff !important;
}

/* Hide cart elements */
.woocommerce a.added_to_cart,
.widget_shopping_cart,
.ast-site-header-cart {
    display: none !important;
}

@media (max-width: 992px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .woocommerce ul.products { grid-template-columns: 1fr; }
}
