/* =========================================================
   SMILE BABY
   COMPLETE RESPONSIVE CSS
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --yellow: #f6d34d;
    --yellow-dark: #e6b92e;

    --green: #9bd44b;
    --green-dark: #65a92d;

    --blue: #42bde8;
    --blue-dark: #159bc9;

    --orange: #ff9d42;
    --orange-dark: #f47c20;

    --pink: #ff6686;
    --pink-dark: #ed4268;

    --cream: #fffdf6;
    --white: #fff;

    --navy: #132653;
    --text: #22345e;
    --muted: #7283a8;

    --border: rgba(19,38,83,.10);

    --shadow:
        0 20px 60px rgba(38,70,110,.12);

    --radius: 28px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -5;

    background:
        radial-gradient(
            circle at 5% 5%,
            rgba(66,189,232,.13),
            transparent 28%
        ),

        radial-gradient(
            circle at 95% 15%,
            rgba(246,211,77,.14),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 90%,
            rgba(155,212,75,.12),
            transparent 28%
        ),

        radial-gradient(
            circle at 90% 90%,
            rgba(255,102,134,.10),
            transparent 30%
        );
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

[hidden] {
    display: none !important;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            180deg,
            var(--blue),
            var(--green),
            var(--yellow),
            var(--orange)
        );

    border-radius: 20px;
}


/* =========================================================
   LOADER
========================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 99999999;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #fffdf5 40%,
            #eefaff 100%
        );

    transition:
        opacity .8s ease,
        visibility .8s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================================
   LOADER GLOWS
========================================================= */

.loader-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    filter: blur(55px);

    opacity: .55;

    pointer-events: none;

    animation:
        loaderGlow 5s ease-in-out infinite alternate;
}

.glow-blue {
    top: -120px;
    left: -100px;
    background: var(--blue);
}

.glow-green {
    right: -110px;
    top: 15%;

    background: var(--green);

    animation-delay: .7s;
}

.glow-yellow {
    left: 5%;
    bottom: -130px;

    background: var(--yellow);

    animation-delay: 1.2s;
}

.glow-orange {
    right: 3%;
    bottom: -130px;

    background: var(--orange);

    animation-delay: 1.8s;
}

@keyframes loaderGlow {

    from {
        transform: scale(.85);
        opacity: .35;
    }

    to {
        transform: scale(1.18);
        opacity: .65;
    }
}


/* =========================================================
   PRODUCT RAIN
========================================================= */

#productRain {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;

    z-index: 3;

    opacity: 1;

    transition:
        opacity .6s ease;
}

#productRain.stop-rain {
    opacity: 0;
}

.rain-item {
    position: absolute;

    top: -170px;

    pointer-events: none;

    will-change: transform;

    animation-name: rainFall;
    animation-timing-function: linear;
    animation-fill-mode: forwards;

    z-index: 4;
}

.rain-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    user-select: none;
    pointer-events: none;

    filter:
        drop-shadow(
            0 12px 15px rgba(30,70,100,.10)
        );
}

@keyframes rainFall {

    0% {
        transform:
            translate3d(0,-180px,0)
            rotate(0deg);

        opacity: 0;
    }

    8% {
        opacity: .9;
    }

    90% {
        opacity: .9;
    }

    100% {

        transform:
            translate3d(
                var(--drift),
                115vh,
                0
            )
            rotate(var(--rotation));

        opacity: 0;
    }
}


/* =========================================================
   LOADER CARD
========================================================= */

.loader-card {
    position: relative;
    z-index: 10;

    width: min(510px,90vw);

    padding: 42px 35px;

    text-align: center;

    border:
        1px solid rgba(255,255,255,.95);

    border-radius: 38px;

    background:
        rgba(255,255,255,.76);

    backdrop-filter:
        blur(28px);

    box-shadow:
        0 35px 100px rgba(39,80,120,.18);

    animation:
        loaderCardIn .9s cubic-bezier(.2,.8,.2,1);
}

@keyframes loaderCardIn {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(.92);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

.loader-welcome {
    margin-bottom: 13px;
}

.loader-welcome span {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 50px;

    color: var(--pink-dark);

    background:
        rgba(255,102,134,.10);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* =========================================================
   LOADER LOGO
========================================================= */

.loader-logo {
    width: 190px;
    height: 105px;

    margin: 0 auto 15px;

    display: grid;
    place-items: center;

    border-radius: 28px;

    background:
        rgba(255,255,255,.8);

    box-shadow:
        0 18px 45px rgba(50,100,130,.10);
}

.loader-logo img {
    width: 175px;
    max-height: 95px;

    object-fit: contain;

    display: block;

    animation:
        logoPulse 2.5s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.045);
    }
}


/* =========================================================
   LOADER MESSAGE
========================================================= */

.loader-message h1 {

    color: var(--navy);

    font-size:
        clamp(30px,5vw,46px);

    line-height: 1.05;

    font-weight: 900;
}

.loader-message h1 span {

    display: block;

    margin-top: 5px;

    background:
        linear-gradient(
            90deg,
            var(--blue-dark),
            var(--green-dark),
            var(--orange),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.loader-message p {

    margin-top: 14px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    font-weight: 700;
}


/* =========================================================
   LOADER PROGRESS
========================================================= */

.loader-progress {

    width: 100%;
    height: 7px;

    margin: 27px 0 18px;

    overflow: hidden;

    border-radius: 20px;

    background:
        rgba(19,38,83,.08);
}

.loader-progress span {

    display: block;

    width: 100%;
    height: 100%;

    transform-origin: left;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--pink)
        );

    animation:
        loaderProgress 4.5s ease-in-out forwards;
}

