/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth page load animation */
body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background: transparent;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 700;
    color: #5a7a6a;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #162456;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link:focus {
    color: #2d5a45;
    outline: none;
}

.nav-link:focus-visible {
    outline: 2px solid #2d5a45;
    outline-offset: 4px;
    border-radius: 4px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 4px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 12px 0;
    margin-top: 15px;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(45, 90, 69, 0.08) 0%, rgba(45, 90, 69, 0.12) 100%);
    color: #2d5a45;
    padding-left: 28px;
}

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

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #2d5a45;
}

.cta-btn {
    background: linear-gradient(0deg, #3d7a5a 0%, #2d5a45 50%, #1a4d3a 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(45, 90, 69, 0.2);
}

.cta-btn:hover,
.cta-btn:focus {
    opacity: 0.9;
    outline: none;
}

.cta-btn:focus-visible {
    outline: 2px solid #2d5a45;
    outline-offset: 2px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.active {
    max-height: 800px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-mobile-list {
    list-style: none;
    padding: 20px 0;
}

.nav-mobile-link {
    display: block;
    padding: 15px 40px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.nav-mobile-link:hover {
    background: rgba(45, 90, 69, 0.05);
    color: #2d5a45;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(45, 90, 69, 0.03);
}

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

.mobile-dropdown-item {
    display: block;
    padding: 12px 40px 12px 60px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(45, 90, 69, 0.08);
    color: #2d5a45;
    padding-left: 65px;
}

/* Hero Section */
.hero {
    background-image: url('../assets/header-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 0 80px 0;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
}

.hero-text {
    max-width: 600px;
}

/* Award Badge */
.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, #5a8a6f 0%, #4a7a5f 50%, #3a6a4f 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    margin-bottom: 30px;
}

.award-badge .award-icon {
    width: 16px;
    height: 16px;
}

/* Hero Title */
.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* Stats */
.stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #5a7a6a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a7a6a;
    font-weight: 500;
}

/* Hero CTA */
.hero-cta {
    background: linear-gradient(0deg, #3d7a5a 0%, #2d5a45 50%, #1a4d3a 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 90, 69, 0.3);
}

.hero-cta:hover,
.hero-cta:focus {
    opacity: 0.9;
    outline: none;
}

.hero-cta:focus-visible {
    outline: 2px solid #2d5a45;
    outline-offset: 2px;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(0deg, #3d7a5a 0%, #2d5a45 50%, #1a4d3a 100%);
    padding: 60px 0;
}

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

.stat-box {
    text-align: center;
    color: white;
}

.stat-percentage {
    font-size: 72px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Product Section */
.product-section {
    background: white;
    padding: 80px 0;
}

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

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-carousel {
    position: relative;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.carousel-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-main-image.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    bottom: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #f5f5f5;
}

.carousel-arrow img {
    width: 20px;
    height: 20px;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #666;
    border-color: #666;
}

/* Thumbnail Grid */
.thumbnail-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #2d5a45;
}

.thumbnail.active {
    border-color: #2d5a45;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.star {
    color: #d1d5db;
    font-size: 16px;
}

.star.filled {
    color: #10b981;
}

.star.half {
    position: relative;
    color: #d1d5db;
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #10b981;
    width: 50%;
    overflow: hidden;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Purchase Options */
.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.subscription-option {
    border: 1px solid green;
    border-radius: 8px;
    overflow: hidden;
}

.subscription-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    padding-bottom: 16px;
    background: white;
    cursor: pointer;
}

.subscription-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #919798;
    margin: 8px 0;
    display: none;
}

.subscription-option.active .subscription-header::after {
    display: block;
}

.subscription-option.has-badge .subscription-header {
    padding-top: 20px;
}

.subscription-option.has-badge.active .subscription-header {
    padding-top: 64px;
}

.subscription-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.subscription-radio {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.subscription-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.most-popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, #00C950 0%, #008236 50%, #032E15 100%);
    color: white;
    padding: 8px 20px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    display: none;
}

.subscription-option.has-badge.active .most-popular-badge {
    display: block;
}


.subscription-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.subscription-content.active {
    max-height: 2000px;
    padding: 0 20px 20px 20px;
}

/* Fragrance Selector */
.fragrance-selector {
    margin-bottom: 24px;
}

.selector-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.fragrance-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.fragrance-option {
    cursor: pointer;
}

.fragrance-option input[type="radio"] {
    display: none;
}

.fragrance-card {
    position: relative;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.fragrance-option input[type="radio"]:checked + .fragrance-card {
    border-color: #2d5a45;
    background: #f0f9f4;
}

.fragrance-option input[type="radio"]:checked + .fragrance-card .custom-radio {
    border-color: #2d5a45;
}

.fragrance-option input[type="radio"]:checked + .fragrance-card .custom-radio::after {
    opacity: 1;
}

.best-seller-tag {
    position: absolute;
    top: -12px;
    right: 0px;
    background: linear-gradient(0deg, #3d7a5a 0%, #2d5a45 50%, #1a4d3a 100%);
    color: white;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
}

.fragrance-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.custom-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #2d5a45;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fragrance-card img {
    width: 60px;
    height: 80px;
    object-fit: contain;
}

.fragrance-name {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

/* What's Included */
.whats-included {
    margin-bottom: 24px;
}

.included-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.included-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.included-box {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.box-label {
    font-size: 12px;
    color: #666;
    margin: 0;
    text-align: center;
}

.free-tag {
    font-weight: 700;
    color: #1a1a1a;
}

.box-image {
    width: 50px;
    height: 70px;
    object-fit: contain;
}

.free-bottles {
    display: flex;
    gap: 8px;
    align-items: center;
}

.free-bottles img {
    width: 40px;
    height: 55px;
    object-fit: contain;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits-list li {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-badge {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: block;
    width: 100%;
    background: linear-gradient(0deg, #3d7a5a 0%, #2d5a45 50%, #1a4d3a 100%);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin-top: 10px;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
}

/* Product Showcase Grid */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.showcase-item {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Our Collection Section */
.our-collection-section {
    background: white;
    padding: 80px 0;
}

.collection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.collection-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.collection-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

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

.accordion-item {
    border: 1px solid #CDCDCD;
    border-radius: 8px;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 0 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header span {
    flex: 1;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

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

.accordion-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

/* Collection Image */
.collection-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collection-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 80px 0;
}

.section-divider {
    text-align: center;
    font-size: 24px;
    color: #999;
    margin-bottom: 30px;
    letter-spacing: 8px;
}

.comparison-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

/* Table Header */
.comparison-table thead {
    background: white;
    border-bottom: 2px solid #666666;
}

.comparison-table th {
    padding: 30px 20px;
    text-align: center;
    font-weight: 600;
    color: #666;
    vertical-align: middle;
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table th:not(:first-child) {
    width: 17.5%;
}

.qualities-header {
    text-align: left;
    font-size: 16px;
    color: #666;
}

.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.product-name {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* Table Rows */
.comparison-table tbody tr {
    border-bottom: 1px solid #666666;
}

.comparison-table td {
    padding: 24px 20px;
    text-align: center;
    font-size: 15px;
    color: #666;
    vertical-align: middle;
}

.quality-cell {
    text-align: left;
    font-weight: 500;
    color: #666;
}

.gtg-cell {
    background: rgba(49, 237, 149, 0.125);
    font-weight: 600;
    color: #1a1a1a;
}

/* Icons */
.check-icon,
.cross-icon,
.check-icon-outline {
    flex-shrink: 0;
}

/* CTA Button */
.comparison-cta {
    text-align: center;
    margin-top: 50px;
}

.risk-free-btn {
    background: linear-gradient(0deg, #3d7a5a 0%, #2d5a45 50%, #1a4d3a 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 90, 69, 0.3);
}

.risk-free-btn:hover,
.risk-free-btn:focus {
    opacity: 0.9;
    outline: none;
}

.risk-free-btn:focus-visible {
    outline: 2px solid #2d5a45;
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: #032E15;
    padding: 60px 0 40px 0;
    color: white;
}

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

/* Footer Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-icon {
    opacity: 1;
}

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

.newsletter-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: bold;
}

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

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 24px;
    background: #653B09;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
    background: #b45309;
    outline: none;
}

.newsletter-btn:focus-visible {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

.newsletter-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.privacy-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: white;
}

/* Responsive Styles */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

    .header-actions {
        margin-left: auto;
        gap: 12px;
    }

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

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

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

    /* Statistics Section Tablet */
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-percentage {
        font-size: 56px;
    }

    /* Product Section Tablet */
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-carousel {
        max-width: 100%;
        height: 400px;
    }

    .thumbnail-row {
        max-width: 100%;
    }

    .thumbnail {
        height: 80px;
    }

    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item {
        height: 250px;
    }

    .fragrance-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .fragrance-card {
        padding: 12px;
    }

    .fragrance-card img {
        width: 50px;
        height: 65px;
    }

    .stats {
        gap: 40px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 24px;
    }

    .header-actions .search-btn {
        padding: 4px;
    }

    .hero-content {
        padding: 100px 0 40px 0;
        text-align: center;
        justify-content: center;
        min-height: 100vh;
    }

    .hero-text {
        max-width: 100%;
    }

    .award-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

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

    .stat-label {
        font-size: 14px;
    }

    /* Comparison Section Mobile */
    .comparison-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .comparison-table {
        overflow-x: auto;
        display: block;
    }

    .comparison-table thead,
    .comparison-table tbody {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 150px;
    }

    .comparison-table th:not(:first-child),
    .comparison-table td:not(:first-child) {
        width: 120px;
    }

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

    .product-name {
        font-size: 12px;
    }

    .comparison-table td {
        padding: 16px 12px;
        font-size: 14px;
    }

    /* Statistics Section Mobile */
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-percentage {
        font-size: 56px;
    }

    .stat-description {
        font-size: 13px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        gap: 20px;
        align-items: center;
    }

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

    .footer-nav {
        gap: 16px;
        align-items: center;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-social {
        gap: 16px;
        align-items: center;
    }

    .social-link {
        font-size: 15px;
        justify-content: center;
    }

    .footer-newsletter {
        grid-column: 1;
        align-items: center;
    }

    .newsletter-text {
        font-size: 15px;
        text-align: center;
    }

    /* Our Collection Mobile */
    .collection-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .hero-cta {
        width: 100%;
        padding: 14px 32px;
    }

    /* Product Section Mobile */
    .product-section {
        padding: 60px 0;
    }

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

    .main-carousel {
        height: 300px;
    }

    .carousel-arrow {
        width: 32px;
        height: 32px;
        bottom: 15px;
    }

    .carousel-arrow img {
        width: 16px;
        height: 16px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 22px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .thumbnail {
        height: 60px;
    }

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

    .showcase-item {
        height: 200px;
    }

    .thumbnail-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .fragrance-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .fragrance-card {
        padding: 8px;
    }

    .fragrance-card img {
        width: 40px;
        height: 55px;
    }

    .fragrance-name {
        font-size: 10px;
    }

    .best-seller-tag {
        font-size: 8px;
        padding: 2px 6px;
    }

    .included-boxes {
        grid-template-columns: 1fr;
    }

    .subscription-name {
        font-size: 14px;
    }

    .price-current {
        font-size: 18px;
    }

    .comparison-section {
        padding: 60px 0;
    }

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

    .section-divider {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 120px;
    }

    .comparison-table th:not(:first-child),
    .comparison-table td:not(:first-child) {
        width: 100px;
    }

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

    .product-name {
        font-size: 11px;
    }

    .comparison-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .comparison-table th {
        padding: 20px 8px;
    }

    .risk-free-btn {
        width: 100%;
        padding: 14px 32px;
    }

    /* Statistics Section Small Mobile */
    .statistics-section {
        padding: 40px 0;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-percentage {
        font-size: 48px;
    }

    .stat-description {
        font-size: 12px;
    }

    /* Footer Small Mobile */
    .footer {
        padding: 40px 0 30px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        gap: 16px;
        align-items: center;
    }

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

    .footer-nav {
        gap: 14px;
        align-items: center;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-social {
        gap: 14px;
        align-items: center;
    }

    .social-link {
        font-size: 14px;
        justify-content: center;
    }

    .footer-newsletter {
        grid-column: 1;
        align-items: center;
    }

    .newsletter-text {
        font-size: 14px;
        text-align: center;
    }

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

    .newsletter-input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    .newsletter-disclaimer {
        font-size: 12px;
        text-align: center;
    }

    /* Our Collection Small Mobile */
    .our-collection-section {
        padding: 60px 0;
    }

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

    .accordion-header {
        font-size: 14px;
    }

    .accordion-content p {
        font-size: 13px;
    }
}

