/**
 * Condalab Guía de Pedidos Styles
 */

/* ===== PS OVERRIDES ===== */
#module-cdlguiapedidos-guide #wrapper { padding-top: 0; }
#module-cdlguiapedidos-guide #content-wrapper { padding: 0; max-width: 100%; }
#module-cdlguiapedidos-guide #wrapper > .container { max-width: 100%; padding: 0; }
#module-cdlguiapedidos-guide .page-content { padding: 0; }
#module-cdlguiapedidos-guide #wrapper .breadcrumb { display: none; }

/* ===== HERO ===== */
.cdl-guide-hero {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 48px 0 64px;
}

.cdl-guide-hero__inner {
    position: relative;
    z-index: 2;
}

.cdl-guide-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.cdl-guide-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.cdl-guide-hero__breadcrumb a:hover { color: #fff; }
.cdl-guide-hero__breadcrumb svg { color: rgba(255, 255, 255, 0.3); }
.cdl-guide-hero__breadcrumb-active { color: #EBBE18; }

.cdl-guide-hero__title {
    font-family: 'Jost', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #fff;
}

.cdl-guide-hero__title--yellow { color: #EBBE18; }

.cdl-guide-hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.cdl-guide-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.cdl-guide-hero__wave img { width: 100%; display: block; }

/* ===== CONTENT ===== */
.cdl-guide {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

/* ===== STEPS ===== */
.cdl-guide__step {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid #eee;
}

.cdl-guide__step:last-of-type {
    border-bottom: none;
}

.cdl-guide__step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #EBBE18;
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
}

.cdl-guide__step-content { flex: 1; }

.cdl-guide__step-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.cdl-guide__step-content p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 12px;
}

.cdl-guide__step-content a {
    color: #EBBE18;
    font-weight: 600;
    text-decoration: none;
}

.cdl-guide__step-content a:hover { text-decoration: underline; }

.cdl-guide__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cdl-guide__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.cdl-guide__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #EBBE18;
    border-radius: 50%;
}

.cdl-guide__list li strong { color: #1a1a1a; }

/* ===== PRODUCT TAGS ===== */
.cdl-guide__products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.cdl-guide__product-tag {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== INFO BOX ===== */
.cdl-guide__info-box {
    display: flex;
    gap: 16px;
    background: #f8f8f0;
    border: 1px solid #EBBE18;
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
}

.cdl-guide__info-icon {
    flex-shrink: 0;
    color: #EBBE18;
}

.cdl-guide__info-title {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.cdl-guide__info-box p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cdl-guide__info-box a {
    color: #EBBE18;
    font-weight: 600;
    text-decoration: none;
}

.cdl-guide__info-box a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cdl-guide-hero { padding: 32px 0 48px; }
    .cdl-guide-hero__title { font-size: 2rem; }
    .cdl-guide { padding: 32px 16px 60px; }
    .cdl-guide__step { flex-direction: column; gap: 12px; }
    .cdl-guide__step-number { width: 40px; height: 40px; font-size: 1.1rem; }
}
