* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #032E15;
    --light-green: #016630;
    --white: #FFFFFF;
    --text-light: #162456;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --rating-color: #00C950;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    padding: 0 100px;
}

/* Header Styles */
.header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: background 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    color: var(--text-light);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-green);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    width: 48px;
    height: 48px;
}

.search-btn svg {
    width: 24px;
    height: 24px;
}

.btn-primary {
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 505px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: flex-start;
    padding-top: 160px;
    overflow: hidden;
    background-image: url('../assets/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    margin-left: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 1000px;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--dark-green);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -1.33px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out;
    justify-content: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 22px;
    font-weight: 300;
    color: #0D542B;
    margin-top: 8px;
}

.btn-large {
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 505px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
}

/* Product Section */
.product-section {
    padding: 92px 0;
    background: var(--white);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

/* Product Gallery (Left Column) */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 672px;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    display: block;
}

.gallery-nav-bottom {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.gallery-arrow {
    position: absolute;
    bottom: 16px;
    background: transparent;
    border: 0.5px solid var(--dark-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gallery-arrow:hover {
    background: transparent;
    box-shadow: 0 4px 8px rgba(1, 102, 48, 0.2);
    transform: scale(1.05);
}

.gallery-arrow-prev {
    left: 16px;
}

.gallery-arrow-next {
    right: 16px;
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-green);
    fill: none;
}

.gallery-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    min-height: 20px;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--dark-green);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: block;
}

.gallery-dot.active {
    background: var(--dark-green);
    border-color: var(--dark-green);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.gallery-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumbnail:hover {
    opacity: 0.8;
}

/* Product Details (Right Column) */
.product-details {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.product-header-right {
    text-align: left;
    margin-bottom: 0;
    width: 100%;
}

.product-header-right .product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-green);
    text-align: left;
}

.product-header-right .product-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 0;
}

.rating-stars {
    color: var(--rating-color);
}

.rating-text {
    color: var(--dark-green);
    font-size: 13px;
    font-weight: 300;
}

.product-description {
    text-align: justify;
    font-size: 16px;
    color: var(--dark-green);
    font-weight: 300;
    line-height: 1.6;
    margin: 20px 0px;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
}

.product-badge {
    height: 37px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, #032E15 0%, #008236 51.92%, #00C950 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px 6px 0px 0px;
}

.badge-line-1 {
    font-size: 16px;
    font-weight: 700;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option-wrapper {
    display: flex;
    flex-direction: column;
}

.radio-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-top: none;
    border-left: 0.5px solid var(--light-green);
    border-right: 0.5px solid var(--light-green);
    border-bottom: 0.5px solid var(--light-green);
    border-radius: 0px 0px 6px 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    margin-bottom: 0;
}

.radio-option-wrapper:has(input[value="single"]:not(:checked)) .radio-option {
    border-bottom: 0.5px solid var(--light-green);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.radio-option-wrapper:has(input[value="double"]:not(:checked)) .radio-option {
    border-top: 0.5px solid var(--light-green);
    border-bottom: 0.5px solid var(--light-green);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.radio-option-wrapper:has(input[value="single"]:not(:checked))+.radio-option-wrapper:has(input[value="double"]:checked) .radio-option-wrapper:has(input[value="single"]) .radio-option {
    border-bottom: 0.5px solid var(--light-green);
}

.radio-options:has(input[value="double"]:checked)~.radio-option-wrapper:has(input[value="single"]) .radio-option,
.radio-option-wrapper:has(input[value="single"]:not(:checked)) .radio-option {
    border-bottom: 0.5px solid var(--light-green) !important;
}

.radio-option-wrapper:has(input[value="double"]:checked) .subscription-content-wrapper.active {
    border-radius: 0 0 6px 6px;
}

.radio-option-wrapper:has(input[value="single"]:checked) .subscription-content-wrapper.active {
    border-radius: 0 0 6px 6px;
}

.radio-option:hover {
    border-color: var(--light-green);
}

.radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--light-green);
    flex-shrink: 0;
}

.radio-text {
    flex: 1;
    font-size: 15px;
    color: var(--dark-green);
    font-weight: 300;
}

.radio-group-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 20px;
    display: block;
}

.radio-price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-price {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 15px;
}

.radio-price-strike {
    font-weight: 400;
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}

.subscription-content-wrapper.active {
    display: block;
}

.subscription-content-wrapper {
    display: none;
    padding: 20px 40px 24px 40px;
    border-left: 0.5px solid var(--light-green);
    border-right: 0.5px solid var(--light-green);
    border-top: none;
    border-bottom: 0.5px solid var(--light-green);
    border-radius: 0 0 6px 6px;
    background: var(--white);
    margin-top: 0;
}

.subscription-guarantee {
    margin: 0 0 24px 0;
    padding: 12px 16px;
    background: rgba(1, 102, 48, 0.1);
    border-radius: 6px;
    color: var(--dark-green);
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}

.subscription-content-wrapper .fragrance-section {
    margin: 0 0 24px 0;
    width: 85%;
}

