:root {
    --primary-blue: rgb(77 203 239);
    --primary-dark: rgb(21 170 202);
    --primary-light: rgb(207 250 254);
    --primary-bg: rgb(236 254 255);
    --secondary-blue: rgb(84 188 20);
    --accent-blue: rgb(21 170 202);
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --shadow: 0 4px 12px rgba(30, 41, 59, 0.08);
    --transition: all 0.3s ease;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/fa-solid-900.woff2") format("woff2");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    direction: ltr;
    text-align: left;
    overflow-x: hidden;
}

.bg-primary-bg {
    background: var(--primary-bg);
}

.bg-blue-50 {
    background-color: var(--primary-bg);
}

.bg-blue-500 {
    background-color: var(--primary-blue);
}

.text-blue-300 {
    color: var(--primary-light);
}

.text-blue-500 {
    color: var(--primary-blue);
}

.text-blue-600 {
    color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
}

.section-padding {
    padding: 5rem 0;
}

.card-hover {
    transition: var(--transition);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.15);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 203, 239, 0.3);
}

.btn-secondary {
    background: transparent;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    color: var(--secondary-blue) !important;
    border: 2px solid var(--secondary-blue) !important;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.header-icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.header-icon-btn:hover {
    background: linear-gradient(135deg, #4dcbef 0%, #3ba8d1 100%);
    color: #ffffff;
    border-color: #4dcbef;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(77, 203, 239, 0.25);
}

.header-icon-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(77, 203, 239, 0.2);
}

.header-icon-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.header-icon-btn:hover i {
    transform: scale(1.1);
}

.header-icon-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-radius: 12px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
    border: 2px solid #ffffff;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.header-icon-btn:hover .header-icon-badge {
    animation: bounce-badge 0.6s ease;
}

@keyframes bounce-badge {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.2) translateY(-4px);
    }
}

@media (max-width: 991px) {
    .header-icon-btn {
        width: 40px;
        height: 40px;
    }

    .header-icon-btn i {
        font-size: 16px;
    }
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

/* Mobile Sidebar  */
.mobile-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    background: white;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.mobile-sidebar .sidebar-link {
    border-radius: 12px;
}

.mobile-sidebar .sidebar-link.active {
    background-color: rgba(77, 203, 239, 0.22);
    color: var(--primary-dark);
    box-shadow: 0 10px 22px rgba(77, 203, 239, 0.14);
    border-left: 4px solid var(--primary-blue);
    padding-left: calc(1rem - 4px);
    font-weight: 700;
}

.mobile-sidebar .sidebar-link.active::after {
    display: none;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--secondary-blue);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn.is-active {
    border: 1px solid rgba(220, 38, 38, 0.35);
    background: rgba(220, 38, 38, 0.08);
    color: rgb(220, 38, 38);
}

.cart-sidebar {
    position: fixed;
    inset: 0 0 0 auto;
    width: 360px;
    max-width: 92vw;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -8px 0 30px rgba(30, 41, 59, 0.15);
    overflow-y: auto;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(100, 116, 139, 0.25);
}

.cart-sidebar-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.cart-empty {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 22px 14px;
}

.cart-empty-icon {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(240px 120px at 20% 10%, rgba(77, 203, 239, 0.25), transparent 55%),
        rgba(77, 203, 239, 0.12);
    border: 1px solid rgba(77, 203, 239, 0.25);
    color: var(--primary-dark);
    font-size: 32px;
}

.cart-empty-title {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.cart-empty-subtitle {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 260px;
}

.cart-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(100, 116, 139, 0.18);
}

.cart-item-media img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.85rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(100, 116, 139, 0.35);
    background: #fff;
}

.cart-qty-input {
    width: 56px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(100, 116, 139, 0.35);
    text-align: center;
}

.cart-remove-btn {
    width: 32px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.35);
    background: rgba(220, 38, 38, 0.06);
    color: rgb(220, 38, 38);
}

.cart-item-total {
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cart-sidebar-footer {
    padding-top: 12px;
}

.cart-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 800;
}

.sidebar-logo {
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    height: 44px;
    max-width: 100%;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border-color: rgba(2, 132, 199, 0.35);
    color: var(--primary-dark);
}

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--primary-bg);
    border-color: rgba(2, 132, 199, 0.55);
    color: var(--primary-dark);
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-sidebar .nav-link:hover {
    background-color: var(--primary-bg);
    color: var(--primary-dark);
}

/* Hero */
.hero-section {
    background-image: url('/assets/imgs/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section p {
    color: var(--secondary-blue);
}

.hero-section .btn-primary {
    background: var(--secondary-blue);
}

.hero-section .btn-primary:hover {
    background: var(--secondary-blue);
    box-shadow: 0 5px 15px rgba(84, 188, 20, 0.28);
}

.hero-section .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.hero-section .btn-secondary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.hero-section h1,
.hero-section p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

/* Stats */
.stats-section {
    margin-top: 0;
    padding: 3.25rem 0;
    background:
        radial-gradient(900px 260px at 20% 0%, rgba(77, 203, 239, 0.14), transparent 55%),
        radial-gradient(700px 240px at 80% 10%, rgba(84, 188, 20, 0.10), transparent 55%),
        #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.stat-card {
    grid-column: span 3;
    border-radius: 18px;
    padding: 1.15rem 1.15rem 1.25rem;
    background:
        radial-gradient(450px 160px at 10% 10%, rgba(77, 203, 239, 0.18), transparent 55%),
        radial-gradient(450px 160px at 90% 10%, rgba(84, 188, 20, 0.12), transparent 55%),
        rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(77, 203, 239, 0.16);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
}

.stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(77, 203, 239, 0.22);
    color: var(--primary-dark);
}

