/* === VARIABLES === */
:root {
    --primary: #34d399;
    --primary-dark: #10b981;
    --leaf: #064e3b;
    --leaf-dark: #022c22;
    --leaf-light: #d1fae5;
    --mint-bg: #ecfdf5;
    --gold: #fbbf24;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --shadow-card: 0 20px 40px -5px rgba(5, 150, 105, .15);
    --shadow-hover: 0 30px 60px -10px rgba(5, 150, 105, .25);
}

/* === RESET === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

img,
svg {
    display: block;
    max-width: 100%
}

button,
input,
textarea,
select {
    font: inherit
}

a {
    color: inherit;
    text-decoration: none
}

ul {
    list-style: none
}

/* === BASE === */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--mint-bg)
}

body {
    font-family: "Inter", sans-serif;
    color: var(--leaf);
    overflow-x: hidden;
    background: linear-gradient(to bottom right, #ecfdf5, #f0fdf4);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -.01em;
    color: var(--leaf-dark)
}

/* === LAYOUT HELPERS (only what HTML uses) === */
.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.grid {
    display: grid
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.hidden {
    display: none !important
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-center {
    align-items: center
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-stretch {
    align-items: stretch
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-start {
    justify-content: flex-start
}

.flex-1 {
    flex: 1 1 0%
}

.shrink-0 {
    flex-shrink: 0
}

.grow {
    flex-grow: 1
}

.gap-1 {
    gap: .25rem
}

.gap-1\.5 {
    gap: .375rem
}

.gap-2 {
    gap: .5rem
}

.gap-2\.5 {
    gap: .625rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-12 {
    gap: 3rem
}

.space-y-4>*+* {
    margin-top: 1rem
}

.space-y-6>*+* {
    margin-top: 1.5rem
}

.space-x-6>*+* {
    margin-left: 1.5rem
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.col-span-1 {
    grid-column: span 1/span 1
}

/* === SPACING === */
.p-0 {
    padding: 0
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.p-8 {
    padding: 2rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-1\.5 {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-2\.5 {
    padding-top: .625rem;
    padding-bottom: .625rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-3\.5 {
    padding-top: .875rem;
    padding-bottom: .875rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.pt-6 {
    padding-top: 1.5rem
}

.pt-12 {
    padding-top: 3rem
}

.pt-24 {
    padding-top: 6rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pb-12 {
    padding-bottom: 3rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-11 {
    padding-left: 2.75rem
}

.mt-0\.5 {
    margin-top: .125rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-16 {
    margin-top: 4rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-16 {
    margin-bottom: 4rem
}

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.-mt-1 {
    margin-top: -.25rem
}

/* === SIZING === */
.w-full {
    width: 100%
}

.w-px {
    width: 1px
}

.w-1\.5 {
    width: .375rem
}

.w-4 {
    width: 1rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-7 {
    width: 1.75rem
}

.w-8 {
    width: 2rem
}

.w-9 {
    width: 2.25rem
}

.w-10 {
    width: 2.5rem
}

.w-12 {
    width: 3rem
}

.w-16 {
    width: 4rem
}

.w-24 {
    width: 6rem
}

.w-28 {
    width: 7rem
}

.w-72 {
    width: 18rem
}

.w-3\.5 {
    width: .875rem
}

.h-0\.5 {
    height: .125rem
}

.h-1 {
    height: .25rem
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-28 {
    height: 7rem
}

.h-px {
    height: 1px
}

.min-h-\[100vh\] {
    min-height: 100vh
}

.min-w-\[600px\] {
    min-width: 600px
}

.max-w-sm {
    max-width: 24rem
}

.max-w-lg {
    max-width: 32rem
}

.max-w-xl {
    max-width: 36rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-5xl {
    max-width: 64rem
}

.max-w-6xl {
    max-width: 72rem
}

.max-w-7xl {
    max-width: 80rem
}

.max-w-\[200px\] {
    max-width: 200px
}

.max-w-\[250px\] {
    max-width: 250px
}

.max-w-\[280px\] {
    max-width: 280px
}

.max-w-\[300px\] {
    max-width: 300px
}

.max-w-\[320px\] {
    max-width: 320px
}

.max-w-\[350px\] {
    max-width: 350px
}

.max-w-\[400px\] {
    max-width: 400px
}

.max-w-\[480px\] {
    max-width: 480px
}

.aspect-\[4\/3\] {
    aspect-ratio: 4/3
}

/* === POSITION === */
.relative {
    position: relative
}

.absolute {
    position: absolute
}

.fixed {
    position: fixed
}

.sticky {
    position: sticky
}

.inset-0 {
    inset: 0
}

.inset-y-0 {
    top: 0;
    bottom: 0
}

.top-0 {
    top: 0
}

.top-1 {
    top: .25rem
}

.top-4 {
    top: 1rem
}

.top-6 {
    top: 1.5rem
}

.top-24 {
    top: 6rem
}

.top-32 {
    top: 8rem
}

.top-1\/2 {
    top: 50%
}

.bottom-0 {
    bottom: 0
}

.bottom-4 {
    bottom: 1rem
}

.bottom-6 {
    bottom: 1.5rem
}

.right-0 {
    right: 0
}

.right-4 {
    right: 1rem
}

.right-6 {
    right: 1.5rem
}

.left-0 {
    left: 0
}

.left-1 {
    left: .25rem
}

.left-4 {
    left: 1rem
}

.left-6 {
    left: 1.5rem
}

.-top-1 {
    top: -.25rem
}

.-top-1\.5 {
    top: -.375rem
}

.-top-4 {
    top: -1rem
}

.-right-1\.5 {
    right: -.375rem
}

.-right-4 {
    right: -1rem
}

.-bottom-1 {
    bottom: -.25rem
}

.overflow-hidden {
    overflow: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-30 {
    z-index: 30
}

.z-50 {
    z-index: 50
}

.z-\[60\] {
    z-index: 60
}

.z-\[100\] {
    z-index: 100
}

.z-\[105\] {
    z-index: 105
}

.z-\[110\] {
    z-index: 110
}

.z-\[200\] {
    z-index: 200
}

.z-\[10000\] {
    z-index: 10000
}

.pointer-events-none {
    pointer-events: none
}

.pointer-events-auto {
    pointer-events: auto
}

.select-none {
    user-select: none;
    -webkit-user-select: none
}

.touch-none {
    touch-action: none
}

.cursor-pointer {
    cursor: pointer
}

.cursor-ew-resize {
    cursor: ew-resize
}

.cursor-grab {
    cursor: grab
}

.cursor-default {
    cursor: default
}

/* === TYPOGRAPHY === */
.font-sans {
    font-family: "Inter", sans-serif
}

.font-serif {
    font-family: "Playfair Display", serif
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-\[8px\] {
    font-size: 8px
}

.text-\[9px\] {
    font-size: 9px
}

.text-\[10px\] {
    font-size: 10px
}

.text-\[11px\] {
    font-size: 11px
}

.font-light {
    font-weight: 300
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.italic {
    font-style: italic
}

.leading-none {
    line-height: 1
}

.leading-relaxed {
    line-height: 1.625
}

.leading-tight {
    line-height: 1.25
}

.tracking-tight {
    letter-spacing: -.025em
}

.tracking-wide {
    letter-spacing: .025em
}

.tracking-wider {
    letter-spacing: .05em
}

.tracking-widest {
    letter-spacing: .1em
}

.tracking-\[0\.2em\] {
    letter-spacing: .2em
}

.tracking-\[0\.3em\] {
    letter-spacing: .3em
}

.uppercase {
    text-transform: uppercase
}

.normal-case {
    text-transform: none
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.whitespace-nowrap {
    white-space: nowrap
}

.line-through {
    text-decoration: line-through
}

.underline {
    text-decoration: underline
}

.text-white {
    color: #fff
}

.text-leaf {
    color: var(--leaf)
}

.text-leaf\/40 {
    color: rgba(6, 78, 59, .4)
}

.text-leaf\/50 {
    color: rgba(6, 78, 59, .5)
}

.text-leaf\/60 {
    color: rgba(6, 78, 59, .6)
}

.text-leaf\/70 {
    color: rgba(6, 78, 59, .7)
}

.text-leaf\/80 {
    color: rgba(6, 78, 59, .8)
}

.text-primaryDark {
    color: var(--primary-dark)
}

.text-primary {
    color: var(--primary)
}

.text-accentGold {
    color: var(--gold)
}

.text-gray-400 {
    color: var(--gray-400)
}

.text-red-500 {
    color: #ef4444
}

.text-blue-600 {
    color: #2563eb
}

.text-blue-500 {
    color: #3b82f6
}

.drop-shadow-sm {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .05))
}

.drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, .07))
}

/* === BACKGROUNDS === */
.bg-transparent {
    background: transparent
}

.bg-white {
    background: #fff
}

.bg-white\/50 {
    background: rgba(255, 255, 255, .5)
}

.bg-white\/80 {
    background: rgba(255, 255, 255, .8)
}

.bg-white\/90 {
    background: rgba(255, 255, 255, .9)
}

.bg-white\/95 {
    background: rgba(255, 255, 255, .95)
}

.bg-gray-50 {
    background: var(--gray-50)
}

.bg-gray-50\/30 {
    background: rgba(249, 250, 251, .3)
}

.bg-mintBg {
    background: var(--mint-bg)
}

.bg-mintBg\/50 {
    background: rgba(236, 253, 245, .5)
}

.bg-leafLight {
    background: var(--leaf-light)
}

.bg-leaf {
    background: var(--leaf)
}

.bg-\[\#25D366\] {
    background: #25D366
}

.bg-primary\/10 {
    background: rgba(52, 211, 153, .1)
}

.bg-primary\/20 {
    background: rgba(52, 211, 153, .2)
}

.bg-primaryDark {
    background: var(--primary-dark)
}

.bg-blue-50 {
    background: #eff6ff
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px)
}

.backdrop-blur-2xl {
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px)
}

.backdrop-blur-3xl {
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px)
}

/* === BORDERS === */
.border {
    border: 1px solid
}

.border-2 {
    border: 2px solid
}

.border-4 {
    border: 4px solid
}

.border-b {
    border-bottom: 1px solid
}

.border-t {
    border-top: 1px solid
}

.border-r {
    border-right: 1px solid
}

.border-b-2 {
    border-bottom: 2px solid
}

.border-b-0 {
    border-bottom: 0
}

.border-white {
    border-color: #fff
}

.border-white\/70 {
    border-color: rgba(255, 255, 255, .7)
}

.border-gray-50 {
    border-color: var(--gray-50)
}

.border-gray-100 {
    border-color: var(--gray-100)
}

.border-gray-200 {
    border-color: var(--gray-200)
}

.border-gray-400 {
    border-color: var(--gray-400)
}

.border-primary {
    border-color: var(--primary)
}

.border-primary\/10 {
    border-color: rgba(52, 211, 153, .1)
}

.border-primary\/20 {
    border-color: rgba(52, 211, 153, .2)
}

.border-primary\/30 {
    border-color: rgba(52, 211, 153, .3)
}

.border-primarySoft\/40 {
    border-color: rgba(110, 231, 183, .4)
}

.border-blue-100 {
    border-color: #dbeafe
}

.rounded-full {
    border-radius: 9999px
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-3xl {
    border-radius: 1.5rem
}

.rounded-\[2rem\] {
    border-radius: 2rem
}

.rounded-\[2\.5rem\] {
    border-radius: 2.5rem
}

.rounded-\[1\.5rem\] {
    border-radius: 1.5rem
}

.rounded-\[1\.25rem\] {
    border-radius: 1.25rem
}

.rounded-t-xl {
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem
}

/* === SHADOWS === */
.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1)
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1)
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1)
}

.shadow-inner {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .05)
}

.shadow-card {
    box-shadow: var(--shadow-card)
}

.shadow-soft {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, .05)
}

.shadow-cardHover {
    box-shadow: var(--shadow-hover)
}

.shadow-glow {
    box-shadow: 0 10px 30px -5px rgba(52, 211, 153, .5)
}

.shadow-\[0_15px_30px_rgba\(6\,78\,59\,0\.4\)\] {
    box-shadow: 0 15px 30px rgba(6, 78, 59, .4)
}

.shadow-\[0_20px_40px_rgba\(6\,78\,59\,0\.5\)\] {
    box-shadow: 0 20px 40px rgba(6, 78, 59, .5)
}

.shadow-\[0_15px_30px_rgba\(37\,211\,102\,0\.3\)\] {
    box-shadow: 0 15px 30px rgba(37, 211, 102, .3)
}

.shadow-\[0_30px_80px_rgba\(0\,0\,0\,0\.2\)\] {
    box-shadow: 0 30px 80px rgba(0, 0, 0, .2)
}

.shadow-\[0_30px_60px_rgba\(5\,150\,105\,0\.25\)\] {
    box-shadow: 0 30px 60px rgba(5, 150, 105, .25)
}

.shadow-\[0_-20px_50px_rgba\(5\,150\,105\,0\.1\)\] {
    box-shadow: 0 -20px 50px rgba(5, 150, 105, .1)
}

.shadow-\[0_40px_80px_rgba\(0\,0\,0\,0\.3\)\] {
    box-shadow: 0 40px 80px rgba(0, 0, 0, .3)
}

.shadow-\[0_20px_60px_rgba\(0\,0\,0\,0\.15\)\] {
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15)
}

.shadow-\[0_10px_30px_rgba\(5\,150\,105\,0\.05\)\] {
    box-shadow: 0 10px 30px rgba(5, 150, 105, .05)
}

.shadow-\[-20px_0_50px_rgba\(5\,150\,105\,0\.15\)\] {
    box-shadow: -20px 0 50px rgba(5, 150, 105, .15)
}

/* === TRANSFORMS & TRANSITIONS === */
.transition-all {
    transition: all .2s ease
}

.transition-colors {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease
}

.transition-opacity {
    transition: opacity .2s ease
}

.transition-transform {
    transition: transform .2s ease
}

.transition-none {
    transition: none
}

.duration-300 {
    transition-duration: .3s
}

.duration-400 {
    transition-duration: .4s
}

.duration-500 {
    transition-duration: .5s
}

.duration-700 {
    transition-duration: .7s
}

.ease-in-out {
    transition-timing-function: ease-in-out
}

.ease-out {
    transition-timing-function: ease-out
}

.origin-top {
    transform-origin: top
}

.origin-bottom-right {
    transform-origin: bottom right
}

.scale-0 {
    transform: scale(0)
}

.scale-90 {
    transform: scale(.9)
}

.scale-95 {
    transform: scale(.95)
}

.scale-100 {
    transform: scale(1)
}

.scale-105 {
    transform: scale(1.05)
}

.scale-110 {
    transform: scale(1.1)
}

.scale-125 {
    transform: scale(1.25)
}

.scale-150 {
    transform: scale(1.5)
}

.-translate-x-1\/2 {
    transform: translateX(-50%)
}

.-translate-y-1\/2 {
    transform: translateY(-50%)
}

.translate-x-0 {
    transform: translateX(0)
}

.translate-x-full {
    transform: translateX(100%)
}

.opacity-0 {
    opacity: 0
}

.opacity-50 {
    opacity: .5
}

.opacity-60 {
    opacity: .6
}

.opacity-70 {
    opacity: .7
}

.opacity-80 {
    opacity: .8
}

.opacity-90 {
    opacity: .9
}

.opacity-100 {
    opacity: 1
}

.blur-\[60px\] {
    filter: blur(60px)
}

.blur-\[80px\] {
    filter: blur(80px)
}

.grayscale-\[15\%\] {
    filter: grayscale(15%)
}

.object-cover {
    object-fit: cover
}

.object-contain {
    object-fit: contain
}

.outline-none {
    outline: none
}

.resize-none {
    resize: none
}

.hover\:text-primaryDark:hover {
    color: var(--primary-dark)
}

.hover\:text-leaf:hover {
    color: var(--leaf)
}

.hover\:text-primary:hover {
    color: var(--primary)
}

.hover\:bg-white:hover {
    background: #fff
}

.hover\:bg-gray-100:hover {
    background: var(--gray-100)
}

.hover\:bg-\[\#1EBE57\]:hover {
    background: #1EBE57
}

.hover\:opacity-100:hover {
    opacity: 1
}

.hover\:shadow-card:hover {
    box-shadow: var(--shadow-card)
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1)
}

.hover\:shadow-\[0_20px_40px_rgba\(37\,211\,102\,0\.4\)\]:hover {
    box-shadow: 0 20px 40px rgba(37, 211, 102, .4)
}

.hover\:shadow-\[0_20px_40px_rgba\(6\,78\,59\,0\.5\)\]:hover {
    box-shadow: 0 20px 40px rgba(6, 78, 59, .5)
}

.focus\:border-primary:focus {
    border-color: var(--primary)
}

.focus\:bg-white:focus {
    background: #fff
}

.group:hover .group-hover\:w-full {
    width: 100%
}

.group:hover .group-hover\:scale-125 {
    transform: scale(1.25)
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1)
}

.group:hover .group-hover\:opacity-10 {
    opacity: .1
}

.group:hover .group-hover\:translate-x-2 {
    transform: translateX(.5rem)
}

.selection\:bg-primarySoft\/50::selection {
    background: rgba(110, 231, 183, .5)
}

.selection\:text-leaf::selection {
    color: var(--leaf)
}

/* === RESPONSIVE === */
@media(min-width:640px) {
    .sm\:block {
        display: block
    }

    .sm\:hidden {
        display: none
    }

    .sm\:inline-block {
        display: inline-block
    }

    .sm\:flex-row {
        flex-direction: row
    }

    .sm\:flex-1 {
        flex: 1 1 0%
    }

    .sm\:w-auto {
        width: auto
    }

    .sm\:w-\[400px\] {
        width: 400px
    }

    .sm\:w-7 {
        width: 1.75rem
    }

    .sm\:w-14 {
        width: 3.5rem
    }

    .sm\:w-full {
        width: 100%
    }

    .sm\:h-7 {
        height: 1.75rem
    }

    .sm\:h-14 {
        height: 3.5rem
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .sm\:py-5 {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem
    }

    .sm\:p-6 {
        padding: 1.5rem
    }

    .sm\:text-left {
        text-align: left
    }

    .sm\:text-base {
        font-size: 1rem
    }

    .sm\:text-xl {
        font-size: 1.25rem
    }

    .sm\:text-\[10px\] {
        font-size: 10px
    }

    .sm\:top-4 {
        top: 1rem
    }

    .sm\:bottom-4 {
        bottom: 1rem
    }

    .sm\:bottom-5 {
        bottom: 1.25rem
    }

    .sm\:right-4 {
        right: 1rem
    }

    .sm\:right-5 {
        right: 1.25rem
    }

    .sm\:left-5 {
        left: 1.25rem
    }

    .sm\:rounded-\[2rem\] {
        border-radius: 2rem
    }

    .sm\:max-w-\[350px\] {
        max-width: 350px
    }

    .sm\:max-w-\[400px\] {
        max-width: 400px
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .sm\:justify-start {
        justify-content: flex-start
    }

    .sm\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

    .sm\:gap-8 {
        gap: 2rem
    }
}

@media(min-width:768px) {
    .md\:flex {
        display: flex
    }

    .md\:hidden {
        display: none !important
    }

    .md\:block {
        display: block
    }

    .md\:text-left {
        text-align: left
    }

    .md\:text-right {
        text-align: right
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .md\:text-3xl {
        font-size: 1.875rem
    }

    .md\:text-xl {
        font-size: 1.25rem
    }

    .md\:p-12 {
        padding: 3rem
    }

    .md\:p-8 {
        padding: 2rem
    }

    .md\:p-6 {
        padding: 1.5rem
    }

    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .md\:items-end {
        align-items: flex-end
    }

    .md\:gap-12 {
        gap: 3rem
    }

    .md\:mx-8 {
        margin-left: 2rem;
        margin-right: 2rem
    }
}

@media(min-width:1024px) {
    .lg\:flex {
        display: flex
    }

    .lg\:hidden {
        display: none !important
    }

    .lg\:block {
        display: block
    }

    .lg\:flex-row {
        flex-direction: row
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .lg\:col-span-1 {
        grid-column: span 1/span 1
    }

    .lg\:gap-8 {
        gap: 2rem
    }

    .lg\:gap-12 {
        gap: 3rem
    }

    .lg\:text-left {
        text-align: left
    }

    .lg\:p-10 {
        padding: 2.5rem
    }

    .lg\:p-16 {
        padding: 4rem
    }

    .lg\:p-8 {
        padding: 2rem
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .lg\:text-xl {
        font-size: 1.25rem
    }

    .lg\:text-sm {
        font-size: .875rem
    }

    .lg\:text-base {
        font-size: 1rem
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1
    }

    .lg\:text-\[9px\] {
        font-size: 9px
    }

    .lg\:w-1\/2 {
        width: 50%
    }

    .lg\:w-32 {
        width: 8rem
    }

    .lg\:w-14 {
        width: 3.5rem
    }

    .lg\:h-32 {
        height: 8rem
    }

    .lg\:h-14 {
        height: 3.5rem
    }

    .lg\:border-r {
        border-right: 1px solid
    }

    .lg\:border-b-0 {
        border-bottom: 0
    }

    .lg\:mt-0 {
        margin-top: 0
    }

    .lg\:ml-8 {
        margin-left: 2rem
    }

    .lg\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }

    .lg\:sticky {
        position: sticky
    }

    .lg\:top-32 {
        top: 8rem
    }

    .lg\:justify-start {
        justify-content: flex-start
    }

    .lg\:max-w-\[280px\] {
        max-width: 280px
    }

    .lg\:max-w-\[400px\] {
        max-width: 400px
    }

    .lg\:max-w-\[480px\] {
        max-width: 480px
    }

    .lg\:space-x-8>*+* {
        margin-left: 2rem
    }
}

/* === COMPONENTS === */

/* Background blobs — static, no animation */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none
}

.liquid-blob-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(52, 211, 153, .2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px)
}

.liquid-blob-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(16, 185, 129, .12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px)
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    z-index: 9999;
    transition: width .1s linear
}

/* Reveal on scroll */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: opacity .9s ease, transform .9s ease;
    will-change: opacity, transform
}

.reveal {
    transform: translateY(30px)
}

.reveal-left {
    transform: translateX(-24px)
}

.reveal-right {
    transform: translateX(24px)
}

.reveal-scale {
    transform: scale(.96)
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: none
}

.delay-100 {
    transition-delay: .1s
}

.delay-200 {
    transition-delay: .2s
}

.delay-300 {
    transition-delay: .3s
}

.delay-400 {
    transition-delay: .4s
}

/* Card */
.theme-card {
    background: rgba(255, 255, 255, .92);
    border-radius: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, .8);
    transition: box-shadow .25s ease, transform .25s ease
}

.theme-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px)
}

/* Primary button — clean, shadow on hover only */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow .2s ease;
}

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, .45)
}

.btn-primary.loading {
    pointer-events: none;
    opacity: .8
}

.btn-primary.loading span {
    opacity: 0
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* Nav header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: transparent;
    transition: background .35s ease, box-shadow .35s ease, padding .25s ease
}

.site-header.glass-header {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px rgba(5, 150, 105, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    padding-top: .7rem;
    padding-bottom: .7rem
}

.site-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--leaf-dark);
    letter-spacing: -.02em;
    flex-shrink: 0;
    z-index: 60;
    transition: opacity .2s ease
}

