/* ===================================================== */
/* BASE STYLES & VARIABLES
/* ===================================================== */

:root {
    --primary-green: #0d4a2e;
    --primary-gold: #b3a377;
    --dark-gold: #a48f54;
    --text-dark: #212529;
}

a, a:hover {
    color: var(--primary-gold);
    text-decoration: none;
}

a {
    transition: color .2s;
}

body {
    font-family: Arial, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
}

.cursor-pointer, .suggestion {
    cursor: pointer;
}

/* ===================================================== */
/* BOOTSTRAP OVERRIDES
/* ===================================================== */

.btn-outline-primary,
.btn-primary {
    --bs-btn-border-color: var(--primary-green);
    --bs-btn-focus-shadow-rgb: 13, 74, 46;
    --bs-btn-disabled-border-color: var(--primary-green);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-green);
    --bs-btn-hover-bg: #0b3e27;
    --bs-btn-hover-border-color: #0a3723;
    --bs-btn-active-bg: #0a3723;
    --bs-btn-active-border-color: #082e1e;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-green);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-green);
    --bs-btn-hover-bg: var(--primary-green);
    --bs-btn-hover-border-color: var(--primary-green);
    --bs-btn-active-bg: #0b3e27;
    --bs-btn-active-border-color: #0a3723;
    --bs-btn-disabled-color: var(--primary-green);
    --bs-btn-disabled-bg: transparent;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--dark-gold);
    --bs-btn-border-color: var(--dark-gold);
    --bs-btn-hover-bg: #927f4b;
    --bs-btn-hover-border-color: #8a7847;
    --bs-btn-focus-shadow-rgb: 164, 143, 84;
    --bs-btn-active-bg: #7f6f42;
    --bs-btn-active-border-color: #76683f;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--dark-gold);
    --bs-btn-disabled-border-color: var(--dark-gold);
}

.btn-dark,
.btn-outline-primary,
.btn-primary {
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.bg-primary {
    --bs-primary-rgb: 13, 74, 46;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-primary {
    --bs-primary-rgb: 164, 143, 84;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

/* ===================================================== */
/* LAYOUT COMPONENTS
/* ===================================================== */

.full-width-container {
    width: 100vw;
    max-width: 100%;
    min-height: 500px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cards */
.card,
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.card {
    margin-top: 20px;
}

.card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.product-card {
    border-radius: .75rem;
}

.product-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.card-header {
    font-weight: 600;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.card-title a {
    color: var(--text-dark);
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-text.text-success {
    font-size: 1.1rem;
}

/* Forms */
.form-control:focus {
    border-color: #1d3c2f;
    box-shadow: 0 0 0 .25rem rgba(16, 73, 33, .25);
}

.invalid-feedback {
    display: none;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip {
    display: block;
}

.password-strength .progress {
    height: 5px;
    margin-top: 5px;
}

/* Alerts */
.alert {
    border-radius: 8px;
}

/* ===================================================== */
/* HEADER & NAVIGATION
/* ===================================================== */

.main-header {
    height: 64px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ddd;
    z-index: 100;
    transition: box-shadow .3s, background-color .3s;
}

.main-header.sticky-active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    background-color: #fff;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #004225 !important;
    gap: .2rem;
    user-select: none;
}

.navbar-brand .leaf-icon {
    color: #7db44b;
    font-size: 1.5rem;
}

.navbar-brand img {
    max-height: 42px;
    width: auto;
}

.hamburger-btn {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #004225;
    border: none;
    padding: 0;
    margin-right: 1rem;
    background: none;
    cursor: pointer;
    user-select: none;
}

.hamburger-btn:hover {
    color: #7db44b;
}

.header-icons {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #004225;
}

.header-icons a {
    color: inherit;
    text-decoration: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.header-icons a:hover {
    color: #7db44b;
}

.header-icons i {
    font-size: 16px;
}

.header-icons .badge {
    font-size: 11px;
    padding: 3px 5px;
    line-height: 1;
}

.header-icons .badge.ms-2 {
    margin-left: 4px !important;
}

.cart-count {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cart-count.bump {
    transform: scale(1.25);
}

/* ===================================================== */
/* SIDEBAR
/* ===================================================== */

#sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, .2);
    padding: 1.5rem 1rem;
    transition: left .3s;
    z-index: 1102;
    overflow-y: auto;
}

#sidebar.active {
    left: 0;
}

#sidebar ul {
    list-style: none;
    padding-left: 0;
}

#sidebar ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#sidebar ul li a {
    color: #004225;
    display: block;
    padding: .3rem .5rem;
    border-radius: 4px;
    flex: 1;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
}

#sidebar ul li a:hover {
    background-color: #7db44b;
    color: #fff;
}

#sidebar ul li i {
    margin-left: 15px;
    font-size: 1rem;
    opacity: 0.8;
    color: #004225;
    transition: color 0.3s;
    min-width: 20px;
    text-align: center;
}

#sidebar ul li:hover i {
    color: #fff;
}

#sidebar .close-btn {
    background: none;
    user-select: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #004225;
    border: none;
    margin-bottom: 2rem;
}

