@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- GLOBAL VARIABLES --- */
:root {
    --brand-black: #000000;
    --brand-green: #00cc00;
    --brand-green-dark: #006600;
    /* Adjusted to a bright, vibrant green matching the logo */
    --brand-yellow: #ffff00;
    /* The yellow swoosh color */
    --text-dark: #333333;
    --font-heading: "Playfair Display", sans-serif;
    --font-ui: "Poppins", sans-serif;
}

body {
    font-family: var(--font-ui);
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Push content down so the fixed navbar doesn't cover it */
.page-content {
    padding-top: 100px;
}

/* ================================================================
   PREMIUM NAVBAR & SIDEBAR STYLING
   ================================================================ */

/* --- Top Navbar (Desktop Base) --- */
.premium-navbar .btn-premium-pill {
    background-color: #21d000 !important;
}

.premium-navbar {
    background-color: rgb(0 0 0);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(204, 204, 204, 0.05);
    padding: 0px 0;
    transition: all 0.4s ease;
    z-index: 1040;
    border-bottom: 2px solid #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 2px 0px 5px 2px #7a7a7a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 1. Lock the wrapper so it doesn't grow */
.navbar-brand {
    position: relative;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
}

/* 2. Make the logo absolute so it floats over the navbar */
.brand-logo {
    position: absolute;
    left: 0;
    top: 50%;
    /* Center it vertically... */
    transform: translateY(-50%);
    /* ...perfectly */
    height: 150px;
    max-height: 150px;
    /* Allow it to be much taller now */
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-brand:hover .brand-logo {
    transform: translateY(-50%) scale(1.05);
    /* Make sure translateY is kept here */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

/* --- Desktop Links (Smooth Lift & Shadow Hover) --- */
.nav-links-premium .nav-link {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    /*color: #555555 !important;*/
    color: #fff !important;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 50px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links-premium .nav-link:hover {
    color: var(--brand-green) !important;
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 204, 0, 0.08);
}

/* --- Premium CTA Button (Sweep Hover) --- */
.btn-premium-pill {
    font-family: var(--font-ui);
    font-weight: 700;
    background-color: var(--brand-black);
    color: #ffffff !important;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 1px 10px 10px 0px #cccc; */
    z-index: 1;
}

/* Sweep to right background effect */
.btn-premium-pill::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-green);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
}

.btn-premium-pill:hover::before {
    transform: scaleX(1);
}

.btn-premium-pill:hover {
    color: var(--brand-black) !important;
    box-shadow: 0 10px 25px rgba(0, 204, 0, 0.25);
    transform: translateY(-2px);
}

/* ================================================================
   MOBILE SIDEBAR (OFFCANVAS) STYLING
   ================================================================ */

/* Custom Animated Hamburger Icon */
.custom-hamburger {
    border: none;
    background: transparent;
    width: 35px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.custom-hamburger:focus {
    box-shadow: none;
    outline: none;
}

.custom-hamburger .line {
    display: block;
    width: 100%;
    height: 3px;
    /*background-color: var(--brand-black);*/
    background-color: #25d366;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-hamburger .line2 {
    width: 100%;
    margin-left: auto;
}

.custom-hamburger:hover .line2 {
    width: 100%;
    background-color: var(--brand-green);
}

.custom-hamburger .line3 {
    width: 100%;
    margin-left: auto;
}

.custom-hamburger:hover .line3 {
    width: 100%;
    background-color: var(--brand-green);
}

/* ===== Premium Mobile Sidebar ===== */

.premium-sidebar {
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.98),
            rgba(0, 0, 0, 0.96)) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    color: #fff;
    width: 320px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 999999;
}

/* Header */
.sidebar-header {
    padding: 0px 24px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
    border-bottom: 1px solid rgb(255 255 255 / 47%);
}

.sidebar-logo {
    width: 95px;
    filter: drop-shadow(0 0 12px rgba(0, 255, 100, 0.2));
}

/* Close Button */
.custom-close {
    opacity: 0.8;
    transition: 0.3s ease;
}

.custom-close:hover {
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
}