.site-logo:hover {
    opacity: .8
}

.site-logo__dot {
    color: var(--primary-dark)
}

.site-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    z-index: 60
}

@media(min-width:900px) {
    .site-nav {
        display: flex
    }
}

.site-nav__link {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: rgba(6, 78, 59, .6);
    position: relative;
    padding-bottom: 3px;
    transition: color .2s ease
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: width .25s ease
}

.site-nav__link:hover,
.site-nav__link.active {
    color: var(--primary-dark)
}

.site-nav__link:hover::after,
.site-nav__link.active::after {
    width: 100%
}

.site-nav__link--pill {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    padding: .28rem .8rem;
    border-radius: .55rem;
    font-size: .65rem;
    transition: box-shadow .2s ease
}

.site-nav__link--pill::after {
    display: none
}

.site-nav__link--pill:hover {
    box-shadow: 0 4px 14px rgba(16, 185, 129, .4)
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: .8rem;
    z-index: 60
}

.site-header__cart {
    position: relative;
    width: 2.1rem;
    height: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(6, 78, 59, .7);
    border-radius: 50%;
    transition: color .2s ease, background .2s ease
}

.site-header__cart:hover {
    color: var(--primary-dark);
    background: rgba(52, 211, 153, .1)
}

.site-header__cart-badge {
    position: absolute;
    top: -.2rem;
    right: -.2rem;
    background: var(--primary-dark);
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    width: 1.05rem;
    height: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid #fff;
    transition: transform .2s ease
}