#sidebar .close-btn:hover {
    color: #7db44b;
}

#sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
}

#sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

/* ===================================================== */
/* DROPDOWNS
/* ===================================================== */

.header-icons .dropdown {
    position: relative !important;
}

.header-icons .dropdown-toggle {
    text-decoration: none;
    color: inherit;
    font-size: 1.25rem;
    padding: .25rem;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    display: none !important;
}

.header-icons .dropdown-menu {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    min-width: 240px !important;
    padding: 6px 0;
    text-align: left !important;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease-in-out;
    z-index: 1101;
}

.dropdown-menu.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu .dropdown-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px;
    white-space: nowrap;
    padding: 8px 14px;
}

.dropdown-menu .dropdown-item .dd-text {
    flex: 1 1 auto;
    text-align: left;
}

.dropdown-menu .dropdown-item .dd-icon {
    flex: 0 0 auto;
    width: 18px;
    text-align: center;
}

.dropdown-menu .dropdown-item .dd-badge {
    flex: 0 0 auto;
    margin-left: 6px;
}

.dropdown-menu .dropdown-item i,
.dropdown-menu .dropdown-item .badge {
    flex-shrink: 0;
}

/* ===================================================== */
/* PRODUCTS
/* ===================================================== */

.product-image-wrapper {
    background-color: #fff;
    overflow: hidden;
    width: 100%;
    height: 220px;
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem;
    position: relative;
    line-height: 0;
}

.product-image-wrapper.bg-light {
    height: 220px;
}

.product-image-wrapper img.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .35s ease-in-out;
}

.product-image-wrapper:hover img.product-img {
    transform: scale(1.05);
}

.product-img {
    height: 200px;
    object-fit: contain;
    padding: 0;
}

.badge {
    font-size: .75rem;
    font-weight: 500;
    padding: .4em .75em;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.rating i {
    font-size: .875rem;
    margin-right: 2px;
    vertical-align: middle;
}

.btn-sm {
    font-size: .875rem;
    padding: .4rem .75rem;
    border-radius: .375rem;
    transition: .2s;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover {
    box-shadow: 0 4px 10px rgba(0, 123, 255, .15);
}

/* ===================================================== */
/* PRODUCT CAROUSEL
/* ===================================================== */

.product-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0;
}

.product-carousel .owl-nav button {
    pointer-events: auto;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #fff !important;
    color: #1d3c2f !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .3s;
    position: absolute;
    top: -120px;
    transform: translateY(-50%);
}

.product-carousel .owl-nav .owl-prev {
    left: 0;
}

.product-carousel .owl-nav .owl-next {
    right: 0;
}

.product-carousel .owl-nav button:hover {
    background: #1d3c2f !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1);
}

/* ===================================================== */
/* HERO SLIDER & BANNER
/* ===================================================== */

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

.hero-image img,
.mobile-image {
    animation: floatUpDown 3s ease-in-out infinite;
}

.hero-slide {
    background-color: #1d2b1d;
    color: #bfa76f;
}

.hero-slide .hero-content {
    text-align: left;
    color: #bfa76f;
}

.hero-slide .hero-content h2,
.hero-slide .hero-content p {
    color: #bfa76f;
}

.hero-slide .btn-primary {
    background-color: #bfa76f;
    border-color: #bfa76f;
    color: #1d1d1d;
}

.hero-slide .btn-outline-primary {
    border-color: #bfa76f;
    color: #bfa76f;
}

.hero-slide .btn-outline-primary:hover {
    background-color: #bfa76f;
    color: #1d1d1d;
}

.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    display: flex;
    transition: transform .8s ease-in-out;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-overlay1,
.banner-overlay2,
.banner-overlay3 {
    box-sizing: border-box;
    z-index: 10;
    position: absolute;
    transition: opacity .3s;
    opacity: 0;
}

.banner-overlay1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
}

