:root {
    --color-ink: #06081d;
    --color-primary: #6E7740;
    --color-highlight: #6E7740;
    --color-olive: var(--color-primary);
    --color-olive-deep: #5f6835;
    --color-surface: #f8f8ef;
    --color-surface-soft: #F6FAF2;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.68);
    --font-family-base: "Roboto", "Lato", "Open Sans", Arial, Helvetica, sans-serif;
    --font-weight-base: 600;
    --section-title-font-size: clamp(2.125rem, 2.408333vw, 3.25rem);
    --section-title-font-weight: 600;
    --section-title-line-height: 1.12;
    --container-width: 1320px;
    --radius-pill: 999px;
    --radius-panel: 32px;
    --transition-base: 1800ms ease;
    --transition-sub-menu-base: 500ms ease;
    --cta-hover-background: #000000;
    --cta-hover-transform: translateY(-0.125rem);
    --button-hover-shadow: 0 1rem 2rem rgba(31, 43, 9, 0.18);
    --section-padding-y: clamp(3.75rem, 6vw, 4.1rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-base);
    font-style: normal;
    color: var(--color-ink);
    background:
        radial-gradient(circle at 20% 78%, rgba(255, 255, 255, 0.24), transparent 20%),
        radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.18), transparent 18%),
        linear-gradient(135deg, #c8d985 0%, #dce9b0 38%, #d7e499 68%, #cfe08a 100%);
    min-height: 100vh;
    overflow-x: clip;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

input,
textarea,
select {
    font: inherit;
}

.site-main {
    overflow: clip;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.75rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        background-color var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base);
}

.button.is-loading {
    cursor: wait;
    opacity: 0.86;
}

.button.is-loading::after {
    width: 1rem;
    height: 1rem;
    margin-left: 0.625rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    content: "";
    animation: button-loader-spin 0.75s linear infinite;
}

.button:disabled {
    pointer-events: none;
}

@keyframes button-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.button:hover,
.button:focus-visible {
    transform: var(--cta-hover-transform);
    box-shadow: var(--button-hover-shadow);
}

.button--large {
    min-width: 12.5rem;
    min-height: 3.875rem;
    font-size: 1.125rem;
}

.button--olive,
.product-cta__button--olive,
.product-feature-showcase__button--dark {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.button--olive:hover,
.button--olive:focus-visible,
.product-cta__button--olive:hover,
.product-cta__button--olive:focus-visible,
.product-feature-showcase__button--dark:hover,
.product-feature-showcase__button--dark:focus-visible {
    color: var(--color-white);
    background-color: var(--cta-hover-background);
    transform: var(--cta-hover-transform);
    box-shadow: var(--button-hover-shadow);
}

.button--dark {
    color: var(--color-white);
    background-color: var(--color-ink);
}

.button--dark:hover,
.button--dark:focus-visible {
    background-color: #101530;
}

@media (max-width: 767px) {
    .button,
    .button--large {
        width: 100%;
    }
}
.container {
    width: min(100%, var(--container-width));
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Custom Video Player Styles */
.custom-video-player {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: inherit;
}

.custom-video-player__thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 1;
    background-color: #000;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.custom-video-player__thumbnail-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 2;
}

.custom-video-player__play-btn {
    position: absolute;
    z-index: 3;
    width: 4.5rem;
    height: 4.5rem;
    border: none;
    border-radius: 50%;
    background-color: var(--color-primary, #6E7740);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-base), background-color var(--transition-base), opacity 0.3s ease;
}

.custom-video-player__play-btn:hover {
    transform: scale(1.1);
    background-color: #5d6536;
}

/* Play Icon Symbol */
.custom-video-player__play-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.75rem 0 0.75rem 1.25rem;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 0.25rem;
}

.custom-video-player__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.custom-video-player__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 8, 29, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    z-index: 4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(100%);
}

.custom-video-player:hover .custom-video-player__controls,
.custom-video-player:focus-within .custom-video-player__controls,
.custom-video-player.is-playing:hover .custom-video-player__controls {
    opacity: 1;
    transform: translateY(0);
}

.custom-video-player__control-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-video-player__control-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-primary, #6E7740);
}

.custom-video-player__progress-container {
    flex-grow: 1;
    height: 0.25rem;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    border-radius: 2px;
    transition: height 0.2s ease;
}

.custom-video-player__progress-container:hover {
    height: 0.5rem;
}

.custom-video-player__progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--color-primary, #6E7740);
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
}

.custom-video-player__timer {
    color: #fff;
    font-size: 0.8125rem;
    font-family: monospace;
    min-width: 3.5rem;
    text-align: center;
}

.custom-video-player__volume-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.custom-video-player__volume-slider {
    width: 0;
    opacity: 0;
    visibility: hidden;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.custom-video-player__volume-slider::-webkit-slider-runnable-track {
    background: transparent;
}

.custom-video-player__volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--color-primary, #6E7740);
    cursor: pointer;
    margin-top: -0.25rem;
}

.custom-video-player__volume-container:hover .custom-video-player__volume-slider {
    width: 4.5rem;
    opacity: 1;
    visibility: visible;
}
