/* GLOBAL */
body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: "Varela Round", sans-serif;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 600;
}

section {
    padding: 80px 8%;
}




/* ------------------------------------------------------- */
/* FULL ULTRA-PREMIUM SPLIT HERO */
/* ------------------------------------------------------- */

.hero-split {
    display: flex;
    min-height: 100vh;
    width: 100%;
    padding: 0;
}

/* ---------------- LEFT: WHITE PANEL ---------------- */

.hero-left-white {
    flex: 0.24;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    padding: 90px 6%;
}

.hero-left-content {
    max-width: 540px;
    animation: fadeSlideUp 1.2s ease forwards;
}

/* tag line */
.hero-tag {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6a6a6a;
    font-weight: 600;
    margin-bottom: 22px;
}

/* title */
.hero-title-strong {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.05;
}

.highlight {
    background: linear-gradient(90deg, #d42038, #f07178);
    -webkit-background-clip: text;
    color: transparent;
}

/* underline */
.hero-underline {
    width: 80px;
    height: 5px;
    background: #bb2121;
    border-radius: 3px;
    margin: 22px 0 32px;
    animation: growBar 1.2s ease;
}

/* sub text */
.hero-sub {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

/* feature list */
.hero-feature-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.hero-feature-list li {
    font-size: 17px;
    margin-bottom: 12px;
    color: #2b2b2b;
    display: flex;
    align-items: center;
}

.hero-feature-list i {
    color: #a73030;
    margin-right: 10px;
}

/* ============================================
   BUTTON BASE
============================================ */
.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
    text-align: center;
    cursor: pointer;
}

/* ============================================
   BUY NOW — premium gradient button
============================================ */
.btn.primary.darker {
        background: linear-gradient(135deg, #ca513b, #812e1f);
    color: #fff;
    box-shadow: 0 6px 15px rgba(255, 94, 49, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.primary.darker:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 94, 49, 0.45);
    filter: brightness(1.1);
}

/* ============================================
   ADD TO CART — glass outline button
============================================ */
.btn.outline.dark-border {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.btn.outline.dark-border:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* ============================================
   MOBILE ADJUSTMENTS
============================================ */
@media(max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 70%;
        text-align: center;
    }
    .lifestyle-banner img {
     width: 80% !important;
  top: -16.2vh !important;
        right: 0vh !important;
    right: 0vh!important;
    position: absolute;
}
.intro-img-wrap img {
    width: 60%!important;
}
}


/* price */
.premium-price h2 {
    font-size: 46px;
    color: #c93737;
    font-weight: 800;
    margin-bottom: 4px;
}

.premium-price p {
    color: #666;
    font-size: 14px;
    margin-bottom: 32px;
}

/* ---------------- RIGHT: DARK PANEL ---------------- */

.hero-right-dark {
    flex: 1;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* cinematic spotlight */
.hero-spotlight {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.12), transparent 70%);
    filter: blur(100px);
    opacity: 0.55;
    z-index: 0;
}

/* premium back gradient panel */
.hero-back-panel {
    position: absolute;
    width: 70%;
    height: 70%;
    background: linear-gradient(
        140deg,
        rgba(150, 32, 32, 0.45),
        rgba(184, 9, 9, 0.18)
    );
    filter: blur(55px);
    opacity: 0.45;
    z-index: 0;
}

/* micro particles */
.hero-particles {
    position: absolute;
    width: 140%;
    height: 140%;
    background: url('../particles.png') center/cover no-repeat;
    opacity: 0.22;
    z-index: 0;
    animation: particlesFloat 16s linear infinite;
}

/* glowing pouch */
.hero-pack {
    width: 760px;
    z-index: 3;
    filter: drop-shadow(0 0 50px rgba(199, 26, 26, 0.6));
}

/* reflection */
.hero-pack-reflection {
    position: absolute;
    bottom: -40px;
    width: 380px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
    transform: scaleX(.85) skewX(-5deg);
    filter: blur(16px);
    opacity: 0.4;
    z-index: 2;
}

/* orange glow */
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180, 25, 38, 0.6), transparent 70%);
    filter: blur(140px);
    opacity: 0.45;
    z-index: 1;
}

/* cinematic sweep light */
.hero-pack.sweep::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(168, 40, 46, 0.45) 50%,
        transparent 100%
    );
    animation: heroSweep 5s ease-in-out infinite;
    z-index: 5;
}

/* ---------------- ANIMATIONS ---------------- */

