/* ===== PÁGINA PRODUCTO ===== */
.aqg-producto-page {
    background: #ffffff;
    padding: 50px 24px 30px;
}
.aqg-producto-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
}

/* Galería */
.aqg-galeria-main {
    background: linear-gradient(160deg, #0d3327 0%, #123d2e 100%);
    border-radius: 20px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-bottom: 14px;
    overflow: hidden;
}
.aqg-galeria-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}
.aqg-galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.aqg-galeria-thumb {
    background: #f2f6f4;
    border-radius: 12px;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.aqg-galeria-thumb:hover {
    border-color: #7fd9b8;
}
.aqg-galeria-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info columna */
.aqg-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.aqg-stars {
    color: #f5b500;
    font-size: 16px;
    letter-spacing: 2px;
}
.aqg-rating-text {
    color: #8a9a92;
    font-size: 13px;
    font-weight: 500;
}
.aqg-info-col h1 {
    color: #0d2b21;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.25;
}
.aqg-subtitulo {
    color: #16a874;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 18px;
}
.aqg-descripcion {
    color: #5c6860;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 20px;
}
.aqg-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.aqg-checklist li {
    color: #2f3d38;
    font-size: 14px;
    padding: 6px 0 6px 26px;
    position: relative;
}
.aqg-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #16a874;
    font-weight: 700;
}
.aqg-info-badge {
    display: inline-block;
    background: #f2f6f4;
    color: #5c6860;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
}
.aqg-info-badge a {
    color: #16a874;
    font-weight: 600;
    text-decoration: underline;
}
.aqg-select-label {
    color: #0d2b21;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px;
}

/* Selector de paquetes */
.aqg-paquetes-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.aqg-paquete-sel {
    position: relative;
    border: 1.5px solid #e4ebe7;
    border-radius: 14px;
    padding: 16px 10px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.aqg-paquete-sel:hover {
    border-color: #7fd9b8;
}
.aqg-paquete-sel.aqg-paquete-sel-active {
    border-color: #0d2b21;
    background: #f7faf8;
    box-shadow: 0 0 0 1px #0d2b21;
}
.aqg-paquete-sel-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d2b21;
    color: #7fd9b8;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.aqg-paquete-sel img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin: 6px auto 8px;
    display: block;
}
.aqg-paquete-sel strong {
    display: block;
    color: #0d2b21;
    font-size: 13px;
    margin-bottom: 4px;
}
.aqg-paquete-sel-precio {
    color: #8a9a92;
    font-size: 11.5px;
}

/* Compra box */
.aqg-compra-box {
    border: 1.5px solid #e4ebe7;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 18px;
}
.aqg-compra-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0d2b21;
    font-size: 14px;
    font-weight: 600;
}
.aqg-compra-row strong {
    font-size: 20px;
}

.aqg-btn-add-cart {
    width: 100%;
    background: #0d2b21;
    color: #ffffff;
    border: none;
    padding: 17px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.aqg-btn-add-cart:hover {
    background: #145036;
}

.aqg-trust-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.aqg-trust-row span {
    color: #8a9a92;
    font-size: 12px;
    font-weight: 500;
}

/* ===== FAQ ACORDEÓN ===== */
.aqg-faq-section {
    background: #fbfdfc;
    padding: 50px 24px 70px;
}
.aqg-faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
}
.aqg-faq-item {
    border-bottom: 1px solid #e4ebe7;
}
.aqg-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: #0d2b21;
    font-size: 15.5px;
    font-weight: 600;
}
.aqg-faq-icon {
    font-size: 20px;
    color: #16a874;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.aqg-faq-item.aqg-faq-open .aqg-faq-icon {
    transform: rotate(45deg);
}
.aqg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.aqg-faq-item.aqg-faq-open .aqg-faq-answer {
    max-height: 300px;
}
.aqg-faq-answer p {
    color: #5c6860;
    font-size: 14px;
    line-height: 1.7;
    padding: 0 4px 20px;
    margin: 0;
}

