:root {
    --gold-color: #BF9B30; /* Changed to a slightly darker, richer gold */
    --gold-light: #E5C76B; /* Added a lighter gold for gradients and accents */
    --dark-bg: #1A1A1A;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --text-muted: #999999;
    --border-color: #444444;
    --button-radius: 4px;
    --transition-speed: 0.3s;
}

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

@font-face {
    font-family: 'NewRailAlphabet';
    src: url('./fonts/NewRailAlphabet-Light.woff2') format('woff2'), 
        url('./fonts/NewRailAlphabet-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NewRailAlphabet';
    src: url("./fonts/NewRailAlphabet-White.woff2") format("woff2"), 
        url('./fonts/NewRailAlphabet-White.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NewRailAlphabet';
    src: url("./fonts/NewRailAlphabet-Bold.woff2") format("woff2"), 
        url('./fonts/NewRailAlphabet-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: Arial, sans-serif;
    font-weight: 400; /* Default Regular */
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #fff 0%, #f9f3e0 100%);
}

h1 {
    font-weight: 700;
}

p.light-text {
    font-weight: 300;
}



/* Header Styles */
header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(191, 155, 48, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(191, 155, 48, 0.1);
}

/* Offer Banner */
.offer-button {
    width: 100%;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 300;
    padding: 10px 0;
    text-align: center;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

nav h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

nav h1 a {
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav h1 a:hover {
    color: #666;
}

/* Navigation Links */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #000;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Navigation Buttons Styles */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.icon-button:hover {
    transform: scale(1.1) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.search-button .search-icon {
    color: #333;
}

.try-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.try-button .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.try-button:hover .arrow-icon {
    transform: translateX(3px);
}

/* Button styling */
button {
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: none;
    transition: all var(--transition-speed) ease;
    padding: 15px 30px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    border-radius: var(--button-radius);
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-light) 100%);
    color: var(--text-dark);
    box-shadow: 0 8px 20px rgba(191, 155, 48, 0.25);
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(191, 155, 48, 0.35);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-color) 100%);
}

button:hover::before {
    left: 100%;
}

/* Exclude carousel buttons, dots, and FAQ accordion buttons from global styling */
.carousel-arrow,
.dot,
.accordion-toggle {
    background: initial;
    padding: initial;
    font-size: initial;
    letter-spacing: initial;
    font-weight: initial;
    box-shadow: initial;
    transform: initial;
}

.carousel-arrow::before,
.dot::before,
.accordion-toggle::before {
    content: none;
}

.carousel-arrow:hover,
.dot:hover,
.accordion-toggle:hover {
    transform: initial;
    box-shadow: initial;
    background: initial;
}

/* Gold button styling */
.gold-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gold-button .arrow-icon {
    color: #000;
}

/* Gold text styling */
.gold-text {
    color: var(--gold-color);
    font-weight: 700;
    font-size: 72px;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(191, 155, 48, 0.3);
}

.unit-text {
    font-size: 35px;
    font-weight: 600;
    vertical-align: middle;
}

.feature-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    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-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #000;
}

.dropdown-menu li a::after {
    display: none;
}

/* Main Content Styling */
/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5% 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

.content-column {
    flex: 1.5;
    max-width: 800px;
}

.image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-column img {
    max-width: 100%;
    height: auto;
}

.rating-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: white;
    border: 1px solid rgba(191, 155, 48, 0.2);
    box-shadow: 0 2px 8px rgba(191, 155, 48, 0.1);
}

.rating {
    font-weight: 600;
    color: #333;
    background: linear-gradient(135deg, white 0%, #f9f3e0 100%);
    border: 1px solid rgba(191, 155, 48, 0.3);
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(191, 155, 48, 0.1);
}

.star-icon {
    color: var(--gold-color);
    margin-right: 5px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    white-space: nowrap;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;    
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.shop-now-button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.shop-now-button .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.shop-now-button:hover .arrow-icon {
    transform: translateX(3px);
}

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5% 40px;
    gap: 40px;
}

.taste-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    text-align: center;
    color: black;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

.incredible-text {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 20px 40px;
    border: 2px solid var(--gold-color);
    background: transparent;
    display: inline-block;
    line-height: 1.3;
    border-radius: 5px;
}

/* Elements Section */
.elements-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

.elements-image {
    flex: 1;
    text-align: center;
}

.elements-image img {
    max-width: 100%;
    height: auto;
}

.elements-content {
    flex: 1;
}

.section-subtitle {
    color: var(--gold-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.gold-text {
    color: var(--gold-color);
    font-weight: 600;
}

.potency-text {
    font-size: 1.3rem;
    font-weight: 700;
    display: inline;
    text-shadow: none;
    margin-bottom: 0;
}

/* Guarantee Section */
.guarantee-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
    text-align: center;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

.guarantee-heading {
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.guarantee-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-light) 100%);
    border-radius: 3px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.guarantee-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-align: left;
    width: 100%;
}

.guarantee-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.guarantee-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    text-align: center;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

.partners-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
}

.partners-logos img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: opacity var(--transition-speed) ease;
}

.partners-logos img:hover {
    opacity: 1;
}

/* Alcami Elements Product Section */
.alcami-elements {
    max-width: 1400px;
    margin: 60px auto;
    padding: 40px 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: flex-start;
}

.alcami-elements .left {
    width: 100%;
}

.alcami-elements .right {
    width: 100%;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    padding: 20px;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    width: 100%;
    pointer-events: none; /* This ensures clicks pass through to the carousel except on the buttons */
}