.banner-overlay2,
.banner-overlay3 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 40%;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.banner-overlay1 h2,
.banner-overlay3 h2 {
    margin: 0 0 5px;
    font-size: 40px;
}

.banner-overlay2 h2 {
    color: #4b1f0f;
    margin: 0 0 5px;
    font-size: 40px;
}

.banner-overlay1 p {
    margin: 15px 0;
    font-size: 22px;
}

.banner-overlay2 p {
    color: #5b3c2c;
    margin: 15px 0 30px;
    line-height: 1.5;
    font-size: 22px;
}

.banner-overlay3 p {
    margin: 15px 0 30px;
    font-size: 22px;
}

.banner-shop-now1,
.banner-shop-now2,
.banner-shop-now3 {
    background-color: #9e895b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .3s;
}

.banner-shop-now1:hover,
.banner-shop-now2:hover,
.banner-shop-now3:hover {
    background-color: #8a774a;
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s;
}

.banner-dot.active {
    background-color: #4caf50;
}

/* ===================================================== */
/* ANNOUNCEMENT BAR
/* ===================================================== */

.top-announcement {
    width: 100%;
    overflow: hidden;
    background-color: #9b8653;
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    padding: 10px 0;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}

.flashing-star {
    display: inline-block;
    margin-left: 6px;
    animation: flash 1.2s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.5);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.3);
        filter: brightness(3);
    }
}

/* ===================================================== */
/* VSN BANNER
/* ===================================================== */

.VSNbanner {
    background-color: #1e2e1e;
    color: #fff;
    text-align: center;
    position: relative;
}

.VSNbanner-title {
    font-weight: 700;
}

.VSNbanner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.VSNbtn-shop {
    background-color: #a8915f;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    transition: background .3s;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
}

.VSNbtn-shop:hover {
    background-color: #917d4c;
    color: #fff;
}

.VSNproduct-img {
    height: 220px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

.VSNproduct-caption {
    font-size: 1rem;
    color: #fff;
}

/* ===================================================== */
/* EMPLOYEE SIDEBAR
/* ===================================================== */

.custom-sidebar,
.min-h-100 {
    min-height: 100vh;
}

.custom-sidebar {
    background-color: #19381f !important;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.custom-sidebar .nav-link {
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border-left: 4px solid transparent;
    transition: .3s;
    display: flex;
    align-items: center;
}

.custom-sidebar .nav-link i {
    color: #70a12b;
    font-size: 16px;
    min-width: 24px;
    margin-right: 12px;
}

.custom-sidebar .nav-link:focus,
.custom-sidebar .nav-link:hover {
    background-color: #4c934c;
    color: #fff;
    border-left: 4px solid #d0c911;
}

.custom-sidebar .nav-link.active {
    background-color: #2e4d32;
    color: #d0c911;
    border-left: 4px solid #d0c911;
}

.custom-sidebar .logout-link {
    color: #ff4d4d;
}

.custom-sidebar .logout-link:hover {
    background-color: #5e0b0b;
    color: #fff;
    border-left: 4px solid #ff4d4d;
}

.t-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    height: 100vh;
    overflow-y: auto;
    transition: width 0.3s ease, transform 0.3s ease;
    background: #1d3a2d;
    border-right: 1px solid #e5e5e5;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    width: 260px;
}

.t-sidebar.collapsed {
    transform: translateX(-100%);
}

.t-sidebar.mini {
    width: 53px;
}

.t-sidebar.expanded {
    width: 249px;
}

.t-sidebar .menu-text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.t-sidebar.expanded .menu-text {
    opacity: 1;
    visibility: visible;
    margin-left: 12px;
}

.t-sidebar.mini .collapse {
    display: none !important;
}

.t-sidebar.mini .nav .nav {
    padding-left: 0 !important;
}

.t-sidebar.mini .nav-link i {
    margin-right: 0 !important;
    min-width: auto;
    font-size: 18px;
}