/* Body */
.offcanvas-body {
    padding: 18px;
}

/* Nav Links */
.sidebar-links {
    gap: 0px;
}

.sidebar-links .nav-item {
    width: 100%;
}

.sidebar-links .nav-link {
    position: relative;

    color: #9a9a9a !important;
    font-size: 18px !important;
    font-weight: 600;

    padding: 16px 18px !important;
    border-radius: 14px;

    transition: all 0.35s ease;
    overflow: hidden;
}

/* Hover Background Glow */
.sidebar-links .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg, rgba(0, 255, 100, 0.15), transparent);

    opacity: 0;
    transition: 0.35s ease;
}

.sidebar-links .nav-link:hover::before {
    opacity: 1;
}

.sidebar-links .nav-link:hover {
    color: #ffffff !important;

    transform: translateX(8px);

    background: rgba(255, 255, 255, 0.04);

    box-shadow: inset 0 0 0 1px rgba(0, 255, 100, 0.15),
        0 0 20px rgba(0, 255, 100, 0.08);
}

/* Contact Section */
.sidebar-contact-info {
    margin-top: 30px;
    padding-top: 24px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-contact-info p {
    color: #7d7d7d;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.sidebar-contact-info a {
    transition: 0.3s ease;
}

.sidebar-contact-info a:hover {
    color: #00ff66 !important;
    transform: translateX(4px);
}

/* CTA Button */
.btn-premium {
    background: linear-gradient(135deg, #00e65c, #00b84d) !important;

    border: none !important;
    border-radius: 50px !important;

    color: #000 !important;
    font-size: 17px !important;
    font-weight: 700 !important;

    padding: 15px 20px !important;

    transition: all 0.35s ease;
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.02);

    box-shadow: 0 10px 30px rgba(0, 255, 100, 0.35),
        0 0 20px rgba(0, 255, 100, 0.2);
}

/* Mobile Responsive */
@media (max-width: 550px) {
    .brand-logo {
        height: 120px !important;
    }
}

@media (max-width: 480px) {
    .premium-sidebar {
        width: 88vw !important;
    }

    .sidebar-links .nav-link {
        font-size: 17px !important;
        padding: 15px 16px !important;
    }
}

@media (max-width: 350px) {
    .brand-logo {
        height: 100px !important;
    }
}

/* Base swiper container setup */
.thele-slides .swiper {
    width: 100%;
    height: 100%;
}

.thele-slides .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thele-slides .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Pagination Dots ===== */

/* Base dots */
.thele-slides .swiper-pagination-bullet {
    position: relative;
    width: 14px !important;
    height: 14px !important;
    background: transparent !important;
    border: 2px solid #000 !important;
    border-radius: 50%;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

/* Remove numbers (in case Swiper is set to render text) */
.thele-slides .swiper-pagination-bullet::after {
    content: "";
}

/* Active dot – inner filled circle */
.thele-slides .swiper-pagination-bullet-active {
    border-color: #029a00 !important;
    background: transparent !important;
}

.thele-slides .swiper-pagination-bullet-active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #029a00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Arrow Styling */
.thele-slides .swiper-button-next,
.thele-slides .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
}

/* Icon Color */
.thele-slides .swiper-button-next::after,
.thele-slides .swiper-button-prev::after {
    font-size: 18px;
    color: #000;
}

/* Hover effect */
.thele-slides .swiper-button-next:hover,
.thele-slides .swiper-button-prev:hover {
    /* background: #0000006e; */
    background: #029a00;
}

.thele-slides .swiper-button-next:hover::after,
.thele-slides .swiper-button-prev:hover::after {
    color: #fff;
}

/* Mobile: Make Buttons Smaller */
@media (max-width: 480px) {

    .thele-slides .swiper-button-next,
    .thele-slides .swiper-button-prev {
        width: 35px;
        height: 35px;
        display: none;
    }

    .thele-slides .swiper-button-next::after,
    .thele-slides .swiper-button-prev::after {
        font-size: 14px;
    }
}

/* ================================================================
   ABOUT SECTION STYLING
   ================================================================ */
.about-section {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    color: var(--brand-black);
}


.section-label {
    display: inline-block;
    font-family: var(--font-ui);
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    /* font-size: clamp(2.5rem, 4vw, 3.8rem); */
    font-size: 2.5rem;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 680px;
    color: #333333;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(18, 18, 18, 0.08);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #5f6368;
    margin-bottom: 0;
}

.about-panel {
    background: linear-gradient(180deg,
            rgba(0, 204, 0, 0.08) 0%,
            rgba(255, 255, 255, 0.8) 100%);
    padding: 1.5rem;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.about-panel img {
    max-width: 100%;
    border-radius: 24px;
}

/* About Section - Improved Bullets & Image */
.about-section .section-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-section .section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.bullet-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.bullet-list li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-image-card {
    transition: all 0.3s ease;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
}



.about-img-wrapper {
    border-radius: 5px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-card:hover .about-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 2rem;
    }

    .bullet-list li {
        font-size: 0.85rem;
    }
}

/* ================================================================
   RESPONSIVE OVERRIDES (Media Queries)
   ================================================================ */

@media (min-width: 992px) {
    .cinematic-hero .carousel-inner .carousel-item .hero-img {
        height: 100% !important;
    }
}

/* --- Table & Large Phones (Max 991px) --- */
@media (max-width: 991px) {
    .hero-display-title {
        font-size: 3rem;
        /* Cap the size on tablets */
    }
}

/* --- Small Phones (Max 768px) --- */

@media (max-width: 768px) {
    .hero-content {
        padding: 2rem;
        text-align: center;
    }

    .hero-display-title {
        font-size: 2rem;
    }

    .hero-container .align-items-center {
        align-items: flex-end !important;
        padding-bottom: 3rem;
    }

    .hero-display-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        /* Stack buttons vertically */
        gap: 15px;
    }

    .btn-modern-solid,
    .btn-modern-outline {
        width: 100%;
        /* Full width buttons for easier tapping */
        text-align: center;
        margin-left: 0 !important;
        /* Remove the ms-3 margin from the outline button */
    }
}