.carousel-prev, .carousel-next {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--gold-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.carousel-prev:hover, .carousel-next:hover {
    background: white;
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 15px rgba(191, 155, 48, 0.3);
}

.carousel-prev svg, .carousel-next svg {
    stroke: var(--gold-color);
    stroke-width: 2.5;
}

.product-carousel:hover .carousel-prev,
.product-carousel:hover .carousel-next {
    opacity: 1;
}

.carousel-prev, .carousel-next {
    pointer-events: auto; /* This ensures the buttons are clickable */
}

.alcami-elements ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.thumbnail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    list-style: none;
    margin-bottom: 30px;
    width: 100%;
}

.alcami-elements ul li {
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
}

.thumbnail-logo li {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.alcami-elements ul li:hover {
    transform: translateY(-5px);
    border-color: var(--gold-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.alcami-elements ul li.active-thumbnail {
    border-color: var(--gold-color);
    box-shadow: 0 6px 12px rgba(191, 155, 48, 0.3);
}

.alcami-elements ul li:active {
    transform: translateY(0);
}

.alcami-elements ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alcami-elements ul li:hover::after {
    opacity: 1;
}

.alcami-elements ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-logo li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.alcami-elements ul li:hover img {
    transform: scale(1.1);
}

.thumbnail-logo li:hover {
    border-color: var(--gold-color);
    box-shadow: 0 4px 10px rgba(191, 155, 48, 0.2);
    transform: translateY(-2px);
}

.thumbnail-logo li:hover img {
    transform: scale(1.05);
}

.thumbnail-logo li.active {
    border-color: var(--gold-color);
    box-shadow: 0 4px 10px rgba(191, 155, 48, 0.3);
}

.product-rating {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1rem;
    color: var(--text-muted);
}

.star-rating {
    display: flex;
    margin-right: 10px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.flavor-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.flavor-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

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

.flavor-name {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.flavor-option input[type="radio"]:checked + .flavor-name {
    background-color: var(--gold-color);
    color: white;
    border-color: var(--gold-color);
}

.subscription-options {
    margin-bottom: 30px;
}

.subscription-options h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.subscription-selection {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscription-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-option:hover {
    border-color: var(--gold-color);
}

.subscription-option input[type="radio"] {
    margin-right: 15px;
}

.subscription-option input[type="radio"]:checked + .option-content .option-title {
    color: var(--gold-color);
    font-weight: 600;
}

.option-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.option-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.discount {
    color: #4CAF50;
    font-size: 0.9rem;
}

.add-to-cart-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Feature Column Section */
.feature-column ul {
    display: flex;
    margin-left: 500px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.feature-column ul::-webkit-scrollbar {
    display: none;
}

.feature-column li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0 5px;
}

.feature-column li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-column img {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    object-fit: contain;
}

.feature-column h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
}

/* Himalayan Section */
.himalayan-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 40px 5%;
    display: flex;
    gap: 50px;
    align-items: center;
}

.himalayan-section .himalayan-shilajit {
    width: 530px;
    height: 372px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-subtitle {
    color: var(--gold-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style-type: none;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

.benefits-list .benefit-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word; /* Helps with breaking long words */
}

.benefits-list .benefit-item::before {
    display: none;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.benefit-content {
    flex: 1;
    min-width: 0; /* Allows content to shrink below its minimum content size */
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensures content stays within container */
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    white-space: normal;
    display: block;
}

.benefit-description {
    color: var(--text-muted);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word; /* Helps with breaking very long words */
    hyphens: auto;
    max-width: 100%;
    font-size: 0.95rem;
    width: 100%;
    white-space: normal;
    display: block;
}

.try-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
}

/* Usage Section */
.usage-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 40px 5%;
    display: flex;
    gap: 50px;
    align-items: center;
}

.usage-content {
    flex: 1;
    height: 712px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.usage-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.usage-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 90%;
}

.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-color) #f1f1f1;
}

.usage-steps::-webkit-scrollbar {
    width: 6px;
}

.usage-steps::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.usage-steps::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 10px;
}

.usage-steps::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.usage-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding-right: 10px;
}

.usage-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.usage-step-number {
    font-size: 2.2rem;
    color: var(--gold-color);
    font-weight: 700;
    line-height: 1;
    width: 45px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usage-step-content {
    width: 440px;
    height: 95px;
    flex-shrink: 0;
    overflow: hidden;
}

.usage-step-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.usage-step-description {
    color: var(--text-muted);
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Additional styles for step-number and step-content */
.step-number, .usage-usage-step-number {
    font-size: 2.2rem;
    color: var(--gold-color);
    font-weight: 700;
    line-height: 1;
    width: 45px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content, .usage-usage-step-content {
    width: 440px;
    height: 95px;
    flex-shrink: 0;
    overflow: hidden;
}

.usage-button {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
}

.usage-video-container {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 625px;
    height: 712px;
}

.usage-video {
    width: 625px;
    height: 712px;
    display: block;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .elements-section,
    .himalayan-section,
    .usage-section {
        flex-direction: column;
        align-items: center;
    }

    .himalayan-section .himalayan-shilajit {
        width: 100%;
        max-width: 530px;
        height: auto;
        aspect-ratio: 530/372;
    }

    .usage-video-container,
    .usage-video {
        width: 100%;
        max-width: 625px;
        height: auto;
        aspect-ratio: 625/712;
    }

    .usage-content {
        height: auto;
        min-height: 500px;
        padding: 30px 0;
    }

    .step-content, .usage-step-content, .usage-usage-step-content {
        width: 400px;
        height: auto;
        min-height: 95px;
    }
}

    .elements-image,
    .elements-content {
        width: 100%;
    }

    .guarantee-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .guarantee-item {
        flex: 0 0 calc(50% - 10px);
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .feature-column ul {
        gap: 15px;
    }

    .feature-column li {
        min-width: 140px;
    }

    .alcami-elements {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    @media (max-width: 576px) {
        .alcami-elements {
            display: flex;
            flex-direction: column;
        }

        .feature-column {
            margin: 0px;
            display: flex;
            flex-direction: column;
        }
    }

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 5%;
    }

    .alcami-elements ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .step-content, .usage-step-content, .usage-usage-step-content {
        width: 300px;
        height: auto;
        min-height: 95px;
    }

    .step-number, .usage-step-number, .usage-usage-step-number {
        width: 40px;
        height: 45px;
        font-size: 2rem;
    }

    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
    }

    .carousel-prev svg, .carousel-next svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .feature-column {
        padding: 10px 5px;
    }

    .feature-column ul {
        justify-content: center;
        gap: 8px;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }

    .feature-column li {
        padding: 8px 10px;
        margin: 0 auto;
    }

    .feature-column img {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-column h3 {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
    }

    .alcami-elements {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .alcami-elements ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

    .product-carousel {
        height: 350px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
    }

    .guarantee-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .feature-column {
        padding: 10px 2%;
        margin: 15px auto;
    }

    .feature-column ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature-column li {
        flex-direction: column;
        text-align: center;
        padding: 10px 5px;
    }

    .feature-column img {
        width: 28px;
        height: 28px;
        margin: 0 auto 5px;
    }

    .feature-column h3 {
        font-size: 0.8rem;
    }
}

    .features-list li {
        margin-bottom: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(191, 155, 48, 0.1);
    }

    .features-list li:last-child {
        border-bottom: none;
    }

    .gold-text {
        font-size: 56px;
        margin-bottom: 2px;
    }

    .unit-text {
        font-size: 28px;
    }

    .feature-text {
        font-size: 1.2rem;
    }

    .usage-video-container,
    .usage-video {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 625/712;
    }

    .usage-content {
        height: auto;
        min-height: auto;
        padding: 20px 0;
    }

    .step-content, .usage-step-content, .usage-usage-step-content {
        width: 220px;
        height: auto;
        min-height: 120px;
    }

    .step-number, .usage-step-number, .usage-usage-step-number {
        width: 35px;
        height: 40px;
        font-size: 1.8rem;
    }

    .carousel-prev, .carousel-next {
        width: 35px;
        height: 35px;
        border-width: 1.5px;
    }

    .carousel-prev svg, .carousel-next svg {
        width: 18px;
        height: 18px;
    }

    .carousel-controls {
        padding: 0 10px;
    }



    .feature-column ul {
        gap: 10px;
    }

    .feature-column li {
        min-width: 130px;
    }

    .himalayan-section .himalayan-shilajit {
        max-width: 100%;
    }

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

    .guarantee-item {
        width: 100%;
    }

    .guarantee-item img {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }


    .hero-title {
        font-size: 2.8rem;
    }

    .features-list {
        flex-direction: column;
        gap: 20px;
    }

    .features-list li {
        width: 100%;
    }

    .guarantee-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .partners-logos {
        justify-content: center;
    }

    .feature-column ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-carousel {
        height: 350px;
    }

    .alcami-elements ul li {
        width: 60px;
        height: 60px;
    }

    .flavor-options {
        flex-wrap: wrap;
    }

    .usage-step {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 10px;
    }


@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-column {
        padding: 15px 10px;
    }

    .feature-column ul {
       justify-content: center;
       gap: 10px;
       padding: 0 5px;
       margin: 0 auto;
       width: auto;
       max-width: 100%;
    }

    .feature-column li {
       margin: 0 auto;
       padding: 10px 12px;
    }

    .alcami-elements {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-carousel {
        height: 250px;
    }

    .alcami-elements ul {
        justify-content: center;
    }

    .alcami-elements ul li {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

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

    .thumbnail-logo li {
        border-width: 1px;
    }

    .product-title {
        font-size: 2rem;
    }

    .usage-title {
        font-size: 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5%;
    text-align: center;
    background: transparent;
    border-radius: 10px;
    box-shadow: none;
    border: none;
}

.reviews-header {
    margin-bottom: 50px;
}

.reviews-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 10px;
}

.reviews-carousel-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.reviews-carousel {
    position: relative;
    min-height: 450px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.reviews-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 10px 0;
    transition: transform 0.5s ease;
}

.review-card {
    width: calc(33.333% - 14px);
    flex: 0 0 calc(33.333% - 14px);
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(191, 155, 48, 0.15);
}

/* Remove this rule as we're showing all cards */

.carousel-arrow.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.review-stars {
    display: flex;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.star-icon {
    color: var(--gold-color);
    margin-right: 5px;
}

.star-icon.half {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.review-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.review-text br {
    display: block;
    content: "";
    margin-top: 10px;
}

.reviewer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reviewer-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white !important;
    border: 1px solid #eee !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0 !important;
}

.carousel-arrow:hover {
    background-color: var(--gold-color) !important;
    color: white;
    transform: translateY(-50%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.prev-arrow {
    left: -25px;
}

.next-arrow {
    right: -25px;
}

.carousel-dots {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background-color: #ddd !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    font-size: 0 !important;
}

.dot.active {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--gold-light) 100%) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 2px 5px rgba(191, 155, 48, 0.3) !important;
}

/* Analytics Section */
.analytics-section {
    margin: 0;
    width: 100%;
}

.analytics-background {
    background-image: url('https://res.cloudinary.com/dgsmgz8zl/image/upload/v1743156164/Frame_1000003852_is9eus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(191, 155, 48, 0.2);
}

.analytics-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.analytics-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.analytics-section .section-subtitle,
.analytics-section .section-title {
    color: var(--text-light);
    margin-bottom: 20px;
}

.analytics-section .section-title {
    margin-bottom: 60px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.analytics-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.analytics-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-color);
    line-height: 1;
    margin-bottom: 10px;
}

.analytics-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Responsive Design */
/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .hero-section,
    .taste-section {
        max-width: 1320px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: 4rem;
    }

    .features-list li {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .shop-now-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .incredible-text {
        font-size: 2rem;
        padding: 25px 50px;
    }

    /* Elements section responsive */
    .elements-section {
        max-width: 1320px;
        padding-left: 0;
        padding-right: 0;
        margin: 100px auto;
        gap: 80px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .view-ingredients-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Guarantee section responsive */
    .guarantee-section {
        max-width: 1320px;
        padding: 80px 0;
        margin: 100px auto;
    }

    .guarantee-grid {
        gap: 40px;
    }

    .guarantee-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .guarantee-title {
        font-size: 1.2rem;
    }

    .guarantee-description {
        font-size: 1rem;
    }

    /* Partners section responsive */
    .partners-section {
        max-width: 1320px;
        padding-left: 0;
        padding-right: 0;
        margin: 100px auto;
    }

    .partners-logos {
        gap: 50px;
    }

    .partners-logos img {
        max-width: 180px;
    }

    /* Reviews section responsive */
    .reviews-section {
        max-width: 1320px;
        padding-left: 0;
        padding-right: 0;
        margin: 120px auto;
    }

    .reviews-carousel {
        min-height: 550px;
    }

    .review-card {
        padding: 50px;
        max-width: 650px;
        height: auto;
    }

    .review-title {
        font-size: 1.6rem;
    }

    .review-text {
        font-size: 1.2rem;
    }

    .reviewer-image {
        width: 70px;
        height: 70px;
    }

    .reviewer-name {
        font-size: 1.2rem;
    }

    .reviewer-title {
        font-size: 1rem;
    }

    .carousel-arrow {
        width: 60px;
        height: 60px;
    }

    /* FAQ section styling */
    .faq-section {
        max-width: 1320px;
        margin: 120px auto;
        padding: 0 20px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .faq-subtitle {
        font-size: 1.2rem;
        color: var(--text-color);
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .faq-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .faq-item {
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .faq-item.active {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        border-color: #ddd;
    }

    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #fff;
        transition: background-color 0.3s ease;
    }

    .faq-item.active .faq-question {
        background-color: #f9f9f9;
    }

    .faq-question h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .faq-item.active .faq-question h3 {
        color: var(--gold-color);
    }

    .accordion-toggle {
        background: none;
        border: none;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        color: var(--text-color);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .accordion-toggle.active {
        color: var(--gold-color);
    }

    .accordion-toggle .plus-icon line {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .accordion-toggle.active .plus-icon line[y1="5"][y2="19"] {
        opacity: 0;
    }

    .faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
        padding: 0 25px 25px;
    }

    .faq-answer p {
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-color);
    }

    .view-all-faq-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: none;
        border: 2px solid var(--gold-color);
        color: var(--gold-color);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 12px 25px;
        border-radius: 30px;
        cursor: pointer;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .view-all-faq-button:hover {
        background-color: var(--gold-color);
        color: white;
    }

    .view-all-faq-button .arrow-icon {
        transition: transform 0.3s ease;
    }

    .view-all-faq-button:hover .arrow-icon {
        transform: translateX(5px);
    }

    /* Analytics section responsive */
    .analytics-section {
        margin: 120px 0;
    }

    .analytics-background {
        padding: 100px 0;
    }

    .analytics-container {
        max-width: 1320px;
        padding-left: 0;
        padding-right: 0;
    }

    .analytics-percentage {
        font-size: 5rem;
    }

    .analytics-text {
        font-size: 1.3rem;
    }
}

/* Responsive styles for Himalayan section */
@media (max-width: 1200px) {
    .himalayan-section {
        gap: 30px;
    }

    .himalayan-section .himalayan-shilajit {
        width: 450px;
        height: auto;
    }

    .benefits-list {
        gap: 15px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.95rem;
    }

    .alcami-elements {
        gap: 30px;
    }

    .feature-column ul {
        justify-content: center;
        gap: 15px;
    }

    .feature-column li {
        min-width: 140px;
        padding: 8px 12px;
    }
}

@media (max-width: 991px) {
    .himalayan-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .alcami-elements {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-column {
        padding: 15px 3%;
    }

    .feature-column ul {
        justify-content: center;
        gap: 12px;
    }

    .feature-column li {
        padding: 10px 6px;
    }

    .feature-column img {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }

    .feature-column h3 {
        font-size: 0.85rem;
    }
}

    .himalayan-section .himalayan-shilajit {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .product-info {
        width: 100%;
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

    .benefits-list .benefit-item {
        align-items: flex-start;
        text-align: left;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.9rem;
    }


@media (max-width: 767px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .product-carousel {
        height: 400px;
    }

    .feature-column {
        padding: 10px 3%;
        margin: 20px auto;
    }

    .feature-column ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .feature-column li {
        min-width: 0;
        width: 100%;
        padding: 8px 5px;
        margin: 0;
        justify-content: center;
    }

    .feature-column img {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .feature-column h3 {
        font-size: 0.85rem;
    }
}

    .benefits-list .benefit-item {
        text-align: left;
        width: 100%;
    }

    .benefit-content {
        width: 100%;
    }

    .benefit-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

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


/* Large Devices (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-section,
    .taste-section {
        max-width: 1140px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Elements section responsive */
    .elements-section {
        max-width: 1140px;
        padding: 0 4%;
        margin: 80px auto;
    }

    /* Guarantee section responsive */
    .guarantee-section {
        max-width: 1140px;
        padding: 70px 4%;
    }

    /* Partners section responsive */
    .partners-section {
        max-width: 1140px;
        padding: 0 4%;
        margin: 80px auto;
    }
}

/* Medium Devices (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    nav {
        padding: 15px 4%;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero-section,
    .taste-section {
        max-width: 960px;
        padding: 70px 4%;
    }

    .hero-title {
        font-size: 3.5rem;
        white-space: normal;
    }

    .content-column {
        max-width: 600px;
    }

    .gold-text {
        font-size: 60px;
    }

    .unit-text {
        font-size: 26px;
    }

    /* Elements section responsive */
    .elements-section {
        max-width: 960px;
        padding: 0 4%;
        margin: 70px auto;
        gap: 40px;
    }

    .section-title {
        font-size: 2.3rem;
    }

    /* Guarantee section responsive */
    .guarantee-section {
        max-width: 960px;
        padding: 60px 4%;
    }

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

    /* Partners section responsive */
    .partners-section {
        max-width: 960px;
        padding: 0 4%;
        margin: 70px auto;
    }

    /* Reviews section responsive */
    .reviews-section {
        max-width: 960px;
        padding: 0 4%;
        margin: 80px auto;
    }

    .reviews-carousel {
        min-height: 500px;
    }

    .review-card {
        padding: 35px;
        max-width: 600px;
    }

    .review-title {
        font-size: 1.3rem;
    }

    .review-text {
        font-size: 1.05rem;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }

    /* Analytics section responsive */
    .analytics-section {
        margin: 90px 0;
    }

    .analytics-background {
        padding: 70px 0;
    }

    .analytics-container {
        max-width: 960px;
    }

    .analytics-grid {
        gap: 30px;
    }

    .analytics-percentage {
        font-size: 3.5rem;
    }

    .analytics-text {
        font-size: 1.1rem;
    }
}

/* Small Devices (768px to 1024px) - iPads and tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    /* iPad-specific carousel dots */
    .carousel-dots {
        margin-top: 25px;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
    nav {
        padding: 15px 3%;
    }

    nav ul li {
        margin: 0 8px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .guarantee-heading {
        font-size: 2.8rem;
    }

    .hero-section,
    .taste-section {
        max-width: 720px;
        padding: 60px 3%;
    }

    .hero-section {
        gap: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
        white-space: normal;
    }

    .features-list {
        margin: 20px 0;
        flex-direction: row;
    }

    .features-list li {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .gold-text {
        font-size: 48px;
    }

    .unit-text {
        font-size: 22px;
    }

    .shop-now-button {
        padding: 10px 20px;
    }

    .incredible-text {
        font-size: 1.6rem;
        padding: 15px 30px;
    }

    /* Elements section responsive */
    .elements-section {
        flex-direction: row;
        gap: 30px;
        padding: 0 3%;
        margin: 60px auto;
        max-width: 720px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    /* Guarantee section responsive */
    .guarantee-section {
        padding: 50px 3%;
        max-width: 720px;
    }

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

    /* Partners section responsive */
    .partners-section {
        max-width: 720px;
        padding: 0 3%;
    }

    /* Reviews section responsive */
    .reviews-section {
        max-width: 720px;
        padding: 0 3%;
        margin: 70px auto;
    }

    .reviews-carousel {
        min-height: 470px;
    }

    .review-card {
        width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        padding: 30px;
        max-width: 500px;
    }

    .review-title {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .prev-arrow {
        left: 0;
    }

    .next-arrow {
        right: 0;
    }

    /* Analytics section responsive */
    .analytics-section {
        margin: 80px 0;
    }

    .analytics-background {
        padding: 60px 0;
    }

    .analytics-container {
        max-width: 720px;
        padding: 0 3%;
    }

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

    .analytics-percentage {
        font-size: 3.2rem;
    }

    .analytics-text {
        font-size: 1rem;
    }

    .partners-logos img {
        max-width: 130px;
    }
}

/* Extra Small Devices (576px to 767px) */
@media (max-width: 767px) {
    nav {
        flex-wrap: wrap;
        padding: 12px 3%;
    }

    .guarantee-heading {
        font-size: 2.4rem;
    }

    nav h1 {
        font-size: 1.6rem;
    }

    nav ul {
        order: 3;
        width: 100%;
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 8px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 30px;
    }

    .hero-section,
    .taste-section {
        max-width: 540px;
        padding: 50px 3%;
    }

    .hero-section {
        gap: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
        white-space: normal;
    }

    .features-list {
        margin: 15px 0;
        flex-direction: column;
        gap: 20px;
    }

    .features-list li {
        font-size: 1rem;
        margin-bottom: 10px;
        min-width: 100%;
    }

    .gold-text {
        font-size: 36px;
    }

    .unit-text {
        font-size: 18px;
    }

    .incredible-text {
        font-size: 1.5rem;
        padding: 15px 25px;
    }

    /* Elements section responsive */
    .elements-section {
        flex-direction: column;
        gap: 25px;
        padding: 0 4%;
        margin: 50px auto;
        max-width: 540px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Guarantee section responsive */
    .guarantee-section {
        padding: 40px 4%;
        max-width: 540px;
    }

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

    /* Partners section responsive */
    .partners-section {
        max-width: 540px;
        padding: 0 4%;
    }

    .partners-logos {
        gap: 20px;
    }

    .partners-logos img {
        max-width: 120px;
    }

    /* Reviews section responsive */
    .reviews-section {
        max-width: 540px;
        padding: 0 4%;
        margin: 60px auto;
    }

    .reviews-carousel {
        min-height: 430px;
        width: 100%;
        max-width: 100%;
    }

    .reviews-header {
        margin-bottom: 30px;
    }

    .review-card {
        width: 100%;
        flex: 0 0 100%;
        padding: 25px;
        max-width: 100%;
    }

    .review-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .reviewer-image {
        width: 45px;
        height: 45px;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .reviewer-title {
        font-size: 0.85rem;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .prev-arrow {
        left: 0;
    }

    .next-arrow {
        right: 0;
    }

    /* Analytics section responsive */
    .analytics-section {
        margin: 60px 0;
    }

    .analytics-background {
        padding: 50px 0;
    }

    .analytics-container {
        max-width: 540px;
        padding: 0 4%;
    }

    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .analytics-percentage {
        font-size: 2.8rem;
    }

    .analytics-text {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .reviews-carousel {
        min-height: 500px;
    }

    .review-card {
        width: 100%;
        flex: 0 0 100%;
        padding: 20px;
    }

    .review-title {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviewer-image {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .carousel-dots {
        gap: 8px;
    }

    .dot {
        width: 10px !important;
        height: 10px !important;
    }

    /* FAQ section responsive */
    .faq-section {
        padding: 40px 5%;
        margin: 40px auto;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .faq-subtitle {
        font-size: 0.9rem;
        margin-top: 8px;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .accordion-toggle {
        width: 24px;
        height: 24px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .view-all-faq-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(51, 51, 51, 0.95) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
    border-top: 3px solid var(--gold-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: var(--text-light);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    font-size: 1rem;
    display: block;
}

.footer-links-column a:hover {
    color: var(--gold-color);
}

.footer-social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-muted);
    transition: color var(--transition-speed) ease;
}

.social-link:hover {
    color: var(--text-light);
    text-decoration: none;
}

.social-link svg {
    color: var(--gold-color);
}

.footer-newsletter {
    padding-top: 70px;
}

.footer-newsletter p:first-of-type {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 600;
}

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid var(--gold-color);
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 8px rgba(191, 155, 48, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: var(--button-radius);
    background-color: var(--gold-color);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.newsletter-form button:hover {
    background-color: #BFA030;
    transform: translateY(-2px);
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 5% 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #999;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold-color);
}

/* Very Small Devices (575px and below) */
@media (max-width: 575px) {
    /* Footer social links for very small devices */
    .footer-social-links {
        gap: 30px;
        justify-content: flex-start;
    }

    .social-link {
        font-size: 0.9rem;
        padding: 5px 0;
    }

    nav {
        flex-wrap: wrap;
        padding: 10px 4%;
    }

    .guarantee-heading {
        font-size: 2rem;
    }

    .guarantee-heading::after {
        width: 60px;
        height: 2px;
    }

    nav h1 {
        font-size: 1.5rem;
    }

    .offer-button {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    nav ul {
        order: 3;
        width: 100%;
        margin-top: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 4px 6px;
    }

    nav ul li a {
        font-size: 0.85rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding-left: 20px;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 4%;
        gap: 15px;
    }

    .content-column {
        order: 2;
    }

    .image-column {
        order: 1;
        margin-bottom: 25px;
    }

    .rating-text {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .rating {
        padding: 4px 8px;
        font-size: 0.85rem;
    }

    .star-icon {
        width: 14px;
        height: 14px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        white-space: normal;
    }

    .features-list {
        margin: 15px 0;
        flex-direction: column;
        gap: 15px;
        align-items: center;                                                                                                                
    }

    .features-list li {
        align-items: center;
        font-size: 0.95rem;
        margin-bottom: 8px;
        min-width: 100%;
    }

    .gold-text {
        font-size: 32px;
        text-align: center;
    }

    .unit-text {
        font-size: 16px;
    }

    .shop-now-button {
        margin: 0 auto;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .taste-section {
        padding: 30px 4%;
    }

    .incredible-text {
        margin: 0 auto;
        padding: 12px 18px;
        font-size: 1.3rem;
    }

    /* Elements section responsive */
    .elements-section {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin: 40px auto;
        padding: 0 4%;
    }

    .elements-image img {
        max-width: 90%;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .view-ingredients-button {
        padding: 10px 18px;
        font-size: 0.9rem;
        margin: 0 auto;
        display: inline-flex;
    }

    /* Guarantee section responsive */
    .guarantee-section {
        padding: 30px 4%;
        margin: 40px auto;
    }

    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .guarantee-item {
        justify-content: flex-start;
        width: 100%;
    }

    .guarantee-item img {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .guarantee-title {
        font-size: 1rem;
    }

    .guarantee-description {
        font-size: 0.8rem;
    }

    /* Partners section responsive */
    .partners-section {
        margin: 40px auto;
        padding: 0 4%;
    }

    .partners-logos {
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .partners-logos img {
        max-width: 100px;
        margin-bottom: 10px;
    }

    /* Reviews section responsive */
    .reviews-section {
        margin: 50px auto;
        padding: 0 4%;
    }

    .reviews-carousel {
        min-height: 400px;
        width: 80%;
        max-width: 80%;
    }

    .reviews-header {
        margin-bottom: 25px;
    }

    .reviews-subtitle {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 20px;
        max-width: 300px;
    }

    .review-stars {
        margin-bottom: 10px;
    }

    .star-icon {
        width: 16px;
        height: 16px;
    }

    .review-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .review-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .reviewer-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }

    .reviewer-title {
        font-size: 0.8rem;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .prev-arrow {
        left: 0;
    }

    .next-arrow {
        right: 0;
    }

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

    /* Analytics section responsive */
    .analytics-section {
        margin: 50px 0;
    }

    .analytics-background {
        padding: 40px 0;
    }

    .analytics-container {
        padding: 0 4%;
    }

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

    .analytics-percentage {
        font-size: 2.5rem;
    }

    .analytics-text {
        font-size: 0.9rem;
    }

    .try-button, .icon-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .icon-button {
        padding: 6px;
    }

    .nav-buttons {
        gap: 10px;
    }

    /* Footer responsive styles */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main {
        align-items: flex-start;
    }

    .footer-links-grid {
        display: grid;
        justify-content: flex-start;
        align-items: flex-start;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        margin-top: 25px;
    }

    .footer-links-column {
        text-align: left;
    }

    .footer-newsletter {
        text-align: left;
        padding-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    /* FAQ section responsive */
    .faq-section {
        margin: 40px auto;
        padding: 0 4%;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .accordion-toggle {
        width: 30px;
        height: 30px;
    }

    .plus-icon {
        width: 16px;
        height: 16px;
    }

    .view-all-faq-button {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

/* FAQ Section Styles */
.faq-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 40px 5%;
    background-color: #fff;
    border-radius: 10px;
}

.faq-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.faq-header {
    flex: 1;
    text-align: left;
    max-width: 400px;
}

.faq-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 15px 0 25px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-weight: 600;
}

.contact-button .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.contact-button:hover .arrow-icon {
    transform: translateX(3px);
}

.faq-content {
    flex: 2;
}

/* Accordion Styles */
.accordion {
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid rgba(191, 155, 48, 0.3);
    margin-bottom: 15px;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-bottom: 1px solid var(--gold-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item button {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
}

.accordion-item button:hover {
    background: none;
    transform: none;
    box-shadow: none;
    color: var(--gold-color);
}

.accordion-item button .icon {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: 12px;
}

.accordion-item button .icon::before,
.accordion-item button .icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold-color);
    transition: all 0.25s ease-in-out;
}

.accordion-item button:hover .icon::before,
.accordion-item button:hover .icon::after {
    background-color: var(--gold-light);
}

.accordion-item button .icon::before {
    top: 10px;
    left: 0;
    width: 22px;
    height: 2px;
}

.accordion-item button .icon::after {
    top: 0;
    left: 10px;
    width: 2px;
    height: 22px;
}

.accordion-item button[aria-expanded='true'] .icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-item button[aria-expanded='true'] .icon::before {
    background-color: var(--gold-color);
}

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

.accordion-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 10px 0;
    margin: 0;
    padding-bottom: 20px;
}

.accordion-item button[aria-expanded='true'] + .accordion-content {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
}

.accordion-item button[aria-expanded='true'] {
    color: var(--gold-color);
}

.accordion-item[aria-expanded='true'] {
    border-bottom: 2px solid var(--gold-color);
}

.toggle-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto 0;
    font-size: 1rem;
    background: none;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-all-button:hover {
    background-color: var(--gold-color);
    color: white;
    transform: translateY(-3px);
}

.toggle-all-button .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.toggle-all-button:hover .arrow-icon {
    transform: translateX(3px);
}

/* Responsive styles for FAQ section */
@media (max-width: 992px) {
    .faq-container {
        flex-direction: column;
        gap: 30px;
    }

    .faq-header {
        max-width: 100%;
        text-align: center;
    }

    .contact-button {
        margin: 0 auto;
    }

    .accordion-item button {
        font-size: 1.1rem;
        padding: 15px 0;
    }

    .accordion-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .accordion-item {
        padding: 10px 0;
        margin-bottom: 8px;
    }

    .accordion-item button {
        font-size: 1rem;
        padding: 8px 0;
    }

    .accordion-content p {
        font-size: 0.9rem;
        padding: 5px 0 15px;
    }

    .toggle-all-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* Founders Section Styles */
.founders-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 40px 5%;
    background: transparent;
}

.founders-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.founders-video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founders-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.founders-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.founders-text {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    max-width: 800px;
}

.founders-button-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-us-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 150px;
}

.about-us-button .arrow-icon {
    transition: transform var(--transition-speed) ease;
}

.about-us-button:hover .arrow-icon {
    transform: translateX(3px);
}

/* Contact Section Styles */
.contact-section {
    height: 0500px;
    max-width: 1400px;
    width: 100%;
    margin: 80px auto;
    padding: 0 5%;
    background-image: url('https://res.cloudinary.com/dgsmgz8zl/image/upload/v1743219023/coffeeforweightloss4-1695383353_uo0tqh.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    width: 100%;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.contact-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 500px;
    margin: 10px 0 0;
    width: 100%;
}

.contact-input {
    flex: 1;
    height: 50px;
    padding: 12px 15px;
    border: 2px solid var(--gold-color);
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: #999;
}

.contact-input:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 8px rgba(191, 155, 48, 0.5);
}

.contact-button {
    height: 50px;
    padding: 12px 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--button-radius);
    background-color: var(--gold-color);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.contact-button:hover {
    background-color: #BFA030;
    transform: translateY(-2px);
}

.contact-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.contact-button .arrow-icon {
    margin-left: 8px;
    transition: transform var(--transition-speed) ease;
}

.contact-button:hover .arrow-icon {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .contact-section {
        height: 450px;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .contact-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .contact-input {
        width: 100%;
        height: 45px;
    }

    .contact-disclaimer {
        font-size: 0.7rem;
        margin-top: 12px;
    }

    .contact-button {
        width: 100%;
        height: 45px;
    }
}

/* Media Queries for Founders Section */
@media (max-width: 1199px) {
    .founders-container {
        gap: 30px;
    }

    .founders-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .founders-container {
        gap: 30px;
    }

    .founders-video, .founders-content {
        max-width: 700px;
    }

    .founders-content {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .founders-section {
        margin: 50px auto;
        padding: 20px 4%;
    }

    .founders-container {
        gap: 25px;
    }

    .founders-content {
        gap: 20px;
    }

    .founders-text {
        font-size: 1rem;
    }

    .about-us-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
}

/* Media Queries for FAQ Section */
@media (min-width: 992px) and (max-width: 1199px) {
    .faq-section {
        max-width: 960px;
        padding: 30px 4%;
        margin: 70px auto;
    }

    .faq-row-container {
        gap: 40px;
    }

    .faq-header {
        max-width: 350px;
    }

    .faq-question h3 {
        font-size: 1.15rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .faq-section {
        max-width: 720px;
        padding: 25px 4%;
        margin: 60px auto;
    }

    .faq-row-container {
        gap: 30px;
    }

    .faq-header {
        max-width: 300px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        max-width: 540px;
        padding: 20px 4%;
        margin: 50px auto;
    }

    .faq-row-container {
        flex-direction: column;
        gap: 30px;
    }

    .faq-header {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .faq-subtitle {
        font-size: 1rem;
        margin: 10px 0 20px;
    }

    .faq-content {
        width: 100%;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Table Section Styles */
.table-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
}

.try-it-risk-free {
    margin-top: 40px;
}

.try-it-risk-free-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Subscribe Section Styles */
.subscribe-section {
    position: relative;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0;
    height: auto;
    background-image: url('https://res.cloudinary.com/dgsmgz8zl/image/upload/v1743224331/Rectangle_6719_ti9ijj.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.subscribe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.subscribe-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 5%;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subscription-label {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gold-color);
    display: inline-block;
    margin-bottom: 40px;
}

.subscribe-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.discount-text {
    font-weight: 800;
    color: var(--gold-color);
    font-size: 2.8rem;
}

.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.benefit-item {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 5px 0;
    display: inline-block;
    transition: all 0.3s ease;
    width: 45%;
    text-align: left;
    position: relative;
    padding-left: 28px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.subscribe-button {
        align-self: flex-start;
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 1rem;
}

/* Responsive styles for Subscribe Section */
@media (max-width: 991px) {
    .subscribe-section {
        height: 550px;
    }

    .subscribe-content {
        max-width: 500px;
        padding: 50px 5%;
    }

    .subscribe-title {
        font-size: 2.2rem;
    }

    .discount-text {
        font-size: 2.5rem;
    }

    .benefits-container {
        gap: 12px;
    }

    .benefits-row {
        justify-content: space-between;
    }

    .benefit-item {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .subscribe-section {
        height: auto;
        min-height: 600px;
        background-position: right center;
    }

    .subscribe-overlay {
        background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 100%);
    }

    .subscribe-content {
        max-width: 100%;
        padding: 40px 5%;
        align-items: flex-start;
        text-align: left;
    }

    .subscription-label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .subscribe-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .discount-text {
        font-size: 2.2rem;
    }

    .benefits-container {
        gap: 10px;
        margin-bottom: 25px;
    }

    .benefits-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .benefit-item {
        font-size: 1rem;
        padding: 5px 0;
        padding-left: 25px;
        width: 100%;
        margin-left: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .benefit-item::before {
        font-size: 1.1rem;
    }

    .subscribe-button {
        align-self: flex-start;
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}



.table-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-divider {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 1.1rem;
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1rem;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table thead th {
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid #ddd;
    vertical-align: bottom;
    padding-bottom: 15px;
}

.feature-column {
    text-align: left;
    width: 25%;
}

.product-column {
    width: 18.75%;
}

.product-image {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #f9f9f9;
}

.product-name {
    display: block;
    font-weight: 600;
    margin-top: 5px;
}

.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-value {
    color: var(--text-muted);
}

.feature-value.positive {
    color: var(--gold-color);
    font-weight: 600;
}

.check-icon {
    color: #4CAF50;
    stroke-width: 3;
}

.x-icon {
    color: #F44336;
    stroke-width: 2;
}

@media (max-width: 991px) {
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }

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

    /* Ensure potency-text is consistent with desktop */
    .potency-text {
        font-size: 1.3rem;
        font-weight: 700;
    }
}

@media (max-width: 767px) {
    .table-section {
        margin: 60px auto;
    }

    .table-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Ensure potency-text is consistent with desktop */
    .potency-text {
        font-size: 1.3rem;
        font-weight: 700;
    }

    /* Mobile button styling */
    button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

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

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

    .try-it-risk-free {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

