/* Recipe Section */
.recipe-section {
    margin: 20px 0;
    padding: clamp(44px, 7vw, 80px) 0;
}

.recipe-container {
    max-width: 900px;
    margin: 0 auto;
}

.recipe-container h2 {
    margin: 12px 0 32px;
    color: #14532d;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.recipe-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    border-radius: 24px;
    object-fit: cover;
}

.recipe-intro {
    margin-bottom: 48px;
    /* color: #64748b; */
    font-size: 1.15rem;
    line-height: 1.8;
}

.recipe-steps {
    margin-bottom: 56px;
}

.recipe-step {
    margin-bottom: 16px;
    padding-bottom: 16px;
    /* border-bottom: 1px solid #e2e8f0; */
}

.recipe-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recipe-step h3 {
    margin-bottom: 14px;
    color: #166534;
    font-size: 1.2rem;
    font-weight: 700;
}

.recipe-step p {
    /* color: black; */
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Recipe Variation */
.recipe-variation {
    margin-bottom: 56px;
    padding-top: 8px;
}

.recipe-variation > h2 {
    margin-bottom: 18px;
}

.variation-intro {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.variation-card {
    padding: clamp(24px, 5vw, 40px);
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 24px;
}

.variation-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.variation-copy h3 {
    margin-bottom: 12px;
    color: #14532d;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.variation-copy p {
    max-width: 700px;
    line-height: 1.7;
}

.variation-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid #bbf7d0;
}

.variation-details h4 {
    margin-bottom: 14px;
    color: #166534;
    font-size: 1rem;
}

.variation-details ul,
.variation-details ol {
    padding-left: 20px;
}

.variation-details li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.variation-details strong {
    color: #166534;
}

.recipe-tips {
    padding: 36px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f5faf2 100%);
    border: 1px solid #dcfce7;
    border-radius: 20px;
}

.recipe-tips h3 {
    margin-bottom: 20px;
    color: #14532d;
    font-size: 1.3rem;
    font-weight: 700;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    /* color: black; */
    font-size: 1rem;
    line-height: 1.7;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tips-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.tips-list strong {
    color: #166534;
    font-weight: 700;
}

@media (max-width: 768px) {
    .recipe-section {
        margin: 24px 0;
        padding: 32px 0;
    }

    .recipe-container h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 24px;
    }

    .recipe-image {
        margin-bottom: 24px;
        border-radius: 20px;
    }

    .recipe-intro {
        margin-bottom: 32px;
        font-size: 1rem;
    }

    .recipe-steps {
        margin-bottom: 40px;
    }

    .recipe-step {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .recipe-step h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .recipe-step p {
        font-size: 0.9rem;
    }

    .recipe-variation {
        margin-bottom: 40px;
    }

    .variation-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .recipe-ingredients li {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }

    .recipe-tips {
        padding: 28px;
    }

    .recipe-tips h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .tips-list li {
        margin-bottom: 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .recipe-section {
        margin: 24px 0;
        padding: 24px 0;
    }

    .recipe-container h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 18px;
    }

    .recipe-image {
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .recipe-intro {
        margin-bottom: 24px;
        font-size: 0.95rem;
    }

    .recipe-steps {
        margin-bottom: 28px;
    }

    .recipe-step {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .recipe-step h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .recipe-step p {
        font-size: 0.85rem;
    }

    .variation-intro {
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .variation-card {
        border-radius: 16px;
    }

    .variation-card {
        padding: 22px 18px;
    }

    .variation-details li {
        font-size: 0.9rem;
    }

    .recipe-ingredients {
        padding-top: 12px;
        margin-top: 12px;
    }

    .recipe-ingredients li {
        margin-bottom: 6px;
        font-size: 0.85rem;
        padding-left: 20px;
    }

    .recipe-tips {
        padding: 20px;
    }

    .recipe-tips h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .tips-list li {
        margin-bottom: 10px;
        font-size: 0.85rem;
        padding-left: 24px;
    }
}

/* Green Tea Shot vs. White Tea Shot */
.difference {
    margin: 24px 0 40px;
    padding: clamp(44px, 7vw, 80px) clamp(20px, 5vw, 64px);
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 32px;
}

.difference-heading {
    max-width: 720px;
    margin: 0 auto clamp(32px, 5vw, 48px);
    text-align: center;
}

.difference-heading h2 {
    margin-bottom: 16px;
    color: #14532d;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.difference-heading p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
}

.difference-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(24px, 5vw, 48px);
    align-items: center;
}

.difference-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(20, 83, 45, 0.14);
}

.difference-image img {
    display: block;
    width: 100%;
    height: auto;
}

.difference-content {
    display: grid;
    gap: 16px;
}

.difference-card {
    padding: 22px;
    background: #ffffff;
    border: 1px solid #dcfce7;
    border-radius: 18px;
}

.difference-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.difference-card h3 {
    margin-bottom: 9px;
    color: #14532d;
    font-size: 1.25rem;
}

.difference-card p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
}

.white-shot-card {
    background: #ffffff;
    border-color: #dbeafe;
}

.white-shot-card span {
    color: #475569;
}

.difference-summary {
    padding: 18px 20px;
    color: #14532d;
    background: #dcfce7;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.65;
}

.difference-summary strong {
    color: #14532d;
}

@media (max-width: 768px) {
    .difference {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .difference-layout {
        grid-template-columns: 1fr;
    }

    .difference-image {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .difference {
        margin-bottom: 24px;
        padding: 32px 14px 14px;
        border-radius: 20px;
    }

    .difference-heading {
        margin-bottom: 26px;
        padding: 0 6px;
    }

    .difference-heading h2 {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }

    .difference-heading p {
        font-size: 0.92rem;
    }

    .difference-image,
    .difference-card,
    .difference-summary {
        border-radius: 14px;
    }

    .difference-card {
        padding: 18px;
    }
}

/* FAQ Section */
.faq-section {
    margin: 20px 0;
    padding: clamp(44px, 7vw, 80px) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    margin: 12px 0 16px;
    color: #14532d;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.2;
    font-weight: 800;
}

.faq-intro {
    margin-bottom: 48px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #dcfce7;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0fdf4 0%, #f5faf2 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #14532d;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e0fce0 0%, #ebfae8 100%);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        margin: 24px 0;
        padding: 32px 0;
    }

    .faq-container h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 12px;
    }

    .faq-intro {
        margin-bottom: 36px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 24px 0;
        padding: 24px 0;
    }

    .faq-container h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 10px;
    }

    .faq-intro {
        margin-bottom: 28px;
        font-size: 0.95rem;
    }

    .faq-items {
        gap: 8px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 16px 14px 16px;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
}
