/* ===================================
   CLAF GOLDSMITH - COLLAR DÍA DE LAS MADRES
   Estilos específicos de la landing page
   =================================== */

/* ---- BADGE ESPECIAL EN MENÚ ---- */
.nav-special-link {
    position: relative;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem !important;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 2px;
    transition: all 0.3s ease;
    animation: navPulse 3s ease-in-out infinite;
}

.nav-special-link::before {
    content: '🐾';
    margin-right: 4px;
    font-size: 0.8rem;
}

.nav-special-link::after {
    display: none !important;
}

.nav-special-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

@keyframes navPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    50% { box-shadow: 0 0 8px 2px rgba(212, 175, 55, 0.3); }
}


/* ---- BANNER DEL INDEX ---- */
.madres-banner {
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, #1a2744 40%, #3d1a2e 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.madres-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.madres-banner::after {
    display: none;
}

.madres-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.madres-banner-text h3 {
    color: var(--color-gold) !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    font-weight: 400 !important;
}

.madres-banner-text h2 {
    color: var(--color-white) !important;
    font-size: 2rem !important;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.madres-banner-text h2 span {
    color: var(--color-rose);
}

.madres-banner-text p {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.95rem;
    margin: 0;
}

.madres-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), #b8962a);
    color: var(--color-navy-dark) !important;
    padding: 0.8rem 1.5rem;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.madres-banner-cta:hover {
    background: linear-gradient(135deg, #b8962a, var(--color-gold));
    color: var(--color-navy-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .madres-banner::after { display: none; }
    .madres-banner-inner { justify-content: center; text-align: center; }
    .madres-banner-text h2 { font-size: 1.5rem !important; }
}


/* ---- HERO DE LA PÁGINA DEL COLLAR ---- */
.collar-hero {
    min-height: 70vh;
    background: linear-gradient(160deg, var(--color-navy-dark) 0%, #1e0f1e 50%, #3d1533 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 4rem;
}

.collar-hero-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.collar-hero-petals span {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatPetal linear infinite;
}

.collar-hero-petals span:nth-child(1)  { left:5%;  animation-duration:12s; animation-delay:0s; }
.collar-hero-petals span:nth-child(2)  { left:15%; animation-duration:14s; animation-delay:2s; }
.collar-hero-petals span:nth-child(3)  { left:30%; animation-duration:10s; animation-delay:1s; }
.collar-hero-petals span:nth-child(4)  { left:50%; animation-duration:16s; animation-delay:4s; }
.collar-hero-petals span:nth-child(5)  { left:65%; animation-duration:11s; animation-delay:3s; }
.collar-hero-petals span:nth-child(6)  { left:80%; animation-duration:13s; animation-delay:5s; }
.collar-hero-petals span:nth-child(7)  { left:92%; animation-duration:15s; animation-delay:1.5s; }

@keyframes floatPetal {
    0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0;    }
    10%  { opacity: 0.15; }
    90%  { opacity: 0.15; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.collar-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.collar-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--color-gold);
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.collar-hero h1 {
    color: var(--color-white) !important;
    font-size: 3.5rem !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem;
}

.collar-hero h1 em {
    font-style: normal;
    color: var(--color-rose);
}

.collar-hero-sub {
    color: rgba(255,255,255,0.75) !important;
    font-size: 1.2rem !important;
    margin-bottom: 2.5rem;
}

.collar-hero-arrow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounceArrow 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

.collar-hero-arrow i { font-size: 1.2rem; }

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}


/* ---- SECCIÓN PRODUCTO ---- */
.collar-product-section {
    padding: 160px 0 5rem;
    background: #faf9f7;
}

.collar-product-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.collar-image-wrapper {
    position: relative;
}

.collar-edition-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--color-rose);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.collar-main-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(10,51,71,0.08);
}

.collar-image-decoration {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    z-index: -1;
    pointer-events: none;
}

/* Product info */
.collar-product-info {}

.collar-category {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-rose);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.collar-product-name {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
    color: var(--color-navy) !important;
    margin-bottom: 0.5rem;
}

.collar-product-subtitle {
    font-size: 1rem;
    color: var(--color-gray-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.collar-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), transparent);
    margin: 1.5rem 0;
}

.collar-description {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.collar-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.collar-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-navy);
    padding: 0.5rem 0;
    border-bottom: 0.5px solid rgba(10,51,71,0.06);
}

.collar-features li:last-child { border-bottom: none; }

.collar-features li i {
    color: var(--color-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.collar-price-box {
    background: var(--color-white);
    border: 1px solid rgba(10,51,71,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.collar-price-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray-medium);
    margin-bottom: 0.25rem;
}

.collar-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1;
}

.collar-price-note {
    font-size: 0.8rem;
    color: var(--color-gray-medium);
    margin: 0;
}

.collar-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(40,167,69,0.1);
    color: #28a745;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    border: 1px solid rgba(40,167,69,0.3);
    border-radius: 2px;
}

.collar-stock-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: #28a745;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.collar-buy-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--color-navy-dark) 0%, #1a3a50 100%);
    color: var(--color-white) !important;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif !important;
}

.collar-buy-btn:hover {
    background: linear-gradient(135deg, var(--color-rose) 0%, #b8736e 100%);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 160, 0.4);
}

.collar-buy-btn i { margin-right: 0.5rem; }

.collar-trust-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.collar-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--color-gray-medium);
}