/* @media (max-width: 450px) {
  .cinematic-hero {
    height: 35vh !important;
  }
} */

/* --- Extra Small Devices (Max 480px) --- */
@media (max-width: 480px) {
    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-display-title {
        font-size: 2.2rem;
    }
}

/* --- Fix for "Black Screen" on Mobile Safari/iOS --- */
/* iOS sometimes struggles with 100vh and the address bar */
@supports (-webkit-touch-callout: none) {
    .cinematic-hero {
        height: -webkit-fill-available;
    }
}

/* ================================================================
   PREMIUM PRODUCT GRID STYLING (LUXURY THEME)
   ================================================================ */

.premium-products-section {
    /*background-color: #efefef;*/
    background-color: #eff3f5;

    position: relative;
}

/* --- Section Typography --- */
.luxury-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    font-weight: 600;
    display: block;
}

.luxury-display-title {
    /*font-family: var(--font-ui);*/
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.5rem;
    /*color: #ffffff;*/
    color: #0d0d0d;
    letter-spacing: -0.5px;
}

.gold-gradient-text {
    /*background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);*/
    background: linear-gradient(135deg, #18a107 0%, #184a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.luxury-subtitle {
    font-size: 0.95rem;
    color: #222222;
    font-weight: 400;
}

/* --- Luxury Product Card --- */
.premium-product-card {
    /*background: rgba(255, 255, 255, 0.03);*/
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.premium-product-card:hover {
    transform: translateY(-8px);
    /*background: rgba(255, 255, 255, 0.05);*/
    background: #000000;
    border-color: rgba(212, 175, 55, 0.3);
    /* Subtle gold glow border */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* --- Image Container (Float & Contain) --- */
.premium-img-box {
    position: relative;
    height: 250px;
    /* margin: 1.5rem 1.5rem 0 1.5rem; Separates white background image from card edges */
    /*margin: .8rem .8rem 0 .8rem; */
    background: #ffffff;
    /* Clean studio light background for product cutout */

    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1rem; */
}

.card-hover-icons i {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-hover-icons {
    position: absolute;
    top: 25%;
    /* left: 0; */
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 2;
}

.product-main-img {
    max-width: 100%;
    max-height: 100%;

    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps raw images crisp without awkward stretching */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-product-card:hover .product-main-img {
    transform: scale(1.06);
}

.premium-product-card:hover .card-hover-icons {
    opacity: 1;
    visibility: visible;
}

.hover-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #000000;
    backdrop-filter: blur(4px);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hover-icon:hover {
    background: #000000;
    color: #f3f3f3;
    /* transform: scale(1.1); */
}

.product-title-link {
    text-decoration: none;
}

.product-title-link .premium-product-name {
    transition: color 0.2s ease;
}

.product-title-link:hover .premium-product-name {
    color: #04cd02;
}



/* --- Premium Price Block Styling --- */
.premium-product-price {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    gap: 8px;
    margin-bottom: .5rem;
    font-family: var(--font-ui, sans-serif);
}

.premium-product-price .current-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: -0.2px;
}

.premium-product-price .old-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: line-through;
    font-weight: 400;
}

/* --- Sleek Badges --- */
.luxury-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #00cc00;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 204, 0, 0.2);
}

/* --- Card Details & Body --- */
.premium-product-info {
    padding: 1rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-product-name {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
    /* Keeps titles uniform */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading) !important;
}

.premium-product-cat {
    font-size: 0.8rem;
    color: #8e8e93;
    margin-bottom: .5rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Elegant Outline CTA Button --- */
.btn-luxury-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 5px;
    /*background: transparent;*/
    background: #1aa600d6;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-luxury-product i {
    transition: transform 0.3s ease;
}

.premium-product-card .btn-luxury-product:hover {
    background: #1aa600d6;
    color: #fff;
    /* border-color: #ffffff; */
    font-weight: 600;
}

.premium-product-card .btn-luxury-product:hover i {
    transform: translateX(3px);
}

/* Special Treatment for Star/Featured Products */
.featured-luxury-card {
    border-color: rgba(0, 204, 0, 0.2) !important;
}

.featured-luxury-card:hover {
    border-color: rgba(0, 204, 0, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 204, 0, 0.15);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .premium-img-box {
        height: 200px;
    }

    .luxury-display-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {

    /* .premium-img-box {
        height: 180px;
        margin: 1rem 1rem 0 1rem;
    } */
    .premium-img-box {
        height: 100%;
        /*margin: 2rem 2rem 0 2rem;*/
    }

    .premium-product-name {
        font-size: 0.95rem;
    }
}

/* =============================== TRUST MARQUEE STYLING ========================================= */

.trust-marquee-section {
    background-color: #0a0a0a;
    /* Darker than the body for contrast */
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 30px 0;
    overflow: hidden;
    /* Important: prevents the horizontal scrollbar */
    display: flex;
    align-items: center;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    /* Ensures the wrapper is as wide as all items combined */
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Space between trust items */
    padding-right: 80px;
    /* Must match gap */
    animation: scroll-marquee 40s linear infinite;
    /* Speed of the scroll */
}

/* Pause marquee on hover so users can read */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    /* Prevents text from wrapping */
    opacity: 0.5;
    /* Default "muted" state */
    transition: all 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Trust Icons Styling */
.trust-icon {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-green);
    /* Your brand green accent */
    border: 2px solid var(--brand-green);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Trust Text Styling */
.trust-text {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

/* --- THE ANIMATION --- */
@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .trust-marquee-section {
        padding: 20px 0;
    }

    .marquee-track {
        gap: 40px;
        padding-right: 40px;
        animation-duration: 25s;
        /* Faster on mobile since distance is shorter */
    }

    .trust-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .trust-icon {
        font-size: 1rem;
    }
}

/* ============================== BENEFITS & TECH SECTION ========================================= */

.benefit-image-wrapper {
    position: relative;
    padding: 20px;
}

/* Floating Tech Card */
.tech-spec-card {
    position: absolute;
    bottom: 10%;
    right: 0;
    background: var(--brand-black);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--brand-green);
}

.tech-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand-green);
}