@keyframes premiumFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0); }
}

@keyframes particlesFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

@keyframes growBar {
    from { width: 0; }
    to { width: 80px; }
}

@keyframes heroSweep {
    0% { left: -160%; }
    60% { left: 160%; }
    100% { left: 160%; }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {

    .hero-split { flex-direction: column; }

    .hero-left-white {
        padding-top: 140px;
        min-height: 60vh;
    }

    .hero-right-dark {
        min-height: 50vh;
    }

    .hero-pack { width: 300px; }

    .hero-title-strong { font-size: 44px; }
}


/* PREMIUM INTRO SECTION */
.upgraded-intro {
    padding: 120px 8%;
    text-align: center;
    position: relative;
}

/* CENTER WRAPPER */
.intro-center {
    max-width: 700px;
    margin: auto;
    position: relative;
       
}

/* IMAGE WRAP */
.intro-img-wrap {
    position: relative;
    width: 240px;
    margin: 0 auto 35px auto;
}

/* PRODUCT IMAGE */
.intro-img-wrap img {
    width: 100%;
    filter: drop-shadow(0 0 25px rgba(182, 18, 32, 0.4));
}

/* SOFT GLOW BEHIND IMAGE */
.intro-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 13, 13, 0.45), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.7;
}



/* TITLE */
.intro-title {
    font-size: 42px;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* ACCENT LINE */
.intro-line {
    width: 70px;
    height: 4px;
    margin: 12px auto 28px auto;
    background: linear-gradient(90deg, #c01515, #e45858);
    border-radius: 6px;
    animation: widthExpand 1.4s ease forwards;
}

@keyframes widthExpand {
    from { width: 0; }
    to { width: 70px; }
}

/* DESCRIPTION TEXT */
.intro-text {
    font-size: 18px;
    color: #dcdcdc;
    line-height: 1.7;
    max-width: 600px;
    margin: auto;
    opacity: 0.95;
}




/* ------------------------------------------------------- */
/* LIFESTYLE BANNER */
/* ------------------------------------------------------- */

.lifestyle-banner img {
    width: 50%;
    border-radius: 18px;
    object-fit: cover;
    top: -50.6vh;
    right: -3vh;
    position: absolute;
    z-index: 0;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 1439px) {.lifestyle-banner img {
    width: 45%;
    top: -42.3vh;
    right: 0vh;
}}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 1800px) {.lifestyle-banner img {
    top: -47vh;
}}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 2000px) {.lifestyle-banner img {
    top: -50.6vh;
}}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 2200px) {.lifestyle-banner img {
    width: 45%;
    top: -49vh;;
}}
/* ------------------------------------------------------- */
/* PREMIUM BENEFITS GRID */
/* ------------------------------------------------------- */

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

/* Grid layout */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Premium card */
.benefit-card {
    padding: 34px 32px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle warm back glow */
.benefit-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle,
        rgba(170, 97, 62, 0.20),
        transparent 70%
    );
    filter: blur(80px);
    opacity: 0;
    transition: 0.45s ease;
    z-index: 0;
}

/* Premium hover */
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgb(165 42 42);
    box-shadow: 0 0 40px rgb(165 42 42);
}



/* Glow reveals smoothly */
.benefit-card:hover::before {
    opacity: 1;
}

/* Title */
.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

/* Description */
.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
    position: relative;
    z-index: 2;
}

/* Smooth fade-up entrance (if using your global fade-up class) */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ------------------------------------------------------- */
/* CENTER-FILL TECHNOLOGY — FULL HEIGHT SPLIT SECTION */
/* ------------------------------------------------------- */

.split-tech {
    display: flex;
    width: 100%;
    min-height: 100vh; /* FULL SCREEN HEIGHT */
    padding: 0; /* remove padding */
    margin: 0;
}

/* ------------------------------------------------------- */
/* PREMIUM LEFT SECTION (CENTER-FILL INFO PANEL) */
/* ------------------------------------------------------- */

.split-left {
    flex: 0.5;
    padding: 110px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #da8289;
    color: #fff;
    position: relative;
}

/* small eyebrow label */
.cf-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #db1414;
    margin-bottom: 18px;
}