.collar-trust-item i { color: var(--color-gold); font-size: 0.85rem; }


/* ---- CARACTERÍSTICAS ---- */
.collar-specs-section {
    padding: 4rem 0;
    background: var(--color-white);
    border-top: 1px solid rgba(10,51,71,0.06);
}

.collar-specs-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.collar-spec-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(10,51,71,0.08);
    background: #faf9f7;
    transition: all 0.3s ease;
}

.collar-spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.collar-spec-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--color-rose), var(--color-coral));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}

.collar-spec-icon i {
    color: var(--color-white);
    font-size: 1.2rem;
}

.collar-spec-card h4 {
    font-size: 0.75rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray-medium) !important;
    margin-bottom: 0.4rem;
    font-weight: 400 !important;
}

.collar-spec-card p {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}


/* ---- CHECKOUT SECTION ---- */
.collar-checkout-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, #fdf9f5 0%, #f5f0ec 100%);
    border-top: 1px solid rgba(10,51,71,0.06);
}

.collar-checkout-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header .step-indicator {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    background: rgba(10,51,71,0.1);
    color: var(--color-gray-medium);
    transition: all 0.3s ease;
}

.step-item.active .step-num {
    background: var(--color-navy-dark);
    color: var(--color-white);
}

.step-item.done .step-num {
    background: var(--color-rose);
    color: var(--color-white);
}

.step-label {
    margin-left: 0.5rem;
    color: var(--color-gray-medium);
    display: none;
}

.step-item.active .step-label { color: var(--color-navy); display: block; }

.step-line {
    width: 60px;
    height: 1px;
    background: rgba(10,51,71,0.15);
    margin: 0 0.5rem;
}

/* Checkout card */
.checkout-card {
    background: var(--color-white);
    border: 1px solid rgba(10,51,71,0.08);
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    display: none;
}

.checkout-card.active { display: block; }

.checkout-card h3 {
    font-size: 1.3rem !important;
    color: var(--color-navy) !important;
    margin-bottom: 0.25rem;
}

.checkout-card .card-subtitle {
    font-size: 0.85rem;
    color: var(--color-gray-medium);
    margin-bottom: 2rem;
}

/* Form fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row.single { grid-template-columns: 1fr; }

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

.form-group label {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-navy);
    font-weight: 500;
}

.form-group label span { color: var(--color-rose); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(10,51,71,0.15);
    background: #faf9f7;
    font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--color-navy);
    outline: none;
    transition: all 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-rose);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(212, 165, 160, 0.1);
}

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

.form-hint {
    font-size: 0.75rem;
    color: var(--color-gray-medium);
    margin-top: 0.25rem;
}

/* Order summary */
.order-summary {
    background: #faf9f7;
    border: 1px solid rgba(10,51,71,0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-summary-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray-medium);
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 0.5px solid rgba(10,51,71,0.06);
    font-size: 0.9rem;
    color: var(--color-navy);
}

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

.order-item.total {
    font-weight: 700;
    font-size: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(10,51,71,0.1);
    border-bottom: none;
}

.order-item.total span:last-child { color: var(--color-rose); }

/* MercadoPago section */
.mp-payment-section {
    text-align: center;
    padding: 2rem;
    border: 1px dashed rgba(10,51,71,0.2);
    background: #faf9f7;
    margin-top: 1.5rem;
}

.mp-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mp-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #009ee3;
}

.mp-logo-text span { color: #00bcff; }

.mp-placeholder-text {
    font-size: 0.85rem;
    color: var(--color-gray-medium);
    margin-bottom: 1.5rem;
}

.mp-btn-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #009ee3;
    color: var(--color-white) !important;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    opacity: 1;
    font-family: 'Helvetica', sans-serif;
}

.mp-secure-note {
    font-size: 0.75rem;
    color: var(--color-gray-medium);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.mp-secure-note i { color: #28a745; }

/* Navigation buttons */
.checkout-nav-btns {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-checkout-prev {
    padding: 0.85rem 2rem;
    background: transparent;
    border: 1px solid rgba(10,51,71,0.2);
    color: var(--color-navy);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Helvetica', sans-serif;
}

.btn-checkout-prev:hover {
    background: rgba(10,51,71,0.05);
}

.btn-checkout-next {
    padding: 0.85rem 2rem;
    background: var(--color-navy-dark);
    color: var(--color-white) !important;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica', sans-serif;
    font-weight: 700;
}

.btn-checkout-next:hover {
    background: var(--color-rose);
    transform: translateY(-1px);
}

/* Success state */
.checkout-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border: 1px solid rgba(40,167,69,0.2);
    display: none;
}

.checkout-success.active { display: block; }

.success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Trust section pills */
.collar-trust-section {
    padding: 3rem 0;
    background: var(--color-navy-dark);
}

.collar-trust-pills {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-pill-icon {
    width: 50px; height: 50px;
    background: rgba(212, 165, 160, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.trust-pill-icon i {
    color: var(--color-rose);
    font-size: 1.1rem;
}

.trust-pill span {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}


/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .collar-hero h1 { font-size: 2.2rem !important; }
    .collar-product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .collar-image-decoration { display: none; }
    .collar-specs-grid { grid-template-columns: 1fr; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .collar-trust-pills { gap: 1.5rem; }
    .checkout-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .collar-hero h1 { font-size: 1.8rem !important; }
    .step-line { width: 30px; }
}