.site-header__buy-btn {
    display: none;
    padding: .5rem 1.2rem;
    border-radius: 9999px;
    font-size: .67rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
    align-items: center
}

@media(min-width:540px) {
    .site-header__buy-btn {
        display: inline-flex
    }
}

.site-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    border-radius: .4rem;
    transition: background .2s ease
}

.site-header__hamburger:hover {
    background: rgba(52, 211, 153, .1)
}

.site-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--leaf);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease
}

.site-header__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.site-header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0)
}

.site-header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

@media(min-width:900px) {
    .site-header__hamburger {
        display: none
    }
}

/* Mobile overlay + drawer */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 78, 59, .45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 310px);
    height: 100dvh;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 110;
    display: flex;
    flex-direction: column;
    padding: 0 0 2rem;
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.16, 1, .3, 1);
    box-shadow: -20px 0 50px rgba(5, 150, 105, .1);
    border-left: 1px solid rgba(255, 255, 255, .6);
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    overflow-y: auto
}

.mobile-sidebar.open {
    transform: translateX(0)
}

.mobile-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.4rem 1rem;
    border-bottom: 1px solid rgba(52, 211, 153, .1);
    flex-shrink: 0
}

.mobile-sidebar__brand {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--leaf-dark);
    letter-spacing: -.02em
}