@keyframes loaderProgress {

    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}


/* =========================================================
   SPINNER
========================================================= */

.loader-spinner {

    width: 34px;
    height: 34px;

    margin: 0 auto 12px;

    border-radius: 50%;

    border:
        4px solid rgba(66,189,232,.16);

    border-top-color: var(--blue);
    border-right-color: var(--orange);
    border-bottom-color: var(--green);

    animation:
        spin .8s linear infinite;
}

.loader-card small {

    color: var(--muted);

    font-weight: 800;

    font-size: 11px;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width:
        min(
            1200px,
            calc(100% - 35px)
        );

    min-height: 82px;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 20px;

    border:
        1px solid rgba(255,255,255,.85);

    border-radius: 27px;

    background:
        rgba(255,255,255,.78);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

    box-shadow:
        0 15px 45px rgba(30,60,90,.12);

    transition: .3s ease;
}

.navbar.scrolled {

    top: 10px;

    box-shadow:
        0 20px 55px rgba(30,60,90,.18);
}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;
    align-items: center;
}

.brand img {

    width: 145px;
    height: 58px;

    object-fit: contain;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;
}

.nav-links a {

    position: relative;

    font-size: 16px;

    font-weight: 900;

    color: var(--navy);

    transition: .25s ease;
}

.nav-links a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 0;
    height: 4px;

    transform: translateX(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--yellow)
        );

    transition: .25s ease;
}

.nav-links a:hover,
.nav-links a.active {

    color: var(--pink);
}

.nav-links a:hover::after,
.nav-links a.active::after {

    width: 24px;
}

.nav-links .nav-cta {

    padding: 15px 23px;

    border-radius: 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            #ff8b70
        );

    box-shadow:
        0 10px 25px rgba(255,102,134,.25);
}

.nav-links .nav-cta::after {
    display: none;
}


/* =========================================================
   MENU
========================================================= */

.menu-btn {

    display: none;

    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 15px;

    background:
        rgba(66,189,232,.12);
}

.menu-btn span {

    display: block;

    width: 22px;
    height: 3px;

    margin: 4px auto;

    border-radius: 10px;

    background: var(--navy);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    width:
        min(
            1200px,
            calc(100% - 40px)
        );

    margin: auto;

    padding: 110px 0;
}

.section-heading {

    max-width: 750px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-tag {

    display: inline-flex;

    padding: 8px 15px;

    margin-bottom: 15px;

    border-radius: 50px;

    color: var(--green-dark);

    background:
        rgba(155,212,75,.14);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.8px;
}

.section-heading h2 {

    color: var(--navy);

    font-size:
        clamp(34px,5vw,58px);

    line-height: 1.05;

    font-weight: 900;
}

.section-heading h2 span {

    background:
        linear-gradient(
            90deg,
            var(--blue-dark),
            var(--green-dark),
            var(--orange),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.section-heading p {

    margin-top: 18px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding-top: 180px;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 60px;
}

.hero-content {

    position: relative;

    z-index: 2;
}

.eyebrow {

    display: inline-block;

    padding: 9px 16px;

    border-radius: 50px;

    color: var(--pink-dark);

    background:
        rgba(255,102,134,.1);

    font-weight: 900;

    font-size: 12px;

    letter-spacing: 1.7px;
}

.hero h1 {

    margin-top: 22px;

    color: var(--navy);

    font-size:
        clamp(48px,7vw,86px);

    line-height: .98;

    font-weight: 900;
}

.hero h1 span {

    display: inline-block;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--green),
            var(--yellow),
            var(--orange),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-content > p {

    max-width: 650px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 19px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 30px;
}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 14px 23px;

    border: 0;

    border-radius: 18px;

    font-size: 15px;

    font-weight: 900;

    transition: .25s ease;
}

.btn:hover {

    transform:
        translateY(-3px);
}

.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    box-shadow:
        0 15px 30px rgba(66,189,232,.25);
}

.btn-light {

    color: var(--navy);

    background: white;

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);
}


/* =========================================================
   HERO DECORATION
========================================================= */

.hero-decoration {

    position: relative;

    min-height: 500px;

    display: grid;

    place-items: center;
}

.hero-logo-card {

    position: relative;

    z-index: 3;

    width:
        min(
            400px,
            80vw
        );

    aspect-ratio: 1;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255,255,255,.95);

    border-radius:
        45% 55% 55% 45%;

    background:
        rgba(255,255,255,.65);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 35px 90px rgba(50,100,130,.15);

    animation:
        floating 5s ease-in-out infinite;
}

.hero-color-layer {

    position: absolute;

    inset: 20px;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(66,189,232,.16),
            rgba(155,212,75,.14),
            rgba(246,211,77,.15),
            rgba(255,157,66,.10),
            rgba(255,102,134,.1)
        );
}

.hero-logo-card img {

    position: relative;

    z-index: 2;

    width: 78%;
    max-height: 78%;

    object-fit: contain;
}

.hero-orbit {

    position: absolute;

    border-radius: 50%;

    border: 2px dashed;

    opacity: .6;

    animation:
        orbit 15s linear infinite;
}

.orbit-one {

    width: 460px;
    height: 460px;

    border-color: var(--blue);
}

.orbit-two {

    width: 360px;
    height: 360px;

    border-color: var(--yellow);

    animation-duration: 12s;

    animation-direction: reverse;
}

