
:root{
    --rooibos:#A23C26;--rooibos-dark:#7B2D1E;--rooibos-light:#C4714A;
    --cream:#FAF8F3;--cream-dark:#F0EDE4;--blush:#F4D9CD;
    --text-dark:#2C1A1A;--text-mid:#5A3A2A;--text-light:#8B6355;
    --mezcal:#7A5C2A;--rum:#2A5C4A;--campari:#8A1A2E;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 0;
    min-height: 600px;
}

.can-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 4px;
    padding-bottom: 5rem;
}



@media (max-width: 860px) {

    .product-card {
        grid-template-columns: 1fr;
    }

    .can-showcase {
        min-height: 360px;
        padding: 3rem 2rem 2rem;
    }

    .product-details {
        padding: 2.5rem 1.5rem;
    }
}

.can-showcase-glow {
    position: absolute;
    width: 70%;
    padding-bottom: 70%;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    opacity: 0.25;
    filter: blur(40px);
}

.product-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FAF8F3;
}

.can-showcase img {
    position: relative;
    z-index: 2;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(44, 26, 26, 0.35));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.can-showcase:hover img{
    transform:translateY(-16px) scale(1.02);
    filter:drop-shadow(0 44px 80px rgba(44,26,26,0.45));
}

.can-badge {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
}


.product-h2 {
    font-weight: 400;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #a23c26;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.product-tagline {
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    color: #5a3a2a;
    margin-bottom: 10px !important;
    line-height: 1.6;
}

.product-desc {
    font-weight: 300;
    font-size: 0.95rem;
    color: #5a3a2a;
    line-height: 1.9;
    margin-bottom: 1.6rem;
}

.product-bullets {
    list-style: none;
    margin-bottom: 1.6rem;
    margin-left: 0px;
}

.product-bullets li {
    font-weight: 300;
    font-size: 0.88rem;
    color: var(--text-mid);
    padding: 0.45rem 0;
    border-bottom: 1px solid #f0ede4;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.product-bullets li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rooibos-light);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.nutrition-panel {
    background: var(--cream-dark);
    border: 1px solid #E2D9CC;
    border-radius: 2px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    max-width: 280px;
}

.nutrition-panel h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    border-bottom: 6px solid var(--text-dark);
    padding-bottom: 0.2rem;
}

.nutrition-panel .serving {
    font-size: 0.7rem;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 0.5rem;
    border-bottom: 3px solid var(--text-dark);
    padding-bottom: 0.35rem;
}

.nutr-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #D0C9BE;
    color: #2c1a1a;
}

.nutr-row .value {
    font-weight: 600;
}