.mobile-sidebar__close {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-400);
    cursor: pointer;
    transition: background .2s, color .2s
}

.mobile-sidebar__close:hover {
    background: var(--leaf-light);
    color: var(--leaf)
}

.mobile-sidebar__label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--primary-dark);
    padding: 1rem 1.4rem .4rem;
    opacity: .65
}

.mobile-sidebar__nav {
    display: flex;
    flex-direction: column;
    padding: .3rem .9rem;
    gap: .15rem;
    flex: 1
}

.mobile-sidebar__link {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--leaf-dark);
    padding: .6rem .55rem;
    border-radius: .8rem;
    transition: background .2s ease, color .2s ease
}

.mobile-sidebar__link:hover {
    background: rgba(52, 211, 153, .08);
    color: var(--primary-dark)
}

.mobile-sidebar__link--pill {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    font-family: "Inter", sans-serif;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: .65rem 1rem;
    border-radius: .7rem
}

.mobile-sidebar__link--pill:hover {
    box-shadow: 0 4px 14px rgba(16, 185, 129, .35);
    background: linear-gradient(135deg, #059669, #047857)
}

.mobile-sidebar__divider {
    height: 1px;
    background: rgba(52, 211, 153, .1);
    margin: .7rem 1.4rem
}

.mobile-sidebar__cta {
    margin: 0 .9rem;
    padding: .9rem;
    border-radius: .8rem;
    text-align: center;
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: block;
    box-shadow: var(--shadow-card)
}

/* Alert toast */
.alert-toast {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    width: 17rem;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-hover);
    border-radius: 1rem;
    padding: .8rem;
    transform: translateX(110%);
    opacity: 0;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .4s ease
}

