.product-page {
    padding: 80px 0 0;
    background: #fff;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.product-gallery img {
    width: 100%;
    border-radius: 22px;
    display: block;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.product-gallery .woocommerce-product-gallery {
    border-radius: 22px;
    overflow: hidden;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark-green);
}

.product-info .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.product-info .price .woocommerce-Price-amount {
    color: inherit;
}

.product-info .woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 28px;
}

.product-info p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.product-info ul {
    margin: 20px 0;
    padding-left: 22px;
}

.product-info li {
    margin-bottom: 10px;
}

.single_add_to_cart_button {
    width: 100%;
    background: var(--primary) !important;
    color: var(--dark-green) !important;
    padding: 18px 24px !important;
    border-radius: 999px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 12px 25px rgba(244, 180, 0, 0.25) !important;
    cursor: pointer;
}

.single_add_to_cart_button:hover {
    background: var(--dark-green) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(29, 59, 32, 0.25) !important;
}

.quantity {
    margin-bottom: 20px;
}

/* ================= SHOP ================= */

.shop-page {
    padding: 90px 0;
}

.shop-page .section-title {
    text-align: center;
    font-size: 2.8rem;
    max-width: 700px;
    margin: 0 auto 60px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.shop-grid .plan-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shop-grid .plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.12);
}

.shop-grid .plan-card-image,
.shop-grid > .plan-card > a:first-child {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.shop-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
}

.shop-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-green);
    padding: 0 24px;
}

.shop-grid .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 0 24px;
}

.shop-grid .plan-description {
    flex: 1;
    margin-bottom: 20px;
    padding: 0 24px;
    line-height: 1.65;
    color: #666;
}

.shop-grid .plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 24px 24px;
    background: var(--dark-green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.shop-grid .plan-btn:hover {
    background: var(--dark);
}

.shop-grid .plan-features {
    padding: 0 24px;
    margin-bottom: 20px;
    list-style: none;
}

.shop-grid .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.shop-grid .plan-features li:last-child {
    border-bottom: none;
}

.shop-grid .plan-feature-icon {
    flex-shrink: 0;
    color: var(--dark);
}

/* Ocultar título duplicado en carrito y checkout */
.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header {
    display: none;
}

/* ================= TRUST BOX ================= */

.trust-box {
    margin-top: 28px;
    padding: 24px;
    background: #f8faf6;
    border: 1px solid #e5ece3;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--dark-green);
    font-size: 0.95rem;
    line-height: 1.5;
}

.trust-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 1px;
}

/* ================= PLAN DETAILS ================= */

.plan-details {
    max-width: 1300px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.plan-details h2 {
    font-size: 1.75rem;
    color: var(--dark-green);
    margin-bottom: 24px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plan-item {
    background: #f8faf6;
    border: 1px solid #e6ece5;
    border-radius: 16px;
    padding: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.plan-item-icon {
    display: block;
    color: var(--primary);
    margin-bottom: 10px;
}

.plan-item-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.plan-item strong {
    font-size: 1.15rem;
    color: var(--dark-green);
}

/* ================= HOW IT WORKS ================= */

.how-it-works {
    padding: 90px 0;
    background: var(--light-bg);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--dark-green);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ================= BENEFITS ================= */

.plan-benefits {
    padding: 90px 0;
    background: #fff;
}

.plan-benefits .container {
    max-width: 900px;
}

.plan-benefits h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-green);
}

.plan-benefits ul {
    display: grid;
    gap: 16px;
    padding-left: 0;
    list-style: none;
    font-size: 1.05rem;
    line-height: 1.75;
}

.plan-benefits li {
    color: #444;
    padding: 14px 18px;
    background: #f8faf6;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

/* ================= PRODUCT CTA ================= */

.product-cta {
    padding: 80px 0;
    background: var(--dark-green);
}

.product-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.product-cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--dark-green);
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.product-cta-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.product-cta-btn .trust-icon,
.product-cta-btn svg {
    color: inherit;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-info h1 {
        font-size: 2rem;
    }

    .product-info .price {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }

    .product-cta h2 {
        font-size: 1.6rem;
    }
}