.coming-band {
    background: #3D1515;
    padding: 5rem 3rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-band::before {
    content: '"';
    position: absolute;
    left: 3%;
    top: -15%;
    font-size: 24rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.coming-eyebrow {
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rooibos-light);
    margin-bottom: 0.7rem;
}

.coming-h2 {
    font-weight: 600;
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    color: #F5DDD0;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.coming-sub {
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(245, 221, 208, 0.72);
    margin: 0 auto 3.5rem;
    line-height: 1.85;
}

.coming-cans {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.coming-can {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.coming-can:hover{transform:translateY(-12px);}

.coming-can-img {
    filter: drop-shadow(0 12px 28px rgba(44, 26, 26, 0.4));
}

.coming-can-name {
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 221, 208, 0.6);
    text-align: center;
    line-height: 1.4;
}

/* Playground */
.section-h2 {
    font-weight: 400;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--rooibos);
    text-align: center;
    margin-bottom: 3.5rem;
    text-transform: lowercase;
}

.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .cocktail-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

.cocktail-card {
    border-radius: 3px;
    overflow: hidden;
    background: var(--cream);
    border: 2px solid #C4A898;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cocktail-card-img {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.cocktail-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(44, 26, 26, 0.35) 100%);
}

.cocktail-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.card-eyebrow {
    font-weight: 600;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.card-name {
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.card-desc {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.card-base {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-base-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-reveal-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rooibos);
    background: none;
    border: 1.5px solid var(--rooibos);
    border-radius: 2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.card-reveal-btn:hover {
    background: var(--rooibos);
    color: #fff;
}

.recipe-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.recipe-overlay.open .recipe-card {
    transform: rotate(0deg);
}

.recipe-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 26, 26, 0.72);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    /* allow the overlay itself to scroll when content is tall */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
    .recipe-overlay {
        padding: 1rem;
        align-items: flex-start; /* belt-and-suspenders with margin:auto */
    }

    .recipe-card {
        padding: 2.5rem 1.5rem 2rem;
    }
}

.recipe-card {
    background: #FDFAF4;
    border-radius: 4px;
    max-width: 520px;
    width: 100%;
    padding: 3rem 3rem 2.5rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(44, 26, 26, 0.3), 4px 4px 0 #E8D9C0, 8px 8px 0 #DFD0B6;
    transform: rotate(-0.8deg);
    transition: transform 0.3s ease;
    background-image: repeating-linear-gradient(transparent, transparent 31px, #E8DDD0 31px, #E8DDD0 32px);
    background-size: 100% 32px;
    background-position: 0 48px;

    /* center when short, scroll when tall */
    margin: auto;
}

.recipe-card::before {
    content: '';
    position: absolute;
    left: 56px;
    top: 0;
    bottom: 0;
    width: 1.5px;
    background: rgba(162, 60, 38, 0.25);
}

.recipe-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
    font-family: 'Open Sans', sans-serif;
}

.recipe-header {
    margin-bottom: 1.5rem;
    padding-left: 52px;
}

.recipe-craft-label {
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    color: var(--rooibos-light);
    margin-bottom: 0.1rem;
}

.recipe-name {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--rooibos-dark);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.recipe-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--text-mid);
}

.recipe-section-label {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--rooibos);
    margin-bottom: 0.5rem;
    padding-left: 52px;
    margin-top: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(162, 60, 38, 0.3);
}

.recipe-ingredients {
    list-style: none;
    padding-left: 52px;
    margin-bottom: 0;
}

.recipe-ingredients li {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 2;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.recipe-ingredients li::before {
    content: '—';
    color: var(--rooibos-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.recipe-section-label {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--rooibos);
    margin-bottom: 0.5rem;
    padding-left: 52px;
    margin-top: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(162, 60, 38, 0.3);
}

.recipe-steps {
    padding-left: 52px;
}

.recipe-step {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 0.25rem;
    display: flex;
    gap: 0.75rem;
}

.recipe-step-num {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: var(--rooibos);
    flex-shrink: 0;
    min-width: 18px;
}

.recipe-garnish {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    padding-left: 52px;
    margin-top: 1rem;
}

.recipe-footer {
    border-top: 1px dashed #D0C4B4;
    margin-top: 1.5rem;
    padding-top: 1rem;
    padding-left: 52px;
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mixologist-band {
    background: var(--rooibos-dark);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.mix-h2 {
    font-weight: 600;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    color: #F5DDD0;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.mix-sub {
    font-weight: 300;
    font-size: 0.95rem;
    color: rgba(245, 221, 208, 0.72);
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}

.mix-profiles {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mix-profile {
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.mix-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px dashed rgba(245, 221, 208, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mix-profile-name {
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 221, 208, 0.5);
}

.mix-profile-tag {
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: rgba(245, 221, 208, 0.3);
    font-style: italic;
}

.cta-band {
    background: var(--cream-dark);
    border-top: 1px solid #E2D9CC;
    border-bottom: 1px solid #E2D9CC;
    padding: 4rem 3rem;
    text-align: center;
}

.cta-h2 {
    font-weight: 600;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--rooibos-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.cta-sub {
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: #956E09;
    border: none;
    border-radius: 2px;
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
    background: var(--rooibos-dark);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}