.alert-toast--in {
    transform: translateX(0);
    opacity: 1
}

/* 3D carousel */
.scene-3d {
    perspective: 1500px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    overflow: visible;
    -webkit-tap-highlight-color: transparent
}

#carousel-3d {
    position: relative;
    width: 220px;
    height: 320px;
    transform-style: preserve-3d;
    transition: transform .1s linear;
    cursor: grab;
    touch-action: pan-y
}

#carousel-3d:active {
    cursor: grabbing
}

.ingredient-card-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .96);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(5, 150, 105, .1);
    border: 1px solid rgba(255, 255, 255, .8);
    will-change: transform
}

.ingredient-card-3d:hover {
    box-shadow: 0 24px 50px rgba(5, 150, 105, .2)
}

.ingredient-img-wrapper {
    width: 100%;
    height: 60%;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black)
}

.ingredient-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none
}

.ingredient-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff
}

@media(max-width:1024px) {
    .scene-3d {
        height: 380px;
        perspective: 1200px
    }

    #carousel-3d {
        width: 160px;
        height: 240px
    }

    .ingredient-info {
        padding: 1rem
    }
}

@media(max-width:640px) {
    .scene-3d {
        height: 420px;
        perspective: 900px
    }

    #carousel-3d {
        width: 150px;
        height: 220px
    }

    .ingredient-card-3d {
        border-radius: 1.2rem
    }

    .ingredient-info {
        padding: .8rem
    }

    .ingredient-img-wrapper {
        height: 55%
    }
}