.orbit-three {

    width: 550px;
    height: 550px;

    border-color: var(--pink);

    animation-duration: 20s;
}

.floating-dot {

    position: absolute;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    z-index: 5;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

    animation:
        dotFloat 3s ease-in-out infinite;
}

.dot-one {

    top: 15%;
    right: 15%;

    background: var(--orange);
}

.dot-two {

    left: 8%;
    bottom: 18%;

    background: var(--green);

    animation-delay: .7s;
}

.dot-three {

    top: 30%;
    left: 10%;

    background: var(--yellow);

    animation-delay: 1.2s;
}

@keyframes floating {

    0%,100% {

        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {

        transform:
            translateY(-18px)
            rotate(2deg);
    }
}

@keyframes orbit {

    to {
        transform: rotate(360deg);
    }
}

@keyframes dotFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}

.about-card {

    padding: 35px;

    border:
        1px solid rgba(255,255,255,.9);

    border-radius: var(--radius);

    background:
        rgba(255,255,255,.78);

    backdrop-filter:
        blur(18px);

    box-shadow: var(--shadow);

    transition: .3s ease;
}

.about-card:hover {

    transform:
        translateY(-8px);
}

.about-icon {

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 18px;

    color: white;

    font-size: 22px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );
}

.icon-green {

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--yellow)
        );
}

.icon-yellow {

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            var(--orange)
        );
}

.about-card h3 {

    margin-bottom: 10px;

    color: var(--navy);

    font-size: 21px;
}

.about-card p {

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    max-width: 1350px;
}

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 25px;
}

.product-card {

    position: relative;

    overflow: hidden;

    min-height: 485px;

    display: flex;

    flex-direction: column;

    border:
        1px solid rgba(255,255,255,.9);

    border-radius: 32px;

    background:
        rgba(255,255,255,.85);

    box-shadow:
        0 18px 50px rgba(35,70,110,.10);

    transition:
        opacity .3s ease,
        transform .3s ease,
        filter .3s ease,
        box-shadow .35s ease;
}

.product-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 30px 65px rgba(35,70,110,.17);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {

    width: 100%;

    height: 290px;

    padding: 22px;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(66,189,232,.08),
            rgba(246,211,77,.15),
            rgba(155,212,75,.08),
            rgba(255,157,66,.07)
        );
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .4s ease;
}

.product-card:hover
.product-image img {

    transform:
        scale(1.06)
        rotate(1deg);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 25px;
}

.product-badge {

    align-self: flex-start;

    padding: 7px 12px;

    border-radius: 50px;

    color: white;

    background:
        linear-gradient(
            90deg,
            var(--yellow-dark),
            var(--orange),
            var(--pink)
        );

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.product-info h3 {

    margin-top: 15px;

    color: var(--navy);

    font-size: 21px;
}

.product-info p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   LIKE BUTTON
========================================================= */

.like-btn {

    margin-top: auto;

    padding: 14px 15px;

    border:
        1px solid rgba(255,102,134,.18);

    border-radius: 17px;

    background: white;

    color: var(--navy);

    font-size: 14px;

    font-weight: 900;

    transition: .25s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}

.like-btn:hover {

    border-color: var(--pink);

    color: var(--pink);

    transform:
        translateY(-2px);
}

.like-btn.liked {

    color: white;

    border-color: var(--pink);

    background:
        linear-gradient(
            135deg,
            var(--pink),
            #ff8b70
        );
}

.like-btn .heart {
    font-size: 19px;
}

.likes-count {

    font-size: 12px;

    opacity: .85;
}


/* =========================================================
   MANAGEMENT
========================================================= */

.management-section {
    max-width: 1250px;
}

.management-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 22px;
}

.management-card {

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.9);

    border-radius: 30px;

    background:
        rgba(255,255,255,.82);

    box-shadow: var(--shadow);

    transition: .3s ease;
}

.management-card:hover {

    transform:
        translateY(-8px);
}


/* =========================================================
   MANAGEMENT PHOTO
========================================================= */

.manager-photo {

    position: relative;

    width: 100%;

    height: 225px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eef8f4,
            #fff8dc
        );
}

.manager-photo img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.08);

    transition:
        transform .45s ease;
}

.management-card:hover
.manager-photo img {

    transform:
        scale(1.12);
}


/* =========================================================
   MANAGEMENT PHOTO POSITIONS
========================================================= */

.chairman-photo img {
    object-position: center 25%;
}

.vice-photo img {
    object-position: center 25%;
}

.financial-photo img {
    object-position: center 20%;
}


/* =========================================================
   MANAGEMENT COLORS
========================================================= */

.green-photo {

    background:
        linear-gradient(
            145deg,
            rgba(155,212,75,.25),
            rgba(66,189,232,.12)
        );
}

.yellow-photo {

    background:
        linear-gradient(
            145deg,
            rgba(246,211,77,.25),
            rgba(255,157,66,.12)
        );
}

.pink-photo {

    background:
        linear-gradient(
            145deg,
            rgba(255,102,134,.20),
            rgba(155,212,75,.12)
        );
}


/* =========================================================
   SALES PHOTO
========================================================= */

.sales-photo {

    position: relative;

    width: 100%;

    height: 225px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eef8f4,
            #fff8dc
        );
}

.sales-photo img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.08);

    transition:
        transform .45s ease;
}

.management-card:hover
.sales-photo img {

    transform:
        scale(1.12);
}


/* =========================================================
   PHOTO PLACEHOLDER
========================================================= */