.tech-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Icon Box Styling */
.benefit-icon-box {
    min-width: 60px;
    height: 60px;
    background: #f0fff0;
    color: var(--brand-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.benefit-text h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--brand-black);
}

.benefit-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .tech-spec-card {
        padding: 15px 20px;
        bottom: -20px;
        right: 20px;
    }
}

/* ============================ TESTIMONIAL SECTION STYLING ====================================== */

.testimonial-section {
    background-color: #121212;
    /* Deep charcoal to match cinematic theme */
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.testimonial-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(0, 204, 0, 0.05) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* The Card Styling */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-border {
    border-color: rgba(0, 204, 0, 0.2);
}

/* Star Rating */
.star-rating i {
    color: var(--brand-yellow);
    font-size: 0.9rem;
    margin-right: 2px;
}

/* Content Typography */
.testimonial-text {
    font-family: var(--font-ui);
    color: #cccccc;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
}

.user-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.user-location {
    color: var(--brand-green);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* User Image */
.user-img-wrapper {
    width: 55px;
    height: 55px;
    overflow: hidden;
    /* border: 2px solid var(--brand-green); */
    border-radius: 50%;
}

.user-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 450px;
    /* border-radius: 8px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }

    .hero-display-title {
        font-size: 2.5rem;
    }
}

/* ================================================================
   MAIN FOOTER STYLING
   ================================================================ */

.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 80px;
    font-family: var(--font-ui);
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    /* The filter: brightness(0) invert(1); was removed from here so your REAL image shows */
}

.footer-bio {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Link Styling */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--brand-green);
    padding-left: 5px;
    /* Subtle slide effect on hover */
}

