/* =========================================================
   FLINSTONES 2.0
   PODSTRONA: SOSY
   Mobile first
   ========================================================= */

.sauces-page { padding-bottom: 34px; }

.sauces-intro {
    padding: 36px 20px 26px;
    text-align: center;
}

.sauces-intro h1 {
    margin: 0;
    color: var(--color-gold);
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
    line-height: 1;
    text-shadow: 0 3px 0 #5f2717, 0 6px 14px rgba(0, 0, 0, 0.35);
}

.sauces-intro__text {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.sauces-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 16px 30px;
}

.sauces-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 76px;
    padding: 10px 6px;
    text-align: center;
    background: linear-gradient(145deg, #6b3c20, #442516);
    border: 1px solid rgba(255, 213, 74, 0.28);
    border-radius: 16px 11px 18px 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 6px 14px rgba(0, 0, 0, 0.2);
}

.sauces-price span {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.sauces-price strong {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.sauces-price--special { border-color: rgba(232, 121, 36, 0.55); }

.sauces-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
}

.sauce-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 18px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 12%, rgba(80, 42, 22, 0.14), transparent 28%),
        linear-gradient(145deg, #b38b58, #91663e 58%, #744c2d);
    color: #2c170d;
    border: 2px solid rgba(65, 34, 18, 0.82);
    border-radius: 24px 16px 26px 15px;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.16),
        inset 0 -5px 10px rgba(55, 28, 14, 0.18),
        0 8px 18px rgba(0, 0, 0, 0.26);
}

.sauce-item__number {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #3b1d0f;
    background: rgba(255, 219, 128, 0.24);
    border: 1px solid rgba(70, 36, 18, 0.28);
    border-radius: 50% 45% 52% 42%;
    font-size: 0.88rem;
    font-weight: 900;
}

.sauce-item h2 {
    margin: 0;
    color: #391b0e;
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
    text-shadow: 0 1px 0 rgba(255, 238, 190, 0.35);
}

.sauce-item p {
    margin: 4px 0 0;
    color: #5b2d18;
    font-size: 0.85rem;
    font-weight: 800;
}

.sauce-item--hot { border-color: rgba(159, 47, 31, 0.68); }
.sauce-item--hot p { color: #762719; }
.sauce-item--special { border-color: rgba(232, 121, 36, 0.72); }
.sauce-item--special p { color: #743817; font-size: 1rem; }

@media (min-width: 600px) {
    .sauces-intro { padding: 46px 36px 32px; }
    .sauces-prices { max-width: 620px; margin: 0 auto 36px; padding: 0 24px; }
    .sauces-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 0 30px; }
}

@media (min-width: 900px) {
    .sauces-page { padding-bottom: 55px; }
    .sauces-intro { padding: 52px 40px 34px; }
    .sauces-prices { max-width: 680px; margin-bottom: 42px; }
    .sauces-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; padding: 0 40px; }
}

@media (hover: hover) {
    .sauce-item { transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .sauce-item:hover {
        transform: translateY(-4px);
        box-shadow:
            inset 0 2px 0 rgba(255, 255, 255, 0.16),
            inset 0 -5px 10px rgba(55, 28, 14, 0.18),
            0 12px 24px rgba(0, 0, 0, 0.34);
    }
}