/* ===== CHECKOUT PREMIUM ===== */
.aqg-checkout-section {
    background: #fbfdfc;
    padding: 40px 24px 90px;
}

/* Barra de pasos */
.aqg-checkout-topbar {
    max-width: 960px;
    margin: 0 auto 44px;
}
.aqg-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.aqg-step {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b7c4bd;
    font-size: 13px;
    font-weight: 600;
}
.aqg-step-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e4ebe7;
    color: #8a9a92;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.aqg-step-done .aqg-step-circle {
    background: #16a874;
    color: #ffffff;
}
.aqg-step-done { color: #16a874; }
.aqg-step-active .aqg-step-circle {
    background: #0d2b21;
    color: #7fd9b8;
}
.aqg-step-active { color: #0d2b21; }
.aqg-step-line {
    width: 40px;
    height: 1.5px;
    background: #e4ebe7;
}

/* Wrapper */
.aqg-checkout-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Bloques del formulario */
.aqg-checkout-block {
    background: #ffffff;
    border: 1px solid #eef3f0;
    border-radius: 16px;
    padding: 26px 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(13, 43, 33, 0.03);
}
.aqg-checkout-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.aqg-checkout-block-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0d2b21;
    color: #7fd9b8;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.aqg-checkout-block-header h3 {
    color: #0d2b21;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}
.aqg-checkout-block label {
    display: block;
    color: #3a4842;
    font-size: 13px;
    font-weight: 600;
    margin: 14px 0 6px;
}
.aqg-checkout-block label:first-of-type {
    margin-top: 0;
}
.aqg-checkout-block input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid #e4ebe7;
    background: #fbfdfc;
    color: #0d2b21;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.aqg-checkout-block input:focus {
    outline: none;
    border-color: #7fd9b8;
    background: #ffffff;
}
.aqg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.aqg-pago-desc {
    color: #8a9a92;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 16px;
}
.aqg-payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.aqg-payment-badge {
    background: #f2f6f4;
    color: #5c6860;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Columna resumen */
.aqg-checkout-summary-col {
    background: #0d2b21;
    border-radius: 18px;
    padding: 28px;
    position: sticky;
    top: 24px;
}
.aqg-checkout-summary-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin: 0 0 18px;
}
#aqg-checkout-resumen-items > div {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.aqg-checkout-subtotal-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    padding: 10px 0 0;
}
.aqg-envio-gratis {
    color: #7fd9b8;
    font-weight: 600;
}
.aqg-checkout-total-row {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin: 14px 0 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.aqg-btn-comprar {
    width: 100%;
    background: #7fd9b8;
    color: #0d2b21;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.aqg-btn-comprar:hover { opacity: 0.92; }
.aqg-btn-comprar:active { transform: scale(0.99); }
.aqg-btn-comprar:disabled { opacity: 0.4; cursor: not-allowed; }

.aqg-trust-list {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.aqg-trust-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
}
.aqg-trust-line svg {
    flex-shrink: 0;
}
.aqg-checkout-secure {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    margin: 20px 0 0;
}
.aqg-checkout-msg {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
}
.aqg-checkout-msg.error {
    color: #b33a3a;
    background: #fdeeee;
}
.aqg-checkout-msg.success {
    color: #0e7a54;
    background: #e9f7f1;
}

@media (max-width: 900px) {
    .aqg-checkout-wrapper { grid-template-columns: 1fr; }
    .aqg-checkout-summary-col { position: static; order: -1; }
    .aqg-form-row { grid-template-columns: 1fr; }
    .aqg-checkout-steps span:last-child { display: none; }
    .aqg-step { gap: 0; }
}

@media (max-width: 900px) {
    .aqg-producto-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .aqg-checkout-wrapper { grid-template-columns: 1fr; }
    .aqg-checkout-summary-col { position: static; }
    .aqg-form-row { grid-template-columns: 1fr; }
    .aqg-info-col h1 { font-size: 26px; }
}