/* Contact Info Icons */
.footer-contact i {
    font-size: 1.1rem;
}

.footer-contact span {
    color: #999999;
    font-size: 0.95rem;
}

/* Social Media Circles */
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-links a:hover {
    background: var(--brand-green);
    color: #000000;
    transform: translateY(-5px);
}

/* Bottom Bar */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #666666;
    font-size: 0.85rem;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 60px;
    }

    .footer-heading {
        margin-bottom: 15px;
    }

    .footer-logo {
        height: 80px;
        /* Scales down slightly for mobile */
    }
}

/* ================================================================
   CONTACT & MAP SECTION STYLING
   ================================================================ */

/* --- Section Basics --- */
.contact-section {
    position: relative;
    overflow: hidden;
}

/* --- Typography & Headings --- */
.hero-label {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
}

.hero-display-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-green) 0%, #a3ff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Left Side: 2x2 Contact Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.grid-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    min-width: 45px;
    height: 45px;
    background: #f0fff0;
    color: var(--brand-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.grid-item:hover .info-icon {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(-10deg);
}

.info-text h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--brand-black);
}

.info-text p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* --- The "Equalizer" Support Box --- */
.support-hours-box {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.support-hours-box:hover {
    border-color: var(--brand-green);
    background-color: #fafffa !important;
}

/* --- Right Side: Contact Form Card --- */
.contact-form-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f8f8f8;
}

.form-label {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brand-black);
    margin-bottom: 8px;
}

.custom-input {
    border: 2px solid #f3f3f3;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(0, 204, 0, 0.1);
    outline: none;
}

/* --- Full Width Map --- */
.full-width-map {
    line-height: 0;
    /* Removes tiny white gap below iframe */
    border-top: 1px solid #eee;
}

.map-container {
    filter: grayscale(0.4) contrast(1.1);
    /* Cinematic gray map effect */
    transition: filter 0.6s ease;
}

.map-container:hover {
    filter: grayscale(0);
    /* Map returns to color on hover */
}

/* --- Responsiveness --- */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Stack grid on tablets/mobile */
        gap: 20px;
    }

    .hero-display-title {
        font-size: 2.5rem;
    }

    .support-hours-box {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 20px !important;
    }

    .map-container iframe {
        height: 350px;
        /* Shorter map for mobile */
    }
}