.photo-placeholder {

    width: 145px;
    height: 190px;

    display: grid;

    place-items: center;

    border-radius:
        75px 75px 35px 35px;

    color: white;

    font-size: 55px;

    background:
        linear-gradient(
            145deg,
            var(--blue),
            var(--green)
        );

    box-shadow:
        0 20px 45px rgba(66,189,232,.25);
}


/* =========================================================
   MANAGER INFO
========================================================= */

.manager-info {

    padding: 24px;

    text-align: center;
}

.manager-role {

    display: inline-block;

    padding: 6px 11px;

    border-radius: 50px;

    color: var(--pink-dark);

    background:
        rgba(255,102,134,.1);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.manager-info h3 {

    margin-top: 14px;

    color: var(--navy);

    font-size: 19px;

    line-height: 1.5;
}

.manager-info p {

    margin-top: 6px;

    color: var(--muted);

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   COMMENTS
========================================================= */

.comments-section {
    max-width: 1000px;
}

.comment-auth,
.comment-form-container,
.comment-user-box {

    border:
        1px solid rgba(255,255,255,.9);

    background:
        rgba(255,255,255,.82);

    backdrop-filter:
        blur(18px);

    box-shadow: var(--shadow);

    border-radius: 28px;
}

.comment-auth {
    padding: 30px;
}

.auth-title {

    display: flex;

    align-items: center;

    gap: 18px;
}

.auth-icon {

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );

    font-size: 21px;
}

.auth-title h3 {

    color: var(--navy);

    font-size: 20px;
}

.auth-title p {

    margin-top: 3px;

    color: var(--muted);

    font-size: 14px;
}

.google-btn {

    width: 100%;

    height: 55px;

    margin-top: 25px;

    border: 1px solid #ddd;

    border-radius: 15px;

    background: white;

    color: var(--navy);

    font-size: 15px;

    font-weight: 900;

    transition: .25s ease;
}

.google-btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.google-btn i {
    margin-right: 8px;
}


/* =========================================================
   USER BOX
========================================================= */

.comment-user-box {

    margin-top: 20px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.current-avatar {

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: block;

    border-radius: 16px;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--pink)
        );
}

.current-user-info {

    min-width: 0;

    flex: 1;
}

.comment-user-box strong {

    display: block;

    color: var(--navy);
}

.comment-user-box span {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 12px;
}

.logout-btn {

    border: 0;

    border-radius: 12px;

    padding: 10px 13px;

    background: #f5f7fa;

    color: var(--muted);

    font-size: 12px;

    font-weight: 900;
}

.logout-btn:hover {
    color: var(--pink);
}


/* =========================================================
   COMMENT FORM
========================================================= */

.comment-form-container {

    margin-top: 20px;

    padding: 25px;
}

.comment-form-container textarea {

    display: block;

    width: 100%;

    min-height: 130px;

    padding: 16px;

    resize: vertical;

    border:
        1px solid rgba(19,38,83,.1);

    outline: none;

    border-radius: 15px;

    color: var(--navy);

    background: white;
}

.comment-form-container textarea:focus {

    border-color: var(--blue);

    box-shadow:
        0 0 0 4px rgba(66,189,232,.1);
}

.comment-form-footer {

    margin-top: 15px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}

.comment-form-footer span {

    color: var(--muted);

    font-size: 13px;

    font-weight: 700;
}

.comment-form-footer span i {
    color: var(--pink);
}


/* =========================================================
   COMMENTS TOP
========================================================= */

.comments-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 50px 0 20px;
}

.comments-top h3 {

    color: var(--navy);

    font-size: 25px;
}

.comments-top > span {

    color: var(--muted);

    font-size: 14px;
}

.comments-top i {
    color: var(--pink);
}

.comments-loading {

    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: var(--muted);

    font-weight: 800;
}

.mini-spinner {

    width: 24px;
    height: 24px;

    border-radius: 50%;

    border:
        3px solid rgba(66,189,232,.2);

    border-top-color: var(--blue);

    animation:
        spin .8s linear infinite;
}


/* =========================================================
   COMMENT CARD
========================================================= */

.comments-list {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.comment-card {

    position: relative;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.95);

    border-radius: 25px;

    background:
        rgba(255,255,255,.9);

    box-shadow:
        0 12px 35px rgba(35,70,110,.08);
}

.comment-header {

    display: flex;

    align-items: center;

    gap: 13px;
}

.comment-avatar {

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    border-radius: 15px;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );
}

.comment-user h4 {

    color: var(--navy);

    font-size: 16px;
}

.comment-user span {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}

.comment-body {

    margin:
        18px 0 5px 61px;
}

.comment-body p {

    color: var(--text);

    line-height: 1.8;

    white-space: pre-wrap;

    overflow-wrap: anywhere;
}


/* =========================================================
   ADMIN
========================================================= */

.admin-badge {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-left: 7px;

    padding: 4px 8px;

    border-radius: 50px;

    color: white;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--yellow-dark)
        );

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .7px;

    vertical-align: middle;
}


/* =========================================================
   COMMENT ACTIONS
========================================================= */

.comment-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin:
        12px 0 0 61px;
}

.reply-btn,
.edit-comment,
.delete-comment {

    border: 0;

    background: transparent;

    color: var(--muted);

    font-size: 12px;

    font-weight: 900;
}

.reply-btn:hover {
    color: var(--blue-dark);
}

.edit-comment:hover {
    color: var(--green-dark);
}

.delete-comment {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 10px;
}