/* big premium title */
.cf-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cf-title span {
    background: linear-gradient(90deg, #b82828, #be4545);
    -webkit-background-clip: text;
    color: transparent;
}

/* accent line */
.cf-accent {
    width: 80px;
    height: 4px;
    background: #911515;
    border-radius: 3px;
    margin: 20px 0 30px;
    animation: cfLineGrow 1.1s ease forwards;
}

@keyframes cfLineGrow {
    from { width: 0; }
    to { width: 80px; }
}

/* paragraph */
.cf-desc {
    font-size: 18px;
    line-height: 1.75;
    color: #d4d4d4;
    margin-bottom: 30px;
    max-width: 520px;
}

/* list with icons */
.cf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cf-list li {
    font-size: 17px;
    color: #eaeaea;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.cf-list i {
    color: #ca5665;
    margin-right: 12px;
    font-size: 18px;
}

/* RIGHT SIDE (full-height image) */
.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Image full height */
.split-right img.tech-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* FULL HEIGHT BEAUTY */
    object-position: center;
}

/* Glow behind image */
.tech-backlight {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,123,63,0.45), transparent 70%);
    filter: blur(90px);
    opacity: .4;
    z-index: 1;
}

/* Text styling remains same */
.split-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.split-left p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 22px;
}

.tech-list li {
    color: #eee;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .split-tech {
        flex-direction: column;
        min-height: auto;
    }

    .split-right {
        height: 60vh;
    }

    .split-right img.tech-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* INGREDIENT SECTION */
.ingredient-reveal.upgraded-benefits {
    padding: 120px 8%;
    position: relative;
    background: #000; /* KEEP DARK BACKGROUND */
    overflow: hidden;
}

/* Soft glow behind product */
.ingredient-reveal.upgraded-benefits::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,123,63,0.4), transparent 70%);
    filter: blur(140px);
    opacity: 0.6;
    z-index: 0;
}

/* WRAPPER */
.ing-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* CENTER PRODUCT (FRONT) */
.ing-center img {
    width: 100%;
    z-index: 0;
    position: relative;
    filter: drop-shadow(0 0 35px rgba(189, 89, 89, 0.5));
}

/* BENEFIT COLUMNS */
.ing-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex: 1;
}

/* BENEFIT CARD */
.ing-card {
    background: rgba(255,255,255,0.05);
    padding: 22px 28px;
    border-radius: 18px;
    border: 1px solid rgba(156, 19, 19, 0.1);
    backdrop-filter: blur(14px);
    max-width: 340px;
    opacity: 0;
    transform: translateY(40px);
    transition: .9s cubic-bezier(.16, .82, .44, 1);
    position: relative;
}

/* Animate on scroll */
.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* TEXT */
.ing-name {
    font-size: 20px;
    font-weight: 700;
    color: #be2424;
}
.ing-desc {
    font-size: 15px;
    color: #ddd;
}

/* ARROWS */
.arrow-line {
    position: absolute;
    top: 50%;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, #b65757, transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: 1s ease;
}

.left-column .arrow-line {
    right: -150px;
}

.right-column .arrow-line {
    left: -150px;
    transform: translateY(-50%) scaleX(-1);
}

.reveal-item.visible .arrow-line {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ing-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .arrow-line {
        display: none;
    }
}




/* ------------------------------------------------------- */
/* TESTIMONIALS — CLEAN LIGHT VERSION */
/* ------------------------------------------------------- */

.testimonials-3d {
    position: relative;
    padding: 120px 8%;
    background-color: brown; /* UPDATED */
    text-align: center;
}

/* Remove dark-mode effects */
.t-bg-layer,
.t-particles {
    display: none;
}

/* Title */
.t-title {
    font-size: 34px;
    margin-bottom: 50px;
    color: #ffffff; /* darker text for readability */
}

/* Responsive grid */
.t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Light-mode glass cards */
.t-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(0,0,0,0.15); /* softer border for light theme */
    backdrop-filter: blur(10px);
    padding: 28px 22px;
    border-radius: 18px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: .35s ease;
}

.t-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 14, 47, 0.55); /* subtle orange highlight */
    box-shadow: 0 12px 30px rgba(255,123,63,0.25);
}

/* TEXT */
.t-text {
    font-size: 17px;
    color: #ffffff; /* updated for light bg */
    margin-bottom: 10px;
    line-height: 1.55;
}

.t-name {
    color: #d25a25; /* softer warm tone */
    font-size: 14px;
    font-weight: 600;
}




/* ------------------------------------------------------- */
/* PRODUCT ANGLES SHOWCASE */
/* ------------------------------------------------------- */

.angle-showcase {
    padding: 120px 8%;
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Soft radial glow in background */
.angle-showcase::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle,
        rgba(179, 65, 80, 0.25),
        transparent 60%
    );
    filter: blur(140px);
    opacity: 0.45;
}

