/* ===== FONT FACE & RESET ===== */
:root {
    --primary-color: #325D53;
    --primary-hover: #325D53;
    --text-dark: #333;
    --text-light: #666;
    --line-green: #00B900;
    --nav-bg: #EEEEEE;
}

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

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Geist', sans-serif;
}

p, span, a, li {
    font-family: 'Inter', sans-serif;
}

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

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 300px;
    width: 100%;
    padding: 0 20px;
}

.loading-logo {
    width: 200px;
    height: auto;
    margin-bottom: 40px;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.loading-bar-container {
    width: 100%;
    height: 4px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #4a8075, var(--primary-color));
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===== HEADER STYLES ===== */
.homepage-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.homepage-header.scrolled {
    padding: 10px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

.logo {
    flex-shrink: 0;
    z-index: 10;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.homepage-header.scrolled .logo img {
    height: 50px;
}

.homepage-header.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

.nav-container {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    background: var(--nav-bg);
    border-radius: 50px;
    padding: 5px 7px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    align-items: center;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: #ffffff;
    color: var(--primary-hover);
}

.main-nav a::before {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.line-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--line-green);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.line-button:hover {
    background: #00A000;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 80px 60px;
}

.hero-content {
    text-align: right;
    max-width: 700px;
}

.hero-title {
    font-family: 'Geist', sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-button {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-border {
    position: absolute;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.button-border-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
}

.button-border-bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
}

.button-border-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-button:hover .button-border-right {
    height: 100%;
    transition-delay: 0.15s;
}

.hero-button:hover .button-border-bottom {
    width: 100%;
    transition-delay: 0.3s;
}

.hero-button:hover .button-border-left {
    height: 100%;
    transition-delay: 0.45s;
}

/* ===== LEARN MORE LINK ===== */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: gap 0.3s ease;
    padding: 10px 20px;
    overflow: visible;
}

.learn-more-link svg {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.learn-more-link:hover svg {
    transform: translateX(3px);
}

.learn-more-link:hover {
    gap: 15px;
}

.learn-more-border {
    position: absolute;
    background: var(--primary-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-more-border-top {
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
}

.learn-more-border-right {
    top: 50%;
    right: 0;
    width: 2px;
    height: 0;
    transform: translateY(-50%);
}

.learn-more-border-bottom {
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    transform: translateX(-50%);
}

.learn-more-border-left {
    top: 50%;
    left: 0;
    width: 2px;
    height: 0;
    transform: translateY(-50%);
}

.learn-more-link:hover .learn-more-border-top {
    width: 100%;
    transition-delay: 0s;
}

.learn-more-link:hover .learn-more-border-right {
    height: 100%;
    transition-delay: 0.15s;
}

.learn-more-link:hover .learn-more-border-bottom {
    width: 100%;
    transition-delay: 0.3s;
}

.learn-more-link:hover .learn-more-border-left {
    height: 100%;
    transition-delay: 0.45s;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-in-element:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-in-element:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== BRAND STORY SECTION ===== */
.brand-story-section {
    padding: 120px 0;
    background: #fff;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 120px;
}

.story-left {
    padding-right: 20px;
}

.story-title {
    font-family: 'Geist', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 50px;
}

.story-logo img {
    max-width: 320px;
    height: auto;
}

.story-content {
    padding-top: 20px;
}

.story-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.story-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
    margin-top: 35px;
}

.story-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Geist', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-title {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.stat-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== COMMITMENT SECTION ===== */
.commitment-section {
    min-height: 600px;
    padding: 120px 0;
    background: linear-gradient(135deg, #234a42 0%, #325D53 25%, #3d6f63 50%, #325D53 75%, #2a4f47 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.commitment-section .container {
    position: relative;
    z-index: 1;
}

.commitment-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.commitment-first-col {
    width: 40%;
}

.commitment-first-col h1 {
    font-size: 46px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.commitment-first-col.visible h1 {
    opacity: 1;
    transform: translateY(0);
}

.cmm-box {
    background: white;
    border-radius: 40px;
    margin-top: 120px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.commitment-first-col.visible .cmm-box {
    opacity: 1;
    transform: translateY(0);
}

.cmm-item-title {
    color: #325d53;
    display: flex;
    padding: 20px 25px;
    gap: 30px;
    padding-bottom: 0px;
}

.cmm-item-title h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
}

.cmm-item-second-title {
    font-size: 16px;
    width: 80%;
    justify-content: end;
    align-items: center;
    display: flex;
    background-image: url(https://bioactive.onebiz.co/wp-content/uploads/2025/10/Subtract.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right;
    padding-right: 15px;
}

.cmm-item-info {
    display: flex;
    align-items: flex-end;
    padding: 25px;
    gap: 30px;
}

.cmm-item-main-text {
    color: black;
    font-size: 20px;
    font-weight: 200;
    line-height: 28px;
}

.commitment-img-box img {
    width: 240px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
}

.commitment-second-col {
    width: 50%;
    display: flex;
    gap: 40px;
}

.cmm-sc-first-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.commitment-second-col.visible .cmm-sc-first-col {
    opacity: 1;
    transform: translateY(0);
}

.cmm-sc-first-img img {
    width: 350px;
    height: 600px;
    border-radius: 30px;
    object-fit: cover;
}

.cmm-sc-first-img-title {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
}

.cmm-sc-second-col {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.commitment-second-col.visible .cmm-sc-second-col {
    opacity: 1;
    transform: translateY(0);
}

.cmm-sc-btn-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cmm-sc-btn-shop-now {
    background: white;
    border-radius: 30px;
    color: #325d53;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cmm-sc-btn-shop-now:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cmm-sc-btn-shop-icon {
    background: white;
    border-radius: 30px;
    color: #325d53;
    font-weight: 600;
    padding: 0px 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.cmm-sc-btn-shop-icon:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cmm-sc-btn-shop-icon svg {
    width: 18px;
    height: 18px;
    fill: #325d53;
    transition: transform 0.3s ease;
}

.cmm-sc-btn-shop-icon:hover svg {
    transform: translate(2px, -2px);
}

.cmm-sc-shop-now-title {
    margin-bottom: 32px;
    font-size: 40px;
    text-align: center;
    font-weight: 300;
}

.cmm-sc-second-img img {
    width: 320px;
    height: 460px;
    border-radius: 30px;
    object-fit: cover;
}

/* ===== PRODUCT SHOWCASE SECTION - FULL SCREEN ===== */
.product-showcase-section {
    padding: 0;
    margin: 0;
    background: #fff;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

.showcase-item.active .showcase-overlay {
    opacity: 0 !important;
}

.showcase-item:hover .showcase-overlay {
    opacity: 0;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-grid:not(:hover) .showcase-item:not(.active) .showcase-overlay {
    opacity: 0.8;
}

/* ===== PRODUCT VIDEO SECTION - FULL SCREEN ===== */
.product-video-section {
    padding: 0;
    margin: 0;
    background: #000;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.product-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    pointer-events: none;
}

.product-video.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.desktop-product-video {
    display: block;
}

.mobile-product-video {
    display: none;
}

/* ===== PRODUCT VIDEO NAVIGATION BAR - RIGHT SIDE ===== */
.product-video-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 15%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.12) 85%,
        transparent 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.product-nav-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    filter: brightness(0) saturate(0);
    transform: scale(0.85);
}

.product-nav-item:hover {
    opacity: 0.7;
    filter: brightness(0.3) saturate(0.5);
    transform: scale(0.92);
}

.product-nav-item.active {
    opacity: 1 !important;
    filter: brightness(1) saturate(1) !important;
    transform: scale(1) !important;
}

.product-nav-item img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== DESKTOP SHOP NOW SECTION - BOTTOM CENTER ===== */
.product-shop-section {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.product-shop-image {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-bottom: 10px;
}

.product-shop-image.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-shop-image img {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.shop-now-button {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

.shop-now-button .button-text {
    position: relative;
    z-index: 2;
}

.shop-now-button .button-border {
    position: absolute;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-now-button .button-border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.shop-now-button .button-border-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
}

.shop-now-button .button-border-bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
}

.shop-now-button .button-border-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
}

.shop-now-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.shop-now-button:hover .button-border-right {
    height: 100%;
    transition-delay: 0.15s;
}

.shop-now-button:hover .button-border-bottom {
    width: 100%;
    transition-delay: 0.3s;
}

.shop-now-button:hover .button-border-left {
    height: 100%;
    transition-delay: 0.45s;
}

/* ===== MOBILE SHOP NOW BUTTON - BELOW NAV ===== */
.mobile-shop-button-container {
    display: none;
}

/* ===== RESPONSIVE COMMITMENT SECTION ===== */
@media (max-width: 1200px) {
    .commitment-first-col h1 {
        font-size: 40px;
    }

    .cmm-box {
        margin-top: 80px;
    }

    .cmm-item-title h3 {
        font-size: 26px;
        line-height: 36px;
    }

    .cmm-item-second-title {
        font-size: 14px;
    }

    .cmm-item-main-text {
        font-size: 18px;
        line-height: 26px;
    }

    .commitment-img-box img {
        width: 200px;
        height: 240px;
    }

    .cmm-sc-first-img img {
        width: 300px;
        height: 520px;
    }

    .cmm-sc-shop-now-title {
        font-size: 34px;
    }

    .cmm-sc-second-img img {
        width: 280px;
        height: 400px;
    }

    .commitment-second-col {
        gap: 30px;
    }
    
    /* Product Video Nav */
    .product-video-nav {
        right: 15px;
        padding: 12px 8px;
        gap: 12px;
    }
    
    .product-nav-item img {
        height: 45px;
    }
    
    .product-shop-section {
        bottom: 40px;
    }
    
    .product-shop-image img {
        height: 70px;
    }
    
    .shop-now-button {
        padding: 14px 35px;
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .container,
    .header-wrapper {
        padding: 0 30px;
    }

    .header-wrapper {
        gap: 50px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 10px 15px;
    }

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

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

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

    .brand-story-grid {
        gap: 60px;
    }

    .stats-section {
        gap: 60px;
    }

    .hero-overlay {
        padding: 60px 40px;
    }

    .commitment-section {
        min-height: 400px;
        padding: 100px 0;
    }
    
    .commitment-container {
        gap: 30px;
    }

    .commitment-first-col {
        width: 45%;
    }

    .commitment-second-col {
        width: 55%;
    }

    .commitment-first-col h1 {
        font-size: 36px;
    }

    .cmm-box {
        margin-top: 60px;
    }

    .cmm-item-title {
        flex-direction: column;
        gap: 15px;
    }

    .cmm-item-second-title {
        width: 100%;
        justify-content: flex-start;
        background-position: left;
        padding-left: 15px;
    }

    .cmm-item-title h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .cmm-sc-first-img img {
        width: 260px;
        height: 480px;
    }

    .cmm-sc-first-img-title {
        font-size: 20px;
    }

    .cmm-sc-shop-now-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .cmm-sc-second-img img {
        width: 240px;
        height: 360px;
    }
    
    .product-video-nav {
        padding: 10px 7px;
        gap: 10px;
    }
    
    .product-nav-item img {
        height: 42px;
    }
    
    .product-shop-section {
        bottom: 35px;
        gap: 20px;
    }
    
    .product-shop-image img {
        height: 65px;
    }
    
    .shop-now-button {
        padding: 13px 32px;
        font-size: 15px;
    }
    
    .product-showcase-section {
        height: 1100px;
        min-height: unset;
        max-height: unset;
    }

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

    .showcase-item {
        height: 550px;
    }
}

@media (max-width: 768px) {
    /* Loading Screen Mobile */
    .loading-logo {
        width: 150px;
        margin-bottom: 30px;
    }

    /* Header Mobile */
    .header-wrapper {
        padding: 0 20px;
        gap: 20px;
    }

    .logo img {
        height: 50px;
    }

    .line-button {
        display: none;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000000e0;
        border-radius: 0;
        padding: 120px 20px 40px;
        box-shadow: none;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .nav-container.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-width: 400px;
    }

    .main-nav li {
        width: 100%;
        margin-bottom: 10%;
    }

    .main-nav a {
        font-size: 20px;
        padding: 18px 30px;
        width: 100%;
        text-align: center;
        background: transparent;
        color: #ffffff;
        font-weight: 600;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Mobile */
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

    .hero-overlay {
        padding: 40px 25px;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .hero-content {
        position: absolute;
        bottom: 20px;
        text-align: right;
        right: 25px;
    }

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

    .hero-button {
        font-size: 16px;
        padding: 12px 24px;
    }

    /* Brand Story Mobile */
    .brand-story-section {
        padding: 80px 0;
    }

    .brand-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }

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

    .story-logo img {
        max-width: 250px;
    }

    /* Stats Mobile */
    .stats-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .stat-title {
        font-size: 20px;
    }

    /* Commitment Mobile */
    .commitment-section {
        padding: 80px 0;
        min-height: auto;
    }

    .commitment-container {
        flex-direction: column;
        gap: 60px;
    }

    .commitment-first-col,
    .commitment-second-col {
        width: 100%;
    }

    .commitment-first-col h1 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 40px;
    }

    .cmm-box {
        margin-top: 0;
        border-radius: 30px;
    }

    .cmm-item-title {
        padding: 20px;
        gap: 12px;
    }

    .cmm-item-title h3 {
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }

    .cmm-item-second-title {
        font-size: 14px;
        text-align: center;
        justify-content: center;
        background-position: center;
        padding: 0 10px;
    }

    .cmm-item-info {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    .cmm-item-main-text {
        font-size: 18px;
        line-height: 26px;
        width: 100%;
    }

    .commitment-img-box img {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 6/7;
    }

    .commitment-second-col {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .cmm-sc-first-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cmm-sc-first-img img {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 7/10;
    }

    .cmm-sc-first-img-title {
        font-size: 22px;
        margin-top: 20px;
    }

    .cmm-sc-second-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cmm-sc-btn-box {
        margin-bottom: 24px;
    }

    .cmm-sc-btn-shop-now {
        padding: 12px 32px;
        font-size: 16px;
    }

    .cmm-sc-btn-shop-icon {
        padding: 12px 16px;
    }

    .cmm-sc-btn-shop-icon svg {
        width: 18px;
        height: 18px;
    }

    .cmm-sc-shop-now-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .cmm-sc-second-img img {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 8/11;
    }
    
    /* Product Showcase Mobile */
    .product-showcase-section {
        height: 1100px;
    }

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

    .showcase-item {
        height: 550px;
    }

    .showcase-overlay {
        opacity: 0 !important;
    }

    .showcase-item:hover img {
        transform: scale(1);
    }
    
    /* Product Video Mobile */
    .product-video-section {
        height: 100vh;
        min-height: 500px;
        max-height: none;
    }
    
    .desktop-product-video {
        display: none;
    }
    
    .mobile-product-video {
        display: block;
    }
    
    /* Hide Desktop Shop Section */
    .desktop-shop {
        display: none !important;
    }
    
    /* Show Mobile Shop Button */
    .mobile-shop-button-container {
        display: block;
        position: absolute;
        right: 15px;
        bottom: 20px;
        z-index: 10;
    }
    
    .mobile-shop-button {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #325D53;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.5px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }
    
    .mobile-shop-button:hover,
    .mobile-shop-button:active {
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-shop-button svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }
    
    .mobile-shop-button:hover svg {
        transform: translateX(3px);
    }
    
    /* Adjust Nav Position for Mobile */
    .product-video-nav {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        padding: 12px 8px;
        gap: 12px;
    }
    
    .product-nav-item img {
        height: 38px;
    }
    
    .product-nav-item {
        transform: scale(0.8);
    }
    .product-nav-item.active {
        transform: scale(1) !important;
    }
}
@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    .hero-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-button {
        font-size: 15px;
        padding: 10px 20px;
    }

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

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

    .stat-title {
        font-size: 18px;
    }

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

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

    .commitment-first-col h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cmm-box {
        border-radius: 24px;
    }

    .cmm-item-title {
        padding: 16px;
    }

    .cmm-item-title h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .cmm-item-second-title {
        font-size: 13px;
    }

    .cmm-item-info {
        padding: 16px;
        gap: 16px;
    }

    .cmm-item-main-text {
        font-size: 16px;
        line-height: 24px;
    }

    .commitment-img-box img {
        max-width: 280px;
    }

    .cmm-sc-first-img img {
        max-width: 320px;
        border-radius: 24px;
    }

    .cmm-sc-first-img-title {
        font-size: 20px;
        margin-top: 16px;
    }

    .cmm-sc-btn-shop-now {
        padding: 10px 28px;
        font-size: 15px;
    }

    .cmm-sc-btn-shop-icon {
        padding: 10px 14px;
    }

    .cmm-sc-btn-shop-icon svg {
        width: 16px;
        height: 16px;
    }

    .cmm-sc-shop-now-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cmm-sc-second-img img {
        max-width: 300px;
        border-radius: 24px;
    }

    .commitment-second-col {
        gap: 40px;
    }

    .main-nav a {
        font-size: 18px;
        padding: 16px 25px;
    }

    .loading-logo {
        width: 120px;
    }

    .learn-more-link {
        font-size: 15px;
        padding: 8px 16px;
    }

    .product-video-section {
        min-height: 400px;
    }

    .product-video-nav {
        right: 10px;
        padding: 10px 6px;
        gap: 10px;
    }

    .product-nav-item img {
        height: 32px;
    }

    .mobile-shop-button-container {
        right: 10px;
        bottom: 15px;
    }

    .mobile-shop-button {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .mobile-shop-button svg {
        width: 16px;
        height: 16px;
    }
}
/* ===== LARGER SCREENS ===== */
@media (min-width: 1400px) {
    .product-video-nav {
        right: 40px;
        padding: 18px 12px;
        gap: 18px;
    }
    .product-nav-item img {
        height: 55px;
    }

    .product-shop-section {
        bottom: 60px;
        gap: 30px;
    }

    .product-shop-image img {
        height: 90px;
    }

    .shop-now-button {
        padding: 18px 45px;
        font-size: 19px;
    }
}

/* ===== MOBILE SHOP NOW BUTTON - SAME ANIMATION, NO PRODUCT IMAGE ===== */
.mobile-shop-button-container {
    display: none;
}

@media (max-width: 768px) {
    /* Hide Desktop Shop Section */
    .desktop-shop {
        display: none !important;
    }
    
    /* Show Mobile Shop Button - Center Bottom */
    .mobile-shop-button-container {
        display: block;
        position: absolute;
        bottom: 20px;
        z-index: 10;
    }
    
    .mobile-shop-button {
        display: inline-block;
        padding: 14px 32px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        position: relative;
        overflow: visible;
        border-radius: 8px;
    }
    
    .mobile-shop-button .button-text {
        position: relative;
        z-index: 2;
    }
    
    .mobile-shop-button .button-border {
        position: absolute;
        background: #fff;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-shop-button .button-border-top {
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
    }
    
    .mobile-shop-button .button-border-right {
        top: 0;
        right: 0;
        width: 2px;
        height: 0;
    }
    
    .mobile-shop-button .button-border-bottom {
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
    }
    
    .mobile-shop-button .button-border-left {
        bottom: 0;
        left: 0;
        width: 2px;
        height: 0;
    }
    
    .mobile-shop-button:hover,
    .mobile-shop-button:active {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    
    .mobile-shop-button:hover .button-border-right,
    .mobile-shop-button:active .button-border-right {
        height: 100%;
        transition-delay: 0.15s;
    }
    
    .mobile-shop-button:hover .button-border-bottom,
    .mobile-shop-button:active .button-border-bottom {
        width: 100%;
        transition-delay: 0.3s;
    }
    
    .mobile-shop-button:hover .button-border-left,
    .mobile-shop-button:active .button-border-left {
        height: 100%;
        transition-delay: 0.45s;
    }
    
    /* Adjust Nav Position for Mobile */
    .product-video-nav {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        padding: 12px 8px;
        gap: 12px;
    }
    
    .product-nav-item img {
        height: 38px;
    }
    
    .product-nav-item {
        transform: scale(0.8);
    }
    
    .product-nav-item.active {
        transform: scale(1) !important;
    }
}

@media (max-width: 480px) {
    .mobile-shop-button-container {
        bottom: 15px;
    }
    
    .mobile-shop-button {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .product-video-nav {
        right: 10px;
        padding: 50px 6px;
        gap: 10px;
    }
    
    .product-nav-item img {
        height: 35px;
    }
}

/*************** PRODUCT INFO SECTION *********************/

/*************** PRODUCT INFO SECTION *********************/

.product-info-section {
    padding: 100px 40px;
    transition: background 0.8s ease;
    position: relative;
    overflow: hidden;
}

/* Background gradients for each product - Enhanced Beautiful Gradients */
.product-info-section[data-product="1"] {
    background: linear-gradient(135deg, 
        #0f3d2f 0%, 
        #1a5743 15%, 
        #2d7a5f 35%, 
        #3d9973 55%, 
        #4ab389 75%, 
        #5ac99e 100%);
    position: relative;
}

.product-info-section[data-product="1"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(74, 179, 137, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(15, 61, 47, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.product-info-section[data-product="2"] {
    background: linear-gradient(135deg, 
        #4a1616 0%, 
        #6b2424 15%, 
        #8b3535 35%, 
        #a84848 55%, 
        #c55d5d 75%, 
        #e27676 100%);
    position: relative;
}

.product-info-section[data-product="2"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(226, 118, 118, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 22, 22, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.product-info-section[data-product="3"] {
    background: linear-gradient(135deg, 
        #5a4222 0%, 
        #7a5a2e 15%, 
        #9a7a3a 35%, 
        #b89448 55%, 
        #d4ad5c 75%, 
        #f0c670 100%);
    position: relative;
}

.product-info-section[data-product="3"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(240, 198, 112, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(90, 66, 34, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.product-info-section[data-product="4"] {
    background: linear-gradient(135deg, 
        #5a2a5a 0%, 
        #7a3a7a 15%, 
        #9a4e9a 35%, 
        #b565b5 55%, 
        #cf7ecf 75%, 
        #ea9aea 100%);
    position: relative;
}

.product-info-section[data-product="4"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 35% 30%, rgba(234, 154, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 65% 70%, rgba(90, 42, 90, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.product-info-container {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.product-info-first-col {
    width: 50%;
}

.product-info-first-col h1 {
    font-size: 55px;
    font-weight: 500;
    line-height: 70px;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-info-section.visible .product-info-first-col h1 {
    opacity: 1;
    transform: translateY(0);
}

.pdif-first-sub-text {
    margin-top: 20px;
    width: 350px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.product-info-section.visible .pdif-first-sub-text {
    opacity: 1;
    transform: translateY(0);
}

.pdif-first-box {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.product-info-section.visible .pdif-first-box {
    opacity: 1;
    transform: translateY(0);
}

.pdif-view-more-btn {
    display: flex;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    color: white;
    width: fit-content;
    border-radius: 70px;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pdif-view-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pdif-view-more-text {
    font-weight: 600;
    font-size: 15px;
}

.pdif-view-more-icon {
    background: white;
    border-radius: 100%;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.product-info-section[data-product="1"] .pdif-view-more-icon {
    color: #2d7a5f;
}

.product-info-section[data-product="2"] .pdif-view-more-icon {
    color: #8b3535;
}

.product-info-section[data-product="3"] .pdif-view-more-icon {
    color: #9a7a3a;
}

.product-info-section[data-product="4"] .pdif-view-more-icon {
    color: #9a4e9a;
}

.pdif-view-more-btn:hover .pdif-view-more-icon {
    transform: translateX(3px);
}

.pdif-view-more-icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.pdif-first-image-container {
    display: flex;
    margin-top: 60px;
    gap: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.product-info-section.visible .pdif-first-image-container {
    opacity: 1;
    transform: translateY(0);
}

.pdif-first-image-box img {
    width: 240px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.pdif-second-box {
    position: relative;
}

.pdif-second-box img {
    width: 240px;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.pdif-sc-top-image {
    width: 240px !important;
    height: 240px !important;
    position: absolute;
    top: -170px;
    left: 130px;
}

.product-info-second-col {
    width: 50%;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

/* Slider Navigation Buttons */
.pdif-nav-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.pdif-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pdif-nav-btn:active {
    transform: scale(0.95);
}

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

/* Products Slider */
.pdif-products-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.product-info-section.visible .pdif-products-slider {
    opacity: 1;
    transform: translateX(0);
}

.pdif-products-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
}

.pdif-products-track:active {
    cursor: grabbing;
}

.pdif-sale-box-item {
    border-radius: 20px;
    flex-shrink: 0;
    width: calc(50% - 10px);
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

.pdif-sale-box-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.pdif-product-main-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
}

.pdif-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pdif-sale-box-item:hover .pdif-product-main-image img {
    transform: scale(1.05);
}

.pdif-product-detail-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
    transition: background 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info-section[data-product="1"] .pdif-product-detail-container {
    background: rgba(45, 122, 95, 0.95);
    color: white;
}

.product-info-section[data-product="2"] .pdif-product-detail-container {
    background: rgba(139, 53, 53, 0.95);
    color: white;
}

.product-info-section[data-product="3"] .pdif-product-detail-container {
    background: rgba(154, 122, 58, 0.95);
    color: white;
}

.product-info-section[data-product="4"] .pdif-product-detail-container {
    background: rgba(154, 78, 154, 0.95);
    color: white;
}

.pdif-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.pdif-product-main-title {
    flex: 1;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.pdif-product-price {
    background: white;
    border-radius: 20px;
    font-weight: bold;
    padding: 4px 11px;
    height: fit-content;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
}

.product-info-section[data-product="1"] .pdif-product-price {
    color: #2d7a5f;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff8 100%);
    box-shadow: 0 2px 8px rgba(45, 122, 95, 0.2);
}

.product-info-section[data-product="2"] .pdif-product-price {
    color: #8b3535;
    background: linear-gradient(135deg, #ffffff 0%, #fff0f0 100%);
    box-shadow: 0 2px 8px rgba(139, 53, 53, 0.2);
}

.product-info-section[data-product="3"] .pdif-product-price {
    color: #9a7a3a;
    background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
    box-shadow: 0 2px 8px rgba(154, 122, 58, 0.2);
}

.product-info-section[data-product="4"] .pdif-product-price {
    color: #9a4e9a;
    background: linear-gradient(135deg, #ffffff 0%, #faf0fa 100%);
    box-shadow: 0 2px 8px rgba(154, 78, 154, 0.2);
}

.pdif-sale-box-item:hover .pdif-product-price {
    transform: scale(1.05);
}

.pdif-add-to-cart-btn {
    width: 100%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 10px;
}

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

.pdif-add-to-cart-btn::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.pdif-add-to-cart-btn:hover::after {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .product-info-container {
        gap: 40px;
    }
    
    .product-info-first-col h1 {
        font-size: 48px;
        line-height: 60px;
    }
    
    .pdif-first-sub-text {
        width: 100%;
        max-width: 350px;
    }
    
    .pdif-first-image-box img,
    .pdif-second-box img {
        width: 200px;
        height: 180px;
    }
    
    .pdif-sc-top-image {
        width: 200px !important;
        height: 200px !important;
        top: -140px;
        left: 110px;
    }
    
    .pdif-product-main-image {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .product-info-section {
        padding: 80px 30px;
    }
    
    .product-info-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .product-info-first-col,
    .product-info-second-col {
        width: 100%;
    }
    
    .product-info-first-col h1 {
        font-size: 42px;
        line-height: 52px;
        text-align: center;
    }
    
    .pdif-first-sub-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pdif-first-box {
        display: flex;
        justify-content: center;
    }
    
    .pdif-first-image-container {
        justify-content: center;
        margin-top: 50px;
    }
    
    .pdif-sale-box-item {
        width: calc(50% - 10px);
    }
    
    .pdif-product-main-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .product-info-section {
        padding: 60px 20px;
    }
    
    .product-info-first-col h1 {
        font-size: 32px;
        line-height: 42px;
    }
    
    .pdif-first-sub-text {
        font-size: 15px;
        width: 100%;
    }
    
    .pdif-first-image-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pdif-first-image-box,
    .pdif-second-box {
        width: 100%;
        max-width: 300px;
    }
    
    .pdif-first-image-box img,
    .pdif-second-box img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
    
    .pdif-sc-top-image {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin-top: 20px;
        width: 100% !important;
        height: auto !important;
    }
    
    .product-info-second-col {
        gap: 15px;
    }
    
    .pdif-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .pdif-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .pdif-sale-box-item {
        width: 100%;
    }
    
    .pdif-product-main-image {
        height: 350px;
    }
    
    .pdif-product-detail-container {
        padding: 15px;
        gap: 12px;
    }
    
    .pdif-product-main-title {
        font-size: 16px;
        line-height: 22px;
    }
    
    .pdif-product-price {
        font-size: 16px;
        padding: 6px 14px;
    }
    
    .pdif-add-to-cart-btn {
        font-size: 14px;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .product-info-first-col h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .pdif-first-sub-text {
        font-size: 14px;
    }
    
    .pdif-view-more-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .pdif-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .pdif-product-main-image {
        height: 300px;
    }
    
    .pdif-product-detail-container {
        padding: 12px;
        gap: 10px;
    }
    
    .pdif-product-main-title {
        font-size: 15px;
        line-height: 20px;
    }
    
    .pdif-product-price {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .pdif-add-to-cart-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    .product-info-container{
        padding:0 !important;
    }
}

/*************** PRODUCT INFO SECTION *********************/

/* ===== NEWS & EVENTS SECTION ===== */
.news-events-section {
    padding: 120px 0;
    background: #ffffff;
}

.news-events-section .section-title {
    font-family: 'Geist', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 80px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.news-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Equal Heights */
.news-item.news-tall {
    height: 450px;
}

.news-item.news-short {
    height: 450px;
    margin-top: 100px;
}

.news-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.news-title {
    font-family: 'Geist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects */
.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-item:hover .news-image img {
    transform: scale(1.08);
}

.news-item:hover .news-content {
    background: var(--primary-color);
}

.news-item:hover .news-title {
    color: #ffffff;
}

/* Button Container */
.news-button-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.news-more-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

.news-more-button .button-text {
    position: relative;
    z-index: 2;
}

.news-more-button .button-border {
    position: absolute;
    background: var(--primary-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-more-button .button-border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.news-more-button .button-border-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
}

.news-more-button .button-border-bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
}

.news-more-button .button-border-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
}

.news-more-button:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(50, 93, 83, 0.3);
}

.news-more-button:hover .button-border-right {
    height: 100%;
    transition-delay: 0.15s;
}

.news-more-button:hover .button-border-bottom {
    width: 100%;
    transition-delay: 0.3s;
}

.news-more-button:hover .button-border-left {
    height: 100%;
    transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 1200px) {
    .news-events-section .section-title {
        font-size: 54px;
        margin-bottom: 60px;
    }

    .news-item.news-tall {
        height: 420px;
    }

    .news-item.news-short {
        height: 420px;
        margin-top: 80px;
    }

    .news-title {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .news-events-section {
        padding: 100px 0;
    }

    .news-events-section .section-title {
        font-size: 48px;
    }

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

    .news-item.news-tall,
    .news-item.news-short {
        height: 400px;
        margin-top: 0;
    }

    .news-item:nth-child(odd) {
        height: 400px;
        margin-top: 0;
    }

    .news-item:nth-child(even) {
        height: 400px;
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .news-events-section {
        padding: 80px 0;
    }

    .news-events-section .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-item.news-tall,
    .news-item.news-short,
    .news-item:nth-child(odd),
    .news-item:nth-child(even) {
        height: 380px;
        margin-top: 0;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 17px;
    }

    .news-button-container {
        margin-top: 50px;
    }

    .news-more-button {
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-events-section {
        padding: 60px 0;
    }

    .news-events-section .section-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .news-item {
        height: 350px;
    }

    .news-content {
        padding: 18px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-more-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 0px 0;
    background: #ffffff;
}

.faq-header {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: left;
}

.faq-main-title {
    font-family: 'Geist', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 600px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 30px;
}

.faq-item:not(.active):hover .faq-question {
    background: #F8F8F8;
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #ffffff;
}

.faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: #ffffff;
    transform: rotate(180deg);
}

.faq-icon svg {
    transition: all 0.3s ease;
}

.faq-item:not(.active) .faq-icon svg path {
    stroke: #ffffff;
}

.faq-item.active .faq-icon svg path {
    stroke: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 40px 32px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.faq-button-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.faq-more-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border-radius: 8px;
}

.faq-more-button .button-text {
    position: relative;
    z-index: 2;
}

.faq-more-button .button-border {
    position: absolute;
    background: var(--primary-color);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-more-button .button-border-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

.faq-more-button .button-border-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
}

.faq-more-button .button-border-bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
}

.faq-more-button .button-border-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
}

.faq-more-button:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(50, 93, 83, 0.3);
}

.faq-more-button:hover .button-border-right {
    height: 100%;
    transition-delay: 0.15s;
}

.faq-more-button:hover .button-border-bottom {
    width: 100%;
    transition-delay: 0.3s;
}

.faq-more-button:hover .button-border-left {
    height: 100%;
    transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 1200px) {
    .faq-main-title {
        font-size: 54px;
    }

    .faq-subtitle {
        font-size: 17px;
    }

    .faq-question {
        padding: 25px 35px;
    }

    .faq-question-text {
        font-size: 17px;
    }

    .faq-answer-content {
        padding: 0 35px 28px 35px;
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 100px 0;
    }

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

    .faq-main-title {
        font-size: 48px;
    }

    .faq-question {
        padding: 22px 30px;
        gap: 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-answer-content {
        padding: 0 30px 25px 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

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

    .faq-main-title {
        font-size: 40px;
    }

    .faq-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
    }

    .faq-list {
        gap: 15px;
    }

    .faq-item {
        border-radius: 30px;
    }

    .faq-question {
        padding: 20px 25px;
        gap: 15px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
    }

    .faq-icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer-content {
        padding: 0 25px 22px 25px;
        font-size: 14px;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
    }

    .faq-button-container {
        margin-top: 50px;
    }

    .faq-more-button {
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-main-title {
        font-size: 34px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-item {
        border-radius: 25px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 13px;
    }

    .faq-more-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}