.stat-icon svg {
    fill: var(--secondary-blue);
}

.stat-kicker {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(77, 203, 239, 0.14);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.stat-value {
    font-weight: 900;
    font-size: 2.05rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

.stat-label {
    margin-top: 0.55rem;
    color: var(--text-light);
    font-weight: 700;
}

@media (max-width: 992px) {
    .stat-card {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 2.5rem 0;
    }

    .stat-card {
        grid-column: span 12;
    }
}

/* Services */
.services-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 260px at 15% 0%, rgba(77, 203, 239, 0.22), transparent 55%),
        radial-gradient(700px 240px at 85% 10%, rgba(84, 188, 20, 0.14), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--primary-bg) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(77, 203, 239, 0.18);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

.services-title {
    margin: 0.9rem 0 0.6rem;
    font-weight: 800;
}

.services-subtitle {
    margin: 0 auto;
    max-width: 54rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.service-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    transform: translateZ(0);
    isolation: isolate;
    grid-column: span 4;
}

.service-media {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 500ms ease;
}

.service-body {
    padding: 1.15rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: var(--text-dark);
}

.service-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.service-desc {
    margin: 0;
    color: var(--text-light);
    font-size: 0.98rem;
    max-width: 34ch;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin-top: 0.25rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(84, 188, 20, 0.92);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.service-cta:hover {
    transform: translateY(-1px);
    background: rgba(84, 188, 20, 1);
    box-shadow: 0 10px 22px rgba(84, 188, 20, 0.22);
    color: #fff;
}

.service-tile:hover .service-media {
    transform: scale(1.08);
}

.service-tile:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

@media (max-width: 992px) {
    .service-tile {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 3.5rem 0;
    }

    .service-tile {
        grid-column: span 12;
        min-height: 260px;
    }
}

/* Products */
.products-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 260px at 20% 0%, rgba(77, 203, 239, 0.18), transparent 55%),
        radial-gradient(700px 240px at 80% 10%, rgba(84, 188, 20, 0.12), transparent 55%),
        #ffffff;
}

.products-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.products-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(77, 203, 239, 0.18);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

.products-title {
    margin: 0.9rem 0 0.6rem;
    font-weight: 800;
}

.products-subtitle {
    margin: 0 auto;
    max-width: 54rem;
    color: var(--text-light);
}