/* ================================================================
   UNIVERSAL INTERNAL HERO STYLING (UPDATED)
   ================================================================ */

.internal-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    /* FIX: Added generous top padding to clear the 75px fixed navbar */
    padding-top: 160px;
    padding-bottom: 60px;
    /* Added bottom padding for perfect vertical balance */
    margin-top: 0;
    /* Removed negative margin to prevent overlap issues */

    overflow: hidden;
}

/* The Dark Gradient Overlay (Stays the same) */
.internal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Typography (UPDATED) */
.internal-title {
    font-family: var(--font-heading);
    font-weight: 900;

    /* FIX: Reduced the clamp size. 
       Now it scales from 2rem on mobile to a maximum of 3rem on desktop */
    font-size: clamp(2rem, 4vw, 3rem);

    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.internal-subtitle {
    font-family: var(--font-ui);
    color: #e0e0e0;
    font-size: 1.05rem;
    /* Slightly reduced to match the smaller title */
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* --- CUSTOM BREADCRUMBS (Forced Overrides) --- */

.custom-breadcrumb {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px 25px !important;
    border-radius: 50px !important;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-breadcrumb .breadcrumb-item {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

/* Force the links to be white instead of Bootstrap Blue */
.custom-breadcrumb .breadcrumb-item a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--brand-green) !important;
}

/* Force the custom chevron separator instead of the default slash */
.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "›" !important;
    font-size: 1.4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5) !important;
    padding: 0 12px;
}

/* Style the active current page */
.custom-breadcrumb .breadcrumb-item.active {
    color: var(--brand-green) !important;
}

/* ================================================================
   PREMIUM MODAL STYLING
   ================================================================ */

/* Blurs the background when modal is open */
.modal-backdrop.show {
    opacity: 0.6;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: #000000;
}

/* Modal Container Style */
.premium-modal-content {
    border: none;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Custom Close Button */
.custom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #f0f0f0;
    border-radius: 50%;
    padding: 12px;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-modal-close:hover {
    opacity: 1;
    background-color: #e0e0e0;
    transform: rotate(90deg);
}

/* Form Input Styling */
.premium-input {
    border: 1px solid #eeeeee;
    background-color: #fcfcfc;
    border-radius: 15px;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-family: var(--font-ui);
    color: var(--brand-black);
    transition: all 0.3s ease;
    box-shadow: none !important;
    /* Removes Bootstrap's default blue glow */
}

.premium-input:focus {
    background-color: #ffffff;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(0, 204, 0, 0.1) !important;
}

.premium-input::placeholder {
    color: #bbbbbb;
}

/* For Select Dropdown Arrow Alignment */
select.premium-input {
    cursor: pointer;
}

.offcanvas-body .btn-preminum {
    background: #00cc00 !important;
}

/*.offcanvas-body .btn-premium::before{*/
/*    background: #fff !important;*/
/*}*/

/* ========== LUXURY NAVBAR ENHANCEMENTS ========== */

/* --- Navbar Container --- */
.premium-navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* --- Logo Hover --- */
.brand-logo {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-brand:hover .brand-logo {
    transform: translateY(-50%) scale(1.02);
    filter: drop-shadow(0 8px 15px rgba(4, 205, 2, 0.2));
}

/* --- Desktop Navigation Links --- */
.nav-links-premium .nav-link {
    position: relative;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-links-premium .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #04cd02;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links-premium .nav-link:hover::after {
    width: 60%;
}

.nav-links-premium .nav-link:hover {
    background: transparent;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(4, 205, 2, 0.5);
    box-shadow: none;
}

/* --- Icon Links (Wishlist/Cart/User) --- */
.nav-icon-link i {
    color: #ffffff;
    /* font-size: 1.2rem; */
}

.nav-icon-link,
.d-flex .dropdown-toggle,
.d-flex .text-dark.fs-4 {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.nav-icon-link:hover,
.d-flex .dropdown-toggle:hover,
.d-flex .text-dark.fs-4:hover {
    transform: translateY(-3px) scale(1.05);
    color: #04cd02 !important;
    text-shadow: 0 0 8px rgba(4, 205, 2, 0.4);
}

/* --- User Dropdown (Luxury Glassmorphism) --- */

.UI-auth-dropdown .dropdown-menu {
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);

    border-radius: 10px;
    min-width: 200px;
    border: 0.5px solid #c2c2c2ec !important;
    padding: 0;
    overflow: hidden;
}

.UI-auth-dropdown .dropdown-item i {
    color: #ffffff;
}

.UI-auth-dropdown hr {
    border-color: #ffffffec !important;
}

.UI-auth-dropdown .dropdown-item:hover i {
    color: #000;
}

.UI-auth-dropdown .dropdown-item {
    /* color: #e0e0e0; */

    background: #000000;
    color: #ffffff;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.2s;
}

.UI-auth-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.877);
    color: #070707;
    padding-left: 26px;
}