.subscription-content-wrapper[data-type="double"] .fragrance-section:last-of-type {
    margin-bottom: 24px;
}

.included-box .included-bottle.original-bottle-img {
    filter: none;
}

.included-box .included-bottle.lily-bottle-img {
    filter: hue-rotate(15deg) saturate(1.4) brightness(0.85);
}

.included-box .included-bottle.rose-bottle-img {
    filter: hue-rotate(-25deg) saturate(1.3) brightness(1.15);
}

.subscription-content-wrapper[data-type="double"] {
    border-bottom: 0.5px solid var(--light-green);
}

.radio-option-wrapper:has(input[value="double"]:checked) .radio-option {
    border-left: 0.5px solid var(--light-green);
    border-right: 0.5px solid var(--light-green);
    border-top: 0.5px solid var(--light-green);
    border-bottom: 1px solid var(--light-green);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.radio-option-wrapper:has(input[value="single"]:not(:checked)):has(+ .radio-option-wrapper:has(input[value="double"]:checked)) .radio-option {
    border-bottom: 0.5px solid var(--light-green);
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.radio-options:has(input[value="double"]:checked) .radio-option-wrapper:has(input[value="single"]:not(:checked)) .radio-option {
    border-bottom: 0.5px solid var(--light-green) !important;
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.radio-option-wrapper:has(input[value="single"]:checked) .radio-option {
    border-left: 0.5px solid var(--light-green);
    border-right: 0.5px solid var(--light-green);
    border-top: none;
    border-bottom: 1px solid var(--light-green);
    border-radius: 0;
}

.radio-option-wrapper:has(input[value="single"]:checked)+.radio-option-wrapper:has(input[value="double"]:not(:checked)) .radio-option {
    border-top: 0.5px solid var(--light-green);
    border-left: 0.5px solid var(--light-green);
    border-right: 0.5px solid var(--light-green);
    border-bottom: 0.5px solid var(--light-green);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.fragrance-section {
    margin: 0 0 24px 0;
}

.fragrance-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.fragrance-option {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 16px 12px;
    position: relative;
    border: none !important;
    border-radius: 8px;
    background: #F5F5F5;
    transition: all 0.3s;
    cursor: pointer;
}

.fragrance-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    width: 100%;
}

.fragrance-option input[type="radio"] {
    position: static;
    transform: none;
    width: 16px;
    height: 16px;
    accent-color: var(--light-green);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.fragrance-name {
    font-size: 13px;
    color: var(--dark-green);
    font-weight: 300;
}

.fragrance-option input[type="radio"]:checked~.fragrance-top-row .fragrance-name,
.fragrance-option input[type="radio"]:checked+.fragrance-name {
    color: var(--light-green);
    font-weight: 500;
}

.fragrance-badge {
    position: absolute;
    top: -8px;
    right: 6px;
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 6px 0 6px 0;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.fragrance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.fragrance-icon {
    width: 50px;
    height: 80px;
    object-fit: cover;
}

.fragrance-option input[type="radio"]:checked~.fragrance-content .fragrance-icon {
    border-color: var(--light-green);
}

.fragrance-icon.original-bottle-img {
    filter: none;
}

.fragrance-icon.lily-bottle-img {
    filter: hue-rotate(15deg) saturate(1.4) brightness(0.85);
}

.fragrance-icon.rose-bottle-img {
    filter: hue-rotate(-25deg) saturate(1.3) brightness(1.15);
}

.whats-included {
    display: flex;
    flex-direction: column;
}

.included-boxes {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    height: 219px;
}

.included-box {
    border: 1px solid #919798;
    border-radius: 8px;
    padding: 16px 12px;
    transition: all 0.3s;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.included-box-title {
    font-size: 16px;
    font-weight: 300;
    color: #6F7577;
    margin-bottom: 12px;
}

.free-text {
    color: var(--dark-green);
    font-weight: 700;
}

.included-box .included-bottles {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.included-box .included-bottle {
    width: 54px;
    height: 94px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.included-box .included-bottle.large-bottle {
    width: 84px;
    height: 144px;
}

.included-content {
    position: relative;
    margin-top: 0;
}

.included-tab-content {
    display: none;
}

.included-tab-content.active {
    display: block;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.included-list li {
    padding-left: 30px;
    position: relative;
    color: var(--dark-green);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}

.included-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 4 L38 8 L45 7 L48 13 L55 16 L54 23 L60 29 L56 35 L58 42 L52 45 L50 52 L43 51 L37 56 L32 52 L27 56 L21 51 L14 52 L12 45 L6 42 L8 35 L4 29 L10 23 L9 16 L16 13 L19 7 L26 8 L32 4Z' stroke='%236E8F7A' stroke-width='3' stroke-linejoin='round' fill='none'/%3E%3Cpath d='M22 32L28 38L42 24' stroke='%236E8F7A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border-radius: 0;
    display: block;
}

.btn-add-to-cart {
    display: block;
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 505px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Our Collection Section */
.collection-section {
    padding: 0 0 92px 0;
    background: var(--white);
}

.collection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.collection-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 32px;
    margin-top: 90px;
    padding-left: 0;
    text-align: left;
}

.collection-accordion {
    padding-top: 0;
    padding-left: 0;
    margin-left: 0;
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #CDCDCD;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
}

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--dark-green);
    flex-shrink: 0;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 24px 20px 24px;
}

.accordion-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 8px;
}

.accordion-item.active .icon-minus {
    display: block;
}

.accordion-item.active .icon-plus {
    display: none;
}

.accordion-item:not(.active) .icon-minus {
    display: none;
}

.accordion-item:not(.active) .icon-plus {
    display: block;
}

/* Collection Image */
.collection-image {
    width: 100%;
    height: 712px;
    border-radius: 12px;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Statistics Section */
.stats-section {
    padding: 0;
    background: var(--white);
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
}

.stats-container {
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    padding: 50px 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1456px;
    margin: 0 auto;
}

.stats-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.stats-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-percent {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-left: 4px;
}

.stats-description {
    font-size: 14px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6;
    text-align: center;
    max-width: 250px;
}

/* Comparison Table Section */
.comparison-section {
    padding: 92px 0;
    background: var(--white);
}

.comparison-badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.comparison-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 36px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    overflow: hidden;
}

.comparison-table th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-green);
    vertical-align: middle;
    border-bottom: 1px solid #666666;
}

.product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
}

.product-name {
    font-size: 16px;
    font-weight: 300;
    color: var(--dark-green);
}

.comparison-table th.gtg-header {
    background: #F0FDF4 !important;
    border-bottom: 1px dashed var(--light-green) !important;
}

.comparison-table td.gtg-cell {
    background: #F0FDF4;
    border-bottom: 1px dashed var(--light-green) !important;
}

.comparison-table td {
    padding: 20px 16px;
    text-align: center;
    font-size: 16px;
    color: #032E15;
    font-weight: 300;
    vertical-align: middle;
    border-bottom: 1px solid #666666;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    background: var(--light-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
}

.comparison-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-risk-free {
    display: inline-block;
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    color: var(--white);
    padding: 16px 48px;
    border-radius: 505px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-risk-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 102, 48, 0.3);
}

/* Footer Section */
.footer {
    background: linear-gradient(180deg, #032E15 0%, #016630 100%);
    padding: 60px 0 40px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: end;
}

/* Footer Left - Logo and Navigation */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.footer-nav {
    display: flex;
    gap: 64px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: opacity 0.3s ease;
    line-height: 1.5;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-item:hover {
    opacity: 0.8;
}

.social-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.social-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
}

.social-icon-wrapper svg {
    display: block;
    width: 100%;
    height: 100%;
}

.social-icon-wrapper.facebook svg {
    width: 20px;
    height: 20px;
}

.social-icon-wrapper.instagram svg {
    width: 20px;
    height: 20px;
}

.social-icon-wrapper.x-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--white);
    border-radius: 4px;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 0;
}