/* Checkout panel */
#checkout-panel {
    transform: translateX(120%);
    transition: transform .5s cubic-bezier(.2, .8, .2, 1)
}

#checkout-panel.panel-open {
    transform: translateX(0)
}

@media(max-width:639px) {
    #checkout-panel {
        transform: translateY(120%)
    }

    #checkout-panel.panel-open {
        transform: translateY(0)
    }
}

.checkout-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease
}

.panel-open .checkout-item {
    opacity: 1;
    transform: none
}

.delay-item-1 {
    transition-delay: .05s
}

.delay-item-2 {
    transition-delay: .1s
}

.delay-item-3 {
    transition-delay: .15s
}

.delay-item-4 {
    transition-delay: .2s
}

/* Panel total price */
#panel-total-price {
    transition: opacity .15s ease, transform .15s ease
}

/* FAQ */
.faq-answer {
    display: none
}

.faq-icon {
    transition: transform .35s ease
}

.faq-item.active .faq-icon {
    transform: rotate(180deg)
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--leaf-light)
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark)
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, .25);
    border-radius: 4px
}

/* input focus */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(52, 211, 153, .2);
    outline: none
}

/* misc helpers */
.bg-gradient-to-tr {
    background-image: linear-gradient(to top right, var(--tw-gradient-stops, #10b981, #34d399))
}

.magnetic-wrap {
    display: inline-block;
    padding: 8px;
    margin: -8px;
    cursor: pointer
}

section {
    position: relative
}

.heading-gradient {
    background: linear-gradient(135deg, var(--leaf-dark), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.shimmer-text {
    background: linear-gradient(90deg, var(--leaf-dark) 0%, var(--primary-dark) 50%, var(--leaf-dark) 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text
}

.stars-gold {
    color: var(--gold);
    letter-spacing: .05em
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 9999px;
    padding: .3rem .85rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    box-shadow: 0 2px 12px rgba(52, 211, 153, .15)
}

.badge-pill__dot {
    width: .42rem;
    height: .42rem;
    background: var(--primary);
    border-radius: 50%
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .85rem;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(52, 211, 153, .12);
    border-radius: 9999px;
    transition: box-shadow .2s ease
}

.trust-badge:hover {
    box-shadow: 0 4px 14px rgba(52, 211, 153, .15)
}

.trust-badge__icon {
    font-size: 1rem;
    line-height: 1
}

.trust-badge__label {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(6, 78, 59, .7)
}

.hero-orb {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(52, 211, 153, .25) 0%, rgba(16, 185, 129, .08) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px)
}

.section-eyebrow {
    display: inline-block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: .7rem
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: .12rem
}

.stat-item__value {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--leaf);
    line-height: 1
}

.stat-item__label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(6, 78, 59, .5)
}

.stat-divider {
    width: 1px;
    height: 1.8rem;
    background: rgba(52, 211, 153, .2)
}

.review-card-author-avatar {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: var(--mint-bg);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(52, 211, 153, .18)
}