/* Section title */
.angle-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.angle-sub {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 50px;
}

/* 4-angle grid */
.angle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 40px;
}

/* Each item */
.angle-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    transition: .35s ease;
    backdrop-filter: blur(10px);
}

.angle-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ac4848;
    box-shadow: 0 0 35px rgba(180, 53, 53, 0.35);
}

/* Product image */
.angle-item img {
    width: 80%;
    margin-bottom: 15px;
    transition: .35s ease;
    filter: drop-shadow(0 0 18px rgba(167, 36, 36, 0.3));
}

.angle-item:hover img {
    transform: scale(1.08) rotate(1deg);
}

/* Label */
.angle-item span {
    display: block;
    font-size: 15px;
    color: #d36f7f;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media(max-width: 600px){
    .angle-item img {
        width: 70%;
    }
}



/* ============================================================
   LIGHT GLASS FAQ SECTION
============================================================ */
.light-faq {
    padding: 110px 8%;
    text-align: center;
    background-color: #a52a2a;
}

/* Title */
.light-faq .faq-title {
    font-size: 44px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ container */
.faq-item {
    max-width: 760px;
    margin: 0 auto 20px;
    background: rgb(234 162 153);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: .35s ease;
    overflow: hidden;
}

/* Hover brightness */
.faq-item:hover {
    border-color: rgba(255,150,70,0.55);
    box-shadow: 0 10px 35px rgba(255,150,70,0.25);
}

/* Question row */
.faq-q {
    width: 100%;
    padding: 22px 28px;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s ease;
}

/* Icon glow */
.faq-q i {
    color: #ff9b63;
    font-size: 22px;
    filter: drop-shadow(0 0 6px rgba(255,150,70,0.5));
}

/* Answer content */
.faq-a {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 28px;
    color: #e22424;
    transition: max-height .45s ease, padding .3s ease;
}

/* Open state */
.faq-item.open .faq-a {
    padding: 10px 28px 22px;
    max-height: 200px;
}

.faq-item.open .faq-q {
    color: #000000;
}

/* Mobile */
@media (max-width: 900px) {
    .faq-q {
        font-size: 16px;
    }
    .faq-title {
        font-size: 36px;
    }
    .faq-item {
        margin-bottom: 16px;
    }
}


/* ------------------------------------------------------- */
/* ANIMATION: FADE-UP */
/* ------------------------------------------------------- */

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ------------------------------------------------------- */
/* RESPONSIVE */
/* ------------------------------------------------------- */

@media (max-width: 950px) {

    .clean-hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-bottle {
        width: 300px;
        margin-bottom: 20px;
    }

    .hero-left {
        max-width: 100%;
    }

    .split-tech {
        flex-direction: column;
        text-align: center;
    }
}

/* ------------------------------------------------------- */
/* LIFESTYLE STRIP (Premium row gallery) */
/* ------------------------------------------------------- */

.lifestyle-strip {
    padding: 0px;
    background: #000;
}

.ls-row {
    display: flex;
    gap: 0; /* tightly packed images */
}

.ls-item {
    flex: 1;
    overflow: hidden;
}

.ls-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
    border-radius: 0; /* clean, modern */
}

/* Hover effect (very premium, very light) */
.ls-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .ls-row {
        flex-direction: column;
    }
    
    .ls-item {
        margin-bottom: 6px;
    }
}


/* ------------------------------------------------------- */
/* YOU MIGHT ALSO LIKE (Premium Card Grid) */
/* ------------------------------------------------------- */

.suggested-section {
    background: #000;
    padding: 100px 8%;
    text-align: center;
}

.suggested-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* The row */
.suggested-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Each card */
.suggest-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 28px;
    text-decoration: none;
    color: #fff;
    transition: .35s ease;
}

/* Product image */
.suggest-img-box {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.suggest-img-box img {
    width: 45%;
    transition: .35s ease;
    filter: drop-shadow(0 0 18px rgba(255,123,63,0.35));
}

/* Text */
.suggest-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.suggest-item p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}

/* Hover Effect */
.suggest-item:hover {
    transform: translateY(-8px);
    border-color: #ff7b3f;
    box-shadow: 0 0 30px rgba(255,123,63,0.25);
}

.suggest-item:hover img {
    transform: scale(1.06);
}

/* Responsive */
@media (max-width: 600px) {
    .suggest-img-box {
        height: 200px;
    }
}