.newsletter-input::placeholder {
    color: var(--white);
}

.newsletter-input:focus {
    border-color: var(--white)
}

.newsletter-button {
    padding: 12px 24px;
    background: #653B09;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 44px;
}

.newsletter-button:hover {
    background: #A0522D;
    transform: translateY(-1px);
}

.newsletter-privacy {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.privacy-link {
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-stats {
        justify-content: center;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-header {
        text-align: center;
    }

    .product-description {
        text-align: center;
    }

    .fragrance-options {
        flex-direction: column;
    }

    .collection-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .collection-image {
        height: 400px;
    }

    .stats-container {
        padding: 60px 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-number {
        font-size: 56px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 16px 12px;
    }

    .product-image {
        width: 60px;
        height: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .product-title {
        font-size: 36px;
    }

    .fragrance-options {
        flex-direction: column;
    }

    .stats-container {
        padding: 40px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-number {
        font-size: 48px;
    }

    .comparison-title {
        font-size: 28px;
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .comparison-table {
        min-width: 600px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-content {
        gap: 32px;
    }

    .footer-logo {
        font-size: 36px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }
}

@media (max-width: 480px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero .container {
        padding: 0 16px;
    }

    .container {
        padding: 0 8px;
    }

    .hero-title {
        font-size: 32px;
    }

    .product-gallery {
        width: 92%;
        max-width: 92%;
        overflow: hidden;
        padding: 0;
        box-sizing: border-box;
    }

    .gallery-main {
        position: relative;
        overflow: visible;
        width: 100%;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
        z-index: 20;
    }

    .gallery-arrow-prev {
        left: 10px;
    }

    .gallery-arrow-next {
        right: 10px;
    }

    .gallery-thumbnails {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .product-content {
        padding: 0;
        box-sizing: border-box;
    }

    .stats-container {
        padding: 40px 16px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .footer-nav {
        gap: 32px;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-social {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .social-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-button {
        width: 100%;
    }
}