.delete-comment:hover {

    color: var(--pink);

    background:
        rgba(255,102,134,.08);
}


/* =========================================================
   EDIT
========================================================= */

.edit-form {

    margin:
        15px 0 0 61px;

    padding: 15px;

    border-radius: 17px;

    background: #fffdf5;
}

.edit-form textarea {

    width: 100%;

    min-height: 90px;

    resize: vertical;

    padding: 12px;

    border:
        1px solid var(--border);

    outline: none;

    border-radius: 12px;

    background: white;
}

.edit-actions {

    display: flex;

    justify-content: flex-end;

    gap: 8px;

    margin-top: 9px;
}

.edit-submit,
.edit-cancel {

    padding: 9px 14px;

    border: 0;

    border-radius: 11px;

    font-size: 12px;

    font-weight: 900;
}

.edit-submit {

    color: white;

    background: var(--green-dark);
}

.edit-cancel {

    color: var(--navy);

    background: #eef3f7;
}


/* =========================================================
   REPLY
========================================================= */

.reply-form {

    display: none;

    margin:
        15px 0 0 61px;

    padding: 15px;

    border-radius: 17px;

    background: #f8fcff;
}

.reply-form.open {
    display: block;
}

.reply-form textarea {

    width: 100%;

    min-height: 80px;

    resize: vertical;

    padding: 12px;

    border:
        1px solid var(--border);

    outline: none;

    border-radius: 12px;

    background: white;
}

.reply-form-actions {

    display: flex;

    justify-content: flex-end;

    gap: 8px;

    margin-top: 9px;
}

.reply-submit,
.reply-cancel {

    padding: 9px 14px;

    border: 0;

    border-radius: 11px;

    font-size: 12px;

    font-weight: 900;
}

.reply-submit {

    color: white;

    background: var(--blue-dark);
}

.reply-cancel {

    color: var(--navy);

    background: #eef3f7;
}


/* =========================================================
   REPLIES
========================================================= */

.replies-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin:
        15px 0 0 61px;
}

.reply-card {

    position: relative;

    padding: 14px 16px;

    border-left:
        3px solid var(--blue);

    border-radius:
        0 15px 15px 15px;

    background:
        linear-gradient(
            90deg,
            rgba(66,189,232,.07),
            rgba(155,212,75,.04)
        );
}

.reply-header {

    display: flex;

    align-items: center;

    gap: 9px;
}

.reply-avatar {

    width: 34px;
    height: 34px;

    border-radius: 10px;

    object-fit: cover;

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--blue)
        );
}

.reply-name {

    color: var(--navy);

    font-size: 13px;

    font-weight: 900;
}

.reply-date {

    margin-left: auto;

    color: var(--muted);

    font-size: 10px;
}

.reply-text {

    margin:
        9px 0 0 43px;

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;

    white-space: pre-wrap;

    overflow-wrap: anywhere;
}

.delete-reply {

    position: absolute;

    top: 9px;
    right: 10px;

    width: 27px;
    height: 27px;

    border: 0;

    border-radius: 8px;

    background: transparent;

    color: var(--muted);
}

.delete-reply:hover {

    color: var(--pink);

    background:
        rgba(255,102,134,.08);
}


/* =========================================================
   EMPTY COMMENTS
========================================================= */

.comments-empty {

    padding: 50px 20px;

    text-align: center;

    color: var(--muted);
}

.comments-empty i {

    color: var(--blue);

    font-size: 45px;
}

.comments-empty h3 {

    margin-top: 15px;

    color: var(--navy);
}

.comments-empty p {
    margin-top: 6px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    margin-top: 80px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #102551,
            #173f67
        );
}

.footer-main {

    width:
        min(
            1200px,
            calc(100% - 40px)
        );

    margin: auto;

    padding: 70px 0 50px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 45px;
}

.footer-brand img {

    width: 170px;
    height: 65px;

    object-fit: contain;

    background:
        rgba(255,255,255,.95);

    padding: 8px 14px;

    border-radius: 15px;
}

.footer-brand p {

    max-width: 280px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.7);

    line-height: 1.7;
}

.social-links {

    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.social-links a {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 13px;

    background:
        rgba(255,255,255,.08);

    transition: .25s ease;
}

.social-links a:hover {

    transform:
        translateY(-4px);

    background: var(--pink);
}

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-column h4 {

    margin-bottom: 8px;

    color: var(--yellow);

    font-size: 17px;
}

.footer-column a,
.footer-column p {

    color:
        rgba(255,255,255,.7);

    font-size: 13px;

    line-height: 1.7;

    transition: .2s ease;
}

.footer-column a:hover {

    color: white;

    transform:
        translateX(4px);
}

.footer-column i {

    width: 18px;

    color: var(--blue);
}

.footer-bottom {

    width:
        min(
            1200px,
            calc(100% - 40px)
        );

    margin: auto;

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,.1);

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}

.footer-bottom i {
    color: var(--pink);
}


/* =========================================================
   FOOTER SOCIAL
========================================================= */