.about-section {
    padding: 5rem 0;
    background:
        radial-gradient(900px 300px at 18% 0%, rgba(77, 203, 239, 0.18), transparent 55%),
        radial-gradient(760px 280px at 86% 10%, rgba(84, 188, 20, 0.12), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--primary-bg) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.about-content {
    grid-column: span 7;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(77, 203, 239, 0.18);
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.about-title {
    margin: 0.9rem 0 0.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.about-text {
    margin: 0;
    max-width: 58ch;
    color: var(--text-light);
    font-weight: 600;
}

.about-badges {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(77, 203, 239, 0.16);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    color: var(--text-dark);
    font-weight: 800;
}

.about-badge i {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(84, 188, 20, 0.14);
    color: rgba(84, 188, 20, 1);
}

.about-actions {
    margin-top: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background: rgba(84, 188, 20, 1);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.about-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(84, 188, 20, 0.22);
    color: #fff;
}

.about-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.05rem;
    border-radius: 999px;
    background: rgba(77, 203, 239, 0.14);
    color: var(--primary-dark);
    font-weight: 900;
    text-decoration: none;
    transition: transform 200ms ease, background-color 200ms ease;
}

.about-link:hover {
    transform: translateY(-1px);
    background: rgba(77, 203, 239, 0.2);
    color: var(--primary-dark);
}

.about-media {
    grid-column: span 5;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(520px 220px at 15% 10%, rgba(77, 203, 239, 0.22), transparent 55%),
        radial-gradient(520px 220px at 85% 10%, rgba(84, 188, 20, 0.14), transparent 55%),
        rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(77, 203, 239, 0.16);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.about-media img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-content {
        grid-column: span 12;
    }

    .about-media {
        grid-column: span 12;
    }

    .about-media img {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3.5rem 0;
    }

    .about-badges {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    padding: 4.25rem 0 1.25rem;
    color: var(--text-dark);
    background:
        radial-gradient(900px 360px at 15% 0%, rgba(77, 203, 239, 0.18), transparent 55%),
        radial-gradient(700px 320px at 85% 10%, rgba(84, 188, 20, 0.12), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--primary-bg) 100%);
}

.footer-link {
    display: inline-block;
    max-width: 28ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 1.5rem;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(2, 132, 199, 0.16);
}

.footer-logo {
    height: 44px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: none;
}

.footer-desc {
    margin: 1rem 0 1.1rem;
    color: var(--text-light);
    max-width: 34ch;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: rgba(84, 188, 20, 1);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.footer-cta:hover {
    transform: translateY(-1px);
    background: rgba(84, 188, 20, 1);
    box-shadow: 0 12px 28px rgba(84, 188, 20, 0.22);
    color: #fff;
}

.footer-title {
    margin: 0 0 0.9rem;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-dark);
}

.footer-link {
    display: block;
    margin: 0.45rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover {
    color: var(--primary-blue);
    transform: translateX(2px);
}

.footer-contact {
    display: grid;
    gap: 0.6rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-light);
    font-weight: 700;
}

.footer-contact-item i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(77, 203, 239, 0.18);
    color: var(--primary-dark);
}

.footer-bottom {
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    text-align: center;
}

.footer-bottom-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-bottom-link:hover {
    color: var(--primary-blue);
}

.footer-bottom-sep {
    opacity: 0.45;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 3.25rem 0 1.15rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.product-card {
    grid-column: span 3;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    transition: transform 220ms ease, box-shadow 220ms ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.product-media {
    position: relative;
    overflow: hidden;
}

.product-media img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 500ms ease;
}

.product-card:hover .product-media img {
    transform: scale(1.08);
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    color: rgba(15, 23, 42, 0.85);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
}

.icon-btn--primary {
    background: rgba(84, 188, 20, 0.92);
    border-color: rgba(84, 188, 20, 0.92);
    color: #fff;
}

.icon-btn--primary:hover {
    background: rgba(84, 188, 20, 1);
    border-color: rgba(84, 188, 20, 1);
    color: #fff;
}

.product-body {
    padding: 1.15rem 1.15rem 1.25rem;
}

.product-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    margin: 0.55rem 0 0.9rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.product-price {
    font-weight: 900;
    color: var(--primary-dark);
}

.product-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(77, 203, 239, 0.18);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .product-card {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 3.5rem 0;
    }

    .product-card {
        grid-column: span 12;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        background-image: url('/assets/imgs/hero-mob.webp');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .hero-cta {
        flex-wrap: nowrap !important;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 0.65rem 1.1rem;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .hero-section p {
        color: var(--white);
    }
}




/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.25rem;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.08),
        0 5px 15px rgba(15, 23, 42, 0.05);
    z-index: 9999;
    animation: cookieSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cookie-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, var(--primary-light), rgba(77, 203, 239, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.cookie-body {
    flex-grow: 1;
}

.cookie-text {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.cookie-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-blue);
    transition: width 0.2s ease;
}

.cookie-link:hover {
    color: var(--primary-blue);
}

.cookie-link:hover::after {
    width: 100%;
}

.cookie-btn {
    padding: 0.6rem 1.75rem !important;
    font-size: 0.9rem !important;
    border-radius: 99px !important;
    box-shadow: 0 8px 20px rgba(77, 203, 239, 0.25);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(77, 203, 239, 0.35);
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media (min-width: 768px) {
    .cookie-banner {
        left: 2rem;
        bottom: 2rem;
        transform: none;
        width: auto;
        max-width: 420px;
        animation: cookieSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    @keyframes cookieSlideIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
/* Toasts */
.toast-root {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 9999;
    display: grid;
    gap: 12px;
    width: min(420px, calc(100% - 28px));
}
.toast {
    display: grid;
    grid-template-columns: 44px 1fr 34px;
    align-items: start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.toast.open { transform: translateY(0); opacity: 1; }
.toast-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.toast-success { color: #22c55e; border-left: 4px solid #22c55e; }
.toast-success .toast-icon { background: rgba(34, 197, 94, 0.1); }
.toast-error { color: #ef4444; border-left: 4px solid #ef4444; }
.toast-error .toast-icon { background: rgba(239, 68, 68, 0.1); }
.toast-body { display: grid; gap: 2px; }
.toast-title { font-weight: 800; color: #1e293b; font-size: 14px; }
.toast-message { font-size: 13px; color: #64748b; font-weight: 500; }
.toast-close { background: transparent; border: none; color: #94a3b8; cursor: pointer; font-size: 14px; }

/* Frontend User Dropdown */
.user-menu-wrapper { position: relative; display: inline-block; }
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 50px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.user-menu-btn:hover { background: #f1f5f9; border-color: var(--primary-blue); }
.avatar-small {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}
.user-dropdown-menu.show { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-header-info { padding: 12px 16px; }
.dropdown-header-info strong { display: block; font-size: 14px; color: var(--text-dark); }
.dropdown-header-info span { display: block; font-size: 12px; color: var(--text-light); }
.dropdown-divider { height: 1px; background: #f1f5f9; margin: 8px 0; }
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.dropdown-item:hover { background: #f8fafc; color: var(--primary-blue); transform: translateX(4px); }
.dropdown-item.text-danger:hover { background: #fef2f2; color: #ef4444; }
.dropdown-item i { width: 18px; font-size: 16px; }
