:root {
    --artemisia-leaf-bg: #f5f3ed;
    --artemisia-bark-surface: #ffffff;
    --artemisia-moss-tone: #5b7a54;
    --artemisia-moss-hover: #486342;
    --artemisia-soil-ink: #33312c;
    --artemisia-heading-font: 'Oswald', sans-serif;
    --artemisia-body-font: 'Lato', sans-serif;
    --artemisia-radius: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, .absinthium-brand-text {
    text-transform: uppercase;
}

/* Gallery Logic */
.botanical-trigger {
    display: none;
}

.botanical-main-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--artemisia-radius);
    background-color: var(--artemisia-bark-surface);
}

.botanical-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

#pic1:checked ~ .botanical-main-stage .slide-1,
#pic2:checked ~ .botanical-main-stage .slide-2,
#pic3:checked ~ .botanical-main-stage .slide-3,
#pic4:checked ~ .botanical-main-stage .slide-4 {
    opacity: 1;
    z-index: 2;
}

.botanical-thumb-nav {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.botanical-thumb-nav::-webkit-scrollbar {
    height: 6px;
}
.botanical-thumb-nav::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 999px;
}

.botanical-thumb-label {
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color 0.2s;
    background-color: var(--artemisia-bark-surface);
}

.botanical-thumb-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#pic1:checked ~ .botanical-thumb-nav .label-1,
#pic2:checked ~ .botanical-thumb-nav .label-2,
#pic3:checked ~ .botanical-thumb-nav .label-3,
#pic4:checked ~ .botanical-thumb-nav .label-4 {
    border-color: var(--artemisia-moss-tone);
}

/* CTA Button */
.amazon-gateway-link {
    display: inline-block;
    background-color: var(--artemisia-moss-tone);
    color: #ffffff;
    font-family: var(--artemisia-heading-font);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.amazon-gateway-link:hover {
    background-color: var(--artemisia-moss-hover);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Reviews Preset A */
.feedback-entry {
    background-color: var(--artemisia-bark-surface);
    border-left: 4px solid var(--artemisia-moss-tone);
    padding: 24px;
    border-radius: 0 var(--artemisia-radius) var(--artemisia-radius) 0;
}