.sidebar-handle {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 40px;
    background-color: #1d3a2d;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1061;
    user-select: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.sidebar-handle.mini::after {
    content: '>';
}

.sidebar-handle.expanded::after {
    content: '<';
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1049;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================================== */
/* COUNTDOWN TIMER
/* ===================================================== */

.countdown-section {
    margin-bottom: 1.5rem;
}

.countdown-timer {
    font-family: 'Courier New', monospace;
}

.countdown-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.countdown-item {
    text-align: center;
    min-width: 70px;
    flex: 1;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: #fff;
    color: #1d1d1d;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.8rem;
    color: #bfa76f;
    text-transform: uppercase;
}

/* ===================================================== */
/* MOBILE LAYOUT
/* ===================================================== */

.mobile-layout {
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.mobile-text-section {
    color: #bfa76f;
    flex-shrink: 0;
}

.offer-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.offer-desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.mobile-image-section {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-image {
    max-width: 200px;
    max-height: 200px;
    height: auto;
}

.mobile-action-section {
    color: #bfa76f;
    flex-shrink: 0;
}

.timer-label {
    font-size: 14px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.digital-timer {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.timer-number {
    display: inline-block;
    min-width: 22px;
    text-align: center;
}

.timer-separator {
    margin: 0 2px;
    color: #bfa76f;
}

.timer-labels {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 10px 0;
    font-size: 10px;
    color: #bfa76f;
}

.timer-labels span {
    min-width: 22px;
    text-align: center;
    text-transform: uppercase;
}

.shop-now-btn {
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid #bfa76f;
    color: #bfa76f;
    text-decoration: none;
    border-radius: 4px;
    font-size: 10px;
    background: transparent;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.shop-now-btn:hover {
    background-color: #bfa76f;
    color: #1d1d1d;
}

/* ===================================================== */
/* BEFORE/AFTER COMPARISON
/* ===================================================== */

.before-after-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.before-after-image {
    position: relative;
    height: 400px;
    width: 100%;
    cursor: col-resize;
}

.before-after-image .after,
.before-after-image .before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.before-after-image .after img,
.before-after-image .before img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.before-after-image .after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: .1s linear;
}

.before-after-image .before {
    z-index: 1;
}

.before-after-image .label {
    position: absolute;
    bottom: 20px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    z-index: 3;
}

.before-after-image .before .label {
    left: 20px;
}

.before-after-image .after .label {
    right: 20px;
}

.before-after-image .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    z-index: 4;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    transition: .1s linear;
}

.before-after-image .slider-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #1d3c2f;
}

.before-after-image .slider-handle:after {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1d3c2f;
    font-size: 14px;
}

/* ===================================================== */
/* ABOUT SECTION
/* ===================================================== */

.about-section {
    position: relative;
    background-color: #000;
    overflow: hidden;
    z-index: 0;
}

.parallax-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.parallax-video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.video-overlay,
.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.video-overlay {
    background: rgba(0, 0, 0, .3);
    z-index: 2;
}

.text-overlay {
    background: rgba(0, 0, 0, .7);
    z-index: 2;
}

.container.position-relative,
.row.position-relative {
    position: relative;
    z-index: 2;
}

.about-content,
.values-content {
    background: 0 0;
    backdrop-filter: none;
    box-shadow: none;
    color: #fff;
    padding: 20px 0;
}

.about-content h2,
.about-content p,
.values-content h2,
.values-content h5,
.values-content p {
    color: #fff;
}

.about-content .btn,
.values-content .btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.about-content .btn:hover,
.values-content .btn:hover {
    background-color: rgba(255, 255, 255, .2);
    color: #fff;
}

/* ===================================================== */
/* FEATURE & ICON STYLES
/* ===================================================== */

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #70a12b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

/* ===================================================== */
/* ANIMATIONS & TRANSITIONS
/* ===================================================== */

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

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease-out, transform .6s ease-out;
    will-change: opacity, transform;
}

.fade-in-up.in-view,
.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-animate {
    opacity: 1; /* Changed from 0 */
    transform: translateX(0); /* Changed from -50% */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin: 50px 0;
    will-change: opacity, transform;
}

.slide-in-left {
    transform: translateX(0); /* Changed from -100% */
}

.slide-in-left.section-visible {
    transform: translateX(0);
}

.slide-in-right {
    transform: translateX(100%);
}

.slide-in-right.section-visible {
    transform: translateX(0);
}

.transition-hover {
    transition: transform .3s;
}

.transition-scale {
    transition: transform .35s ease-in-out;
}

.spinner {
    display: none;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: 1s linear infinite spin;
    margin: 20px auto;
}

/* ===================================================== */
/* SECTION TITLES
/* ===================================================== */

.section-title {
    position: relative;
    font-weight: 700;
    color: #19381f;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #d0c911;
    left: 0;
    bottom: -6px;
    border-radius: 3px;
}

/* ===================================================== */
/* NEWSLETTER
/* ===================================================== */

.newsletter-form .form-control {
    border: none;
    padding: 12px 15px;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}

/* ===================================================== */
/* CART ITEMS
/* ===================================================== */

.cart-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

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

/* ===================================================== */
/* SCROLL TO TOP BUTTON
/* ===================================================== */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #a7a328;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s, visibility .3s;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

#scrollTopBtn:hover {
    background-color: #218838;
    transform: scale(1.1);
}

/* ===================================================== */
/* UTILITIES
/* ===================================================== */

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mrgnt {
    margin-top: 0;
}

.exp-shop-now {
    background-color: #0d4a2e;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .3s;
}

.exp-shop-now:hover {
    background-color: #0b3e27;
}

/* ===================================================== */
/* RESPONSIVE MEDIA QUERIES (ALL CONSOLIDATED)
/* ===================================================== */

/* Desktop: >= 992px */
@media (min-width: 992px) {
    .banner-overlay1 h2,
    .banner-overlay2 h2,
    .banner-overlay3 h2 {
        font-size: 28px;
    }
    
    .banner-overlay1 p,
    .banner-overlay2 p,
    .banner-overlay3 p {
        font-size: 16px;
    }
}

/* Desktop: 769px and above */
@media (min-width: 769px) {
    .main-header {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .t-sidebar {
        position: static;
        width: 260px !important;
        transform: translateX(0) !important;
        height: 100%;
        box-shadow: none;
    }

    .t-sidebar .menu-text {
        opacity: 1 !important;
        visibility: visible !important;
        margin-left: 12px !important;
    }

    .sidebar-handle {
        display: none !important;
    }

    .sidebar-overlay {
        display: none !important;
    }
}

/* Tablet & Mobile: <= 768px */
@media (max-width: 768px) {
    .main-header {
        height: 56px;
    }
    
    .navbar-brand img {
        max-height: 34px;
    }
    
    .header-icons {
        gap: 4px;
    }
    
    .header-icons i {
        font-size: 15px;
    }
    
    .top-announcement {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .product-carousel .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: -120px;
    }
    
    .product-carousel .owl-nav .owl-prev {
        left: 0;
    }
    
    .product-carousel .owl-nav .owl-next {
        right: 0;
    }
    
    .owl-theme .owl-nav {
        margin-top: -120px;
    }
    
    .parallax-video-wrapper {
        display: none;
    }
    
    .about-section {
        background-color: #111;
        margin-top: 35px;
    }
    
    .hero-banner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .before-after-image {
        height: 300px;
    }
    
    .VSNproduct-img {
        height: 150px;
    }
    
    .banner-container {
        height: auto;
    }
    
    .banner-overlay1 h2,
    .banner-overlay2 h2,
    .banner-overlay3 h2 {
        font-size: 18px;
    }
    
    .banner-overlay1 p,
    .banner-overlay2 p,
    .banner-overlay3 p {
        font-size: 12px;
    }
    
    .banner-shop-now1,
    .banner-shop-now2,
    .banner-shop-now3 {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .banner-overlay2,
    .banner-overlay3 {
        width: 40%;
        left: 10%;
    }
    
    .banner-overlay1 {
        display: block;
    }
    
    .banner-slide {
        height: 100%;
        position: relative;
    }
    
    .banner-dots {
        bottom: 10px;
    }
    
    footer {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    #scrollTopBtn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .header-icons,
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .before-after-image {
        height: 280px;
    }
    
    .header-icons {
        gap: 1rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
    
    .form-control {
        font-size: .9rem;
        padding: .5rem;
    }
    
    #sidebar {
        width: 260px;
    }
    
    #sidebar ul li a {
        font-size: 0.9rem;
    }
    
    #sidebar ul li i {
        font-size: 0.95rem;
        margin-left: 10px;
    }
    
    .table-responsive table thead {
        display: none;
    }
    
    .table-responsive table,
    .table-responsive tbody,
    .table-responsive td,
    .table-responsive tr {
        display: block;
        width: 100%;
    }
    
    .table-responsive tr {
        margin-bottom: 1.5rem;
        border: 1px solid #dee2e6;
        border-radius: .75rem;
        padding: 1rem;
        background: #fff;
    }
    
    .table-responsive td {
        border: none;
        padding: .5rem 0;
        position: relative;
    }
    
    .table-responsive td[data-label=Product] {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .table-responsive td[data-label=Product] img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: .5rem;
        margin-right: .75rem;
    }
    
    .table-responsive td[data-label=Product] div {
        flex: 1;
    }
    
    .table-responsive td[data-label=Product] h6 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .table-responsive td[data-label=Product] small {
        display: block;
        font-size: .85rem;
        color: #6c757d;
    }
    
    .table-responsive td[data-label=Price],
    .table-responsive td[data-label=Quantity],
    .table-responsive td[data-label=Total] {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .table-responsive td[data-label=Price]::before {
        content: "Price";
        font-weight: 600;
        margin-right: 1rem;
        color: #212529;
    }
    
    .table-responsive td[data-label=Quantity]::before {
        content: "Quantity";
        font-weight: 600;
        margin-right: 1rem;
        color: #212529;
    }
    
    .table-responsive td[data-label=Quantity] input {
        max-width: 80px;
        margin: 0 .5rem;
        text-align: center;
    }
    
    .table-responsive td[data-label=Quantity] small {
        white-space: nowrap;
        font-size: .8rem;
        color: #6c757d;
    }
    
    .table-responsive td[data-label=Total]::before {
        content: "Total";
        font-weight: 600;
        margin-right: 1rem;
        color: #212529;
    }
    
    .table-responsive td[data-label=Action] {
        text-align: right;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .exp-shop-now {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
        text-align: center;
    }
    
    .prdct-head {
        margin-top: 50px;
    }
}

/* Small Mobile: <= 576px */
@media (max-width: 576px) {
    .card-title {
        font-size: .9rem;
    }
    
    .card-text.text-success,
    .header-icons,
    .navbar-brand {
        font-size: 1rem;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .product-image-wrapper {
        height: 150px;
    }
    
    .header-icons {
        gap: .6rem;
    }
    
    .header-icons .dropdown-menu {
        min-width: 220px !important;
    }
    
    .cart-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: .4rem;
    }
    
    .cart-buttons .btn {
        flex: 1;
        font-size: 9px;
        padding: .35rem .4rem;
        white-space: nowrap;
    }
}

/* Very Small Mobile: <= 450px */
@media (max-width: 450px) {
    .mobile-layout {
        width: 100%;
        padding: 12px 0;
    }
    
    .offer-title {
        font-size: 16px;
    }
    
    .offer-desc {
        font-size: 13px;
    }
    
    .mobile-image {
        max-width: 200px;
        max-height: 200px;
    }
    
    .timer-label {
        font-size: 13px;
    }
    
    .digital-timer {
        font-size: 15px;
    }
    
    .timer-labels {
        gap: 10px;
        font-size: 9px;
    }
}

/* Extra Small Mobile: <= 400px */
@media (max-width: 400px) {
    .top-announcement {
        font-size: 11px;
        padding: 6px 0;
    }
}

/* Ultra Small Mobile: <= 350px */
@media (max-width: 350px) {
    .mobile-layout {
        height: 350px;
        padding: 10px 0;
    }
    
    .offer-title {
        font-size: 15px;
    }
    
    .offer-desc {
        font-size: 12px;
    }
    
    .mobile-image-section {
        height: 100px;
    }
    
    .mobile-image {
        max-width: 100px;
        max-height: 100px;
    }
    
    .digital-timer {
        font-size: 14px;
    }
    
    #sidebar {
        width: 240px;
    }
    
    #sidebar ul li a {
        font-size: 0.85rem;
    }
    
    #sidebar ul li i {
        font-size: 0.9rem;
        margin-left: 8px;
    }
}

/* ===================================================== */
/* VIDEO RATIOS
/* ===================================================== */

.video-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.ratio-9x16 {
    position: relative;
    width: 100%;
    padding-top: 0;
    overflow: hidden;
}

.ratio iframe,
.ratio-9x16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}