.footer-brand .social-links {

    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-brand .social-links a {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    text-decoration: none;

    color: white;

    background:
        rgba(255,255,255,.13);

    border:
        1px solid rgba(255,255,255,.18);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.footer-brand .social-links a:hover {

    transform:
        translateY(-5px)
        rotate(-3deg);

    background:
        rgba(255,255,255,.24);

    box-shadow:
        0 15px 30px rgba(0,0,0,.14);
}

.footer-brand .social-links .email-social {
    position: relative;
}

.footer-brand .social-links .email-social::after {

    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    top: 5px;
    right: 5px;

    border-radius: 50%;

    background: #ffd85c;

    box-shadow:
        0 0 10px rgba(255,216,92,.8);

    animation:
        emailPulse 1.8s infinite;
}

@keyframes emailPulse {

    0%,100% {

        transform: scale(.7);

        opacity: .6;
    }

    50% {

        transform: scale(1.15);

        opacity: 1;
    }
}


/* =========================================================
   EMAIL CONTACT
========================================================= */

.email-contact {

    transition:
        transform .25s ease,
        color .25s ease;
}

.email-contact:hover {
    transform: translateX(5px);
}

.email-contact i {

    transition:
        transform .3s ease;
}

.email-contact:hover i {

    transform:
        rotate(-12deg)
        scale(1.15);
}


/* =========================================================
   TOAST
========================================================= */

.toast {

    position: fixed;

    left: 50%;
    bottom: 25px;

    z-index: 999999999;

    transform:
        translate(-50%,20px);

    min-width:
        min(400px,90vw);

    padding: 15px 20px;

    border-radius: 17px;

    color: white;

    background:
        rgba(19,38,83,.94);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

    opacity: 0;

    pointer-events: none;

    transition: .3s ease;

    text-align: center;

    font-weight: 800;
}

.toast.show {

    opacity: 1;

    transform:
        translate(-50%,0);
}

.toast.success {
    background: var(--green-dark);
}

.toast.error {
    background: var(--pink-dark);
}


/* =========================================================
   PRODUCT SEARCH
========================================================= */

.product-search-wrapper {

    width:
        min(760px,92%);

    margin:
        0 auto 45px;

    text-align: center;

    position: relative;

    z-index: 5;
}

.product-search {

    position: relative;

    width: 100%;
    height: 66px;

    display: flex;

    align-items: center;

    padding: 0 18px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.82),
            rgba(255,255,255,.48)
        );

    border:
        1px solid rgba(255,255,255,.9);

    box-shadow:
        0 18px 45px rgba(23,42,85,.12),
        inset 0 1px 0 rgba(255,255,255,.9);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.product-search::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 26px;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(66,189,232,.25),
            transparent 50%
        );

    transform:
        translateX(-120%);

    transition:
        transform .8s ease;

    pointer-events: none;
}

.product-search:hover::before {
    transform: translateX(120%);
}

.product-search:focus-within {

    transform:
        translateY(-4px);

    box-shadow:
        0 25px 60px rgba(23,42,85,.18),
        0 0 0 5px rgba(66,189,232,.10);

    border-color:
        rgba(66,189,232,.45);
}

.search-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #42bde8,
            #6ddfbd
        );

    color: white;

    box-shadow:
        0 8px 18px rgba(66,189,232,.25);

    transition:
        transform .35s ease;
}

.product-search:focus-within .search-icon {

    transform:
        rotate(-8deg)
        scale(1.08);
}

.product-search input {

    flex: 1;

    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    padding:
        0 18px;

    font-family:
        "Nunito",
        sans-serif;

    font-size: 17px;

    font-weight: 700;

    color: #172a55;
}

.product-search input::placeholder {

    color: #8b98ad;

    font-weight: 600;
}

.product-search input::-webkit-search-cancel-button {
    display: none;
}

.product-search button {

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(23,42,85,.07);

    color: #172a55;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        transform .25s ease,
        background .25s ease;
}

.product-search button:hover {

    transform:
        rotate(90deg)
        scale(1.08);

    background:
        rgba(66,189,232,.15);
}

.search-result-info {

    min-height: 25px;

    margin-top: 14px;

    font-size: 14px;

    font-weight: 800;

    color: #728099;

    animation:
        searchInfo .35s ease;
}

.search-result-info i {
    margin-right: 5px;
}