.UI-auth-dropdown .dropdown-header {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 20px;
}

.UI-auth-dropdown .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove default caret and add custom */
.no-caret::after {
    display: none !important;
}

.UI-auth-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.UI-auth-dropdown .dropdown-toggle::before {
    content: none;
}

/* --- Badge Styling (Cart/Wishlist) --- */
.header-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dynamic-wishlist-count,
.dynamic-cart-count {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- Mobile Sidebar Improvements --- */
.premium-sidebar {
    background: rgba(0, 0, 0, 0.98) !important;
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-links .nav-link {
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 40px;
    margin: 0px 0;
    font-size: 16px !important;
    text-transform: uppercase;
}

.sidebar-links .nav-link:hover {
    background: rgba(4, 205, 2, 0.1);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(4, 205, 2, 0.1);
}

.sidebar-links .nav-link::before {
    background: linear-gradient(90deg, rgba(4, 205, 2, 0.2), transparent);
}

.btn-premium-nav {
    background: linear-gradient(135deg, #04cd02, #008000);
    border: none;
    color: #000;
    padding: 0.5rem;
    transition: all 0.3s;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 205, 2, 0.3);
}

/* --- Mobile Bottom Navigation --- */
.fixed-bottom {
    /*background: rgba(255, 255, 255, 0.96) !important;*/
    background: rgb(0 0 0 / 96%) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.fixed-bottom .bi {
    transition: all 0.2s ease;
}

.fixed-bottom a:hover .bi {
    transform: scale(1.1);
    color: #04cd02 !important;
}

.fixed-bottom .badge {
    font-size: 0.5rem;
    padding: 0.2rem 0.4rem;
    font-weight: 600;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .premium-navbar .container-fluid {
        padding: 0 1rem !important;
    }

    .brand-logo {
        height: 110px;
    }

    .dynamic-wishlist-count,
    .dynamic-cart-count {
        color: #000 !important;
        font-size: 0.7rem;
    }

    .navbar-toggler.custom-hamburger .line {
        background-color: #fff;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 90px;
    }

    .fixed-bottom .fs-4 {
        font-size: 1.3rem;
    }

    .fixed-bottom span {
        font-size: 0.55rem !important;
    }
}

@media (max-width: 380px) {
    .brand-logo {
        height: 75px;
    }

    .navbar-brand {
        width: auto;
        margin-right: 0px;
    }

    .d-flex.align-items-center.d-lg-none.gap-3 {
        gap: 1rem !important;
    }

    .card-hover-icons {
        top: 35%;
    }
}



.premium-navbar>.container-fluid {
    flex-wrap: nowrap !important;
}

@media(max-width:991px) {
    .about-section .mobile-res {
        flex-direction: column-reverse !important;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(206 206 206 / 75%) !important;
}

.product-btn-mob {
    flex-direction: row;
    gap: 10px;
}



/* --- MODERN LOGIN BUTTON STYLE --- */
.modern-login-btn {
    position: relative;
    background: #00a901;
    color: #ffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 20px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    /* Smooth rounded corners instead of sharp box */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
}

.modern-login-btn {
    display: none;
}

.certification-section .row .col-auto {
    width: 280px;
}


@media(max-width:576px) {

    .story-mission .row {
        flex-direction: column-reverse;
    }

    .certification-section .row .col-auto {
        width: 300px !important;
    }

    .modern-login-btn {
        display: block;
    }

    .mob-div {
        width: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    /*.mob-div{*/
    /*    width: 130px;*/
    /*    display: flex;*/
    /*    justify-content: space-between;*/
    /*    align-items: center;*/
    /*}*/

    /* Hover Effect: Soft Green & Yellow Brand Gradient */
    .modern-login-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2ecc71, #f1c40f);
        /* TENS Brand Colors */
        opacity: 0;
        z-index: -1;
        transition: opacity 0.4s ease;
    }

    /* Hover Styles */
    .modern-login-btn:hover {
        color: #ffffff;
        transform: translateY(-2px);
        /* Slight lift effect */
        box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
        /* Glow effect */
    }

    .modern-login-btn:hover::before {
        opacity: 1;
    }

    /* Active / Click Effect */
    .modern-login-btn:active {
        transform: translateY(1px);
        box-shadow: 0 3px 10px rgba(46, 204, 113, 0.2);
    }

    .premium-product-card .premium-img-box {
        margin: .2rem .2rem 0 .2rem;
        height: 45% !important;
    }

    .premium-product-info {
        padding: .5rem;
    }

    .premium-product-price {
        gap: 4px;

    }

    .premium-product-price span {
        font-size: 16px !important;
    }

    .product-btn-mob {
        flex-direction: column-reverse;
    }

    .premium-product-price .price-sp {
        display: none !important;
    }

    .premium-product-price {
        justify-content: center;
    }

    .card-hover-icons {
        top: 30%;
    }

    .card-hover-icons .hover-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem !important;
    }

    .btn-luxury-product {
        font-size: 0.7rem;
        padding: 5px;
    }

    .mob-hide {
        display: none !important;
    }

    .brand-logo {
        height: 100px !important;
    }


    /*.product-btn-mob .cart-icon{*/
    /*    display:none;*/
    /*}*/


}




/* categories */


/* Container Section */
.categories-section {
    margin-top: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title1 {
    font-size: 1.7rem;
    color: #222;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive Grid Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card Style */
.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 3 / 3;
    display: block;
    text-decoration: none;
}

/* Shine overlay */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

/* Image Styling and Zoom Animation */
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Overlay Text Bar */
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.85);
    /* Slightly translucent dark bar */
    padding: 18px 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.category-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Engagement/Hover Effects --- */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card:hover::after {
    left: 150%;
    transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.95);
    /* Deepens on hover for focus */
}

/* --- Responsive Breakpoints --- */

/* Tablets (Landscape & Portrait) */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title1 {
        font-size: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* body {
        padding: 40px 15px;
    } */

    .section-title1 {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .category-overlay {
        padding: 14px 10px;
    }

    .category-title {
        font-size: 1rem;
    }
}


/* stores */


/* --- Stores Section Container --- */
.stores-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #111;
}

/* --- Responsive Grid Layout --- */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns on desktop */
    gap: 24px;
}

/* --- Individual Cards --- */
.store-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover effect for depth */
.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* --- Image Wrapping & Animation --- */
.store-image {
    width: 100%;
    height: 240px;
    /* Keeps card layouts uniformly matching */
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevents image distortion */
    transition: transform 0.5s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.04);
    /* Clean, modern micro-zoom */
}

/* --- Text Alignment Area --- */
.store-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.store-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* --- Media Queries (Responsiveness) --- */

/* Tablets / Smaller Desktops */
@media (max-width: 992px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Drops down to 2 columns */
        gap: 20px;
    }

    .section-title1 {
        font-size: 2.2rem;
    }
}

/* Mobile Screens */
@media (max-width: 600px) {
    .stores-grid {
        grid-template-columns: 1fr;
        /* Stacks seamlessly into 1 column */
        gap: 24px;
    }

    .store-image {
        height: 200px;
        /* Slightly shorter frame for screens with tighter spaces */
    }

    .section-title1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}