@keyframes searchInfo {

    from {

        opacity: 0;

        transform:
            translateY(-5px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   PRODUCT SEARCH ANIMATION
========================================================= */

.product-card.search-hidden {

    opacity: 0;

    transform:
        translateY(20px)
        scale(.96);

    filter: blur(4px);
}

.product-card.search-visible {

    animation:
        searchCardIn .45s ease both;
}

@keyframes searchCardIn {

    from {

        opacity: 0;

        transform:
            translateY(20px)
            scale(.96);
    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =========================================================
   NEW THINGS ICON
========================================================= */

.about-card:nth-child(3) .about-icon {

    position: relative;

    overflow: visible;

    animation:
        newThingsFloat 3s ease-in-out infinite;
}

.about-card:nth-child(3) .about-icon::before,
.about-card:nth-child(3) .about-icon::after {

    content: "✦";

    position: absolute;

    font-size: 14px;

    color: #f6c84c;

    animation:
        sparkleAround 2s ease-in-out infinite;
}

.about-card:nth-child(3) .about-icon::before {

    top: -12px;
    right: -8px;
}

.about-card:nth-child(3) .about-icon::after {

    bottom: -8px;
    left: -10px;

    animation-delay: .7s;
}

@keyframes newThingsFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes sparkleAround {

    0%,100% {

        opacity: .25;

        transform:
            scale(.7)
            rotate(0);
    }

    50% {

        opacity: 1;

        transform:
            scale(1.25)
            rotate(25deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */


/* =========================================================
   TABLET - 1100PX
========================================================= */

@media (max-width: 1100px) {

    .products-grid {

        grid-template-columns:
            repeat(3,minmax(0,1fr));

        gap: 20px;
    }

    .management-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 20px;
    }

    .hero {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 30px;
    }

    .hero-content > p {

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-decoration {
        min-height: 400px;
    }

    .product-card {
        min-height: 450px;
    }

    .product-image {
        height: 260px;
    }
}


/* =========================================================
   TABLET / MOBILE NAV - 800PX
========================================================= */

@media (max-width: 800px) {

    .navbar {

        width:
            calc(100% - 20px);

        min-height: 70px;

        top: 10px;

        padding:
            8px 12px;

        border-radius: 22px;
    }

    .brand img {

        width: 125px;

        height: 52px;
    }

    .menu-btn {
        display: block;

        width: 46px;
        height: 46px;
    }

    .nav-links {

        position: absolute;

        top:
            calc(100% + 10px);

        left: 0;

        width: 100%;

        padding: 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        border:
            1px solid rgba(255,255,255,.9);

        border-radius: 22px;

        background:
            rgba(255,255,255,.97);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        box-shadow:
            0 20px 50px rgba(30,60,90,.15);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {

        padding:
            13px 15px;

        border-radius: 13px;
    }

    .nav-links a:hover {

        background:
            rgba(66,189,232,.08);
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-links .nav-cta {

        text-align: center;

        margin-top: 5px;
    }


    /* ABOUT */

    .about-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .about-card {
        padding: 28px;
    }


    /* PRODUCTS */

    .products-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 18px;
    }

    .product-card {

        min-height: 0;

        border-radius: 24px;
    }

    .product-image {

        height: 235px;

        padding: 15px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        font-size: 18px;
    }

    .product-info p {
        font-size: 13px;
    }

    .like-btn {

        padding: 12px;

        border-radius: 14px;
    }


    /* MANAGEMENT */

    .management-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 18px;
    }

    .management-card {
        border-radius: 24px;
    }

    .manager-photo,
    .sales-photo {
        height: 250px;
    }

    .manager-photo img,
    .sales-photo img {
        transform: scale(1.05);
    }

    .management-card:hover
    .manager-photo img,
    .management-card:hover
    .sales-photo img {
        transform: scale(1.09);
    }

    .manager-info {
        padding: 18px 14px;
    }

    .manager-info h3 {
        font-size: 17px;
    }

    .manager-info p {
        font-size: 13px;
    }


    /* FOOTER */

    .footer-main {

        grid-template-columns:
            repeat(2,1fr);

        gap: 30px;
    }
}


/* =========================================================
   MOBILE - 560PX
========================================================= */

@media (max-width: 560px) {

    /* GLOBAL */

    .section {

        width:
            calc(100% - 24px);

        padding:
            75px 0;
    }

    .section-heading {

        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading p {

        font-size: 14px;

        line-height: 1.7;
    }


    /* HERO */

    .hero {

        padding-top: 145px;

        gap: 15px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-content > p {

        font-size: 15px;

        line-height: 1.7;
    }

    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-decoration {
        min-height: 300px;
    }

    .hero-logo-card {
        width: 270px;
    }

    .orbit-one {

        width: 310px;
        height: 310px;
    }

    .orbit-two {

        width: 240px;
        height: 240px;
    }

    .orbit-three {

        width: 350px;
        height: 350px;
    }


    /* =====================================================
       SEARCH
    ===================================================== */

    .product-search-wrapper {

        width: 100%;

        margin-bottom: 28px;
    }

    .product-search {

        height: 57px;

        padding:
            0 10px;

        border-radius: 18px;
    }

    .search-icon {

        width: 37px;
        height: 37px;

        border-radius: 11px;
    }

    .product-search input {

        min-width: 0;

        padding:
            0 10px;

        font-size: 14px;
    }

    .product-search button {

        width: 34px;
        height: 34px;

        flex-shrink: 0;
    }

    .search-result-info {
        font-size: 12px;
    }


    /* =====================================================
       PRODUCTS MOBILE
    ===================================================== */

    .products-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 12px;
    }

    .product-card {

        min-height: 0;

        border-radius: 20px;

        box-shadow:
            0 10px 28px rgba(35,70,110,.09);
    }

    .product-image {

        width: 100%;

        height: 170px;

        padding: 10px;

        border-radius:
            20px 20px 0 0;
    }

    .product-image img {

        width: 100%;
        height: 100%;

        object-fit: contain;

        transform: none;
    }

    .product-card:hover
    .product-image img {

        transform:
            scale(1.04);
    }

    .product-info {

        padding: 13px;

        min-width: 0;
    }

    .product-badge {

        padding:
            5px 8px;

        font-size: 8px;

        letter-spacing: .8px;
    }

    .product-info h3 {

        margin-top: 9px;

        font-size: 15px;

        line-height: 1.35;

        display:
            -webkit-box;

        -webkit-line-clamp: 2;

        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .product-info p {

        margin-top: 7px;

        font-size: 11px;

        line-height: 1.55;

        display:
            -webkit-box;

        -webkit-line-clamp: 2;

        -webkit-box-orient: vertical;

        overflow: hidden;
    }

    .like-btn {

        margin-top: 13px;

        min-height: 42px;

        padding:
            9px 8px;

        border-radius: 12px;

        font-size: 11px;

        gap: 5px;
    }

    .like-btn .heart {
        font-size: 16px;
    }

    .likes-count {
        font-size: 10px;
    }


    /* =====================================================
       MANAGEMENT MOBILE
    ===================================================== */

    .management-grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 12px;
    }

    .management-card {

        border-radius: 20px;

        overflow: hidden;
    }

    .manager-photo,
    .sales-photo {

        height: 190px;
    }

    .manager-photo img,
    .sales-photo img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        transform:
            scale(1.08);
    }

    .management-card:hover
    .manager-photo img,
    .management-card:hover
    .sales-photo img {

        transform:
            scale(1.12);
    }

    .chairman-photo img {
        object-position: center 25%;
    }

    .vice-photo img {
        object-position: center 25%;
    }

    .financial-photo img {
        object-position: center 20%;
    }

    .manager-info {

        padding:
            14px 10px;
    }

    .manager-role {

        padding:
            5px 7px;

        font-size: 8px;

        letter-spacing: .6px;
    }

    .manager-info h3 {

        margin-top: 9px;

        font-size: 14px;

        line-height: 1.35;
    }

    .manager-info p {

        margin-top: 4px;

        font-size: 11px;

        line-height: 1.4;
    }


    /* =====================================================
       COMMENTS MOBILE
    ===================================================== */

    .comment-auth {
        padding: 22px 16px;
    }

    .auth-title {
        gap: 12px;
    }

    .auth-icon {

        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 14px;
    }

    .auth-title h3 {
        font-size: 17px;
    }

    .auth-title p {
        font-size: 12px;
    }

    .google-btn {

        height: 50px;

        font-size: 13px;
    }

    .comment-user-box {

        padding: 15px;

        gap: 10px;
    }

    .current-avatar {

        width: 45px;
        height: 45px;

        flex-basis: 45px;
    }

    .comment-form-container {
        padding: 16px;
    }

    .comment-form-footer {

        align-items: stretch;

        flex-direction: column;
    }

    .comment-form-footer .btn {
        width: 100%;
    }

    .comments-top {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

        margin-top: 35px;
    }

    .comments-top h3 {
        font-size: 21px;
    }

    .comment-card {

        padding: 16px;

        border-radius: 20px;
    }

    .comment-header {
        gap: 10px;
    }

    .comment-avatar {

        width: 42px;
        height: 42px;

        flex-basis: 42px;

        border-radius: 13px;
    }

    .comment-user h4 {
        font-size: 14px;
    }

    .comment-user span {
        font-size: 10px;
    }

    .comment-body,
    .comment-actions,
    .reply-form,
    .replies-list,
    .edit-form {

        margin-left: 0;
    }

    .comment-body {
        margin-top: 14px;
    }

    .comment-body p {

        font-size: 13px;

        line-height: 1.7;
    }

    .comment-actions {
        gap: 10px;
    }

    .reply-form,
    .edit-form {
        padding: 12px;
    }

    .replies-list {
        margin-top: 12px;
    }


    /* =====================================================
       FOOTER MOBILE
    ===================================================== */

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            55px 0 35px;
    }

    .footer-brand img {

        width: 155px;
        height: 60px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

        gap: 8px;
    }


    /* =====================================================
       LOADER MOBILE
    ===================================================== */

    .loader-card {

        width:
            calc(100% - 30px);

        padding:
            32px 20px;

        border-radius: 28px;
    }

    .loader-logo {

        width: 160px;
        height: 85px;

        border-radius: 22px;
    }

    .loader-logo img {
        width: 145px;
    }

    .loader-message h1 {
        font-size: 29px;
    }

    .loader-message p {
        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONES - 380PX
========================================================= */

@media (max-width: 380px) {

    .section {

        width:
            calc(100% - 18px);
    }


    /* PRODUCTS */

    .products-grid {
        gap: 9px;
    }

    .product-card {
        border-radius: 17px;
    }

    .product-image {

        height: 150px;

        padding: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .product-info p {
        font-size: 10px;
    }

    .product-badge {

        font-size: 7px;

        padding:
            4px 6px;
    }

    .like-btn {

        min-height: 38px;

        font-size: 10px;
    }

    .like-btn .heart {
        font-size: 14px;
    }


    /* MANAGEMENT */

    .management-grid {
        gap: 9px;
    }

    .manager-photo,
    .sales-photo {
        height: 165px;
    }

    .manager-info {
        padding: 11px 7px;
    }

    .manager-info h3 {
        font-size: 12px;
    }

    .manager-info p {
        font-size: 10px;
    }

    .manager-role {
        font-size: 7px;
    }
}


/* =========================================================
   EXTRA SMALL - 340PX
========================================================= */

@media (max-width: 340px) {

    .products-grid {

        grid-template-columns:
            1fr;
    }

    .product-image {
        height: 210px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .product-info p {
        font-size: 12px;
    }

    .management-grid {
        grid-template-columns: 1fr;
    }

    .manager-photo,
    .sales-photo {
        height: 230px;
    }
}
/* =========================================================
   تصغير وتقليل مساحات كارت الكومنت
========================================================= */

.comment-card {
    padding: 15px 18px; /* تقليص الحشو الداخلي للكارت */
    border-radius: 20px; /* تقليل حواف الكارت لتتناسب مع الحجم الأصغر */
}

.comment-header {
    gap: 10px; /* تقليل المسافة بين الصورة والاسم */
}

.comment-avatar {
    width: 40px; /* تصغير حجم صورة الشخصية في الكومنت */
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
}

.comment-card p {
    margin-top: 8px; /* تقليل المسافة فوق نص الكومنت */
    font-size: 14px;  /* ضبط حجم الخط ليكون مناسب وغير مبالغ فيه */
}