/* ==========================================
   LIVE LONG PHARMA - Main Stylesheet
   Color palette: Navy #1B3A6B, Sky Blue #00B4D8
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
    /* ---- Brand Colors (HSL for better transparency control) ---- */
    --h-navy: 218;
    --s-navy: 60%;
    --l-navy: 26%;
    --navy: hsl(var(--h-navy), var(--s-navy), var(--l-navy));
    --navy-dark: hsl(var(--h-navy), var(--s-navy), 18%);
    --navy-light: hsl(var(--h-navy), var(--s-navy), 40%);
    
    --h-sky: 190;
    --s-sky: 100%;
    --l-sky: 42%;
    --sky: hsl(var(--h-sky), var(--s-sky), var(--l-sky));
    --sky-light: hsl(var(--h-sky), var(--s-sky), 60%);
    --sky-pale: hsl(var(--h-sky), 60%, 95%);
    
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    
    --text: #0F172A;
    --text-light: #64748B;
    
    /* ---- Depth & Glass ---- */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- HEADER / NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--glass-shadow);
    height: 64px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.navbar.scrolled .container {
    height: 64px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy);
}

.logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sky);
    transition: var(--transition);
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 20px;
}

.nav-links a.active {
    color: var(--navy);
}

.nav-links a.nav-cta {
    background: var(--sky);
    color: var(--white);
    margin-left: 10px;
    box-shadow: 0 4px 14px 0 hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.39);
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- HERO SECTION ---- */
.hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 0% 0%, hsla(var(--h-sky), 20%, 95%, 1) 0%, hsla(var(--h-navy), 10%, 98%, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(var(--h-sky), 100%, 42%, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(27, 58, 107, 0.06) 100%);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.08);
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--sky) 0%, #0077b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-collage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-width: 500px;
}

.collage-bg-shape {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 90%;
    background: linear-gradient(135deg, var(--sky-pale), rgba(0,180,216,0.1));
    border-radius: 40px;
    transform: rotate(-10deg);
    z-index: 0;
}

.collage-item {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
    z-index: 1;
    transition: transform 0.4s ease;
}

.collage-item:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    top: 0;
    left: 0;
    width: 55%;
    height: 60%;
    border-radius: 20px 40px 20px 20px;
}

.item-2 {
    bottom: 5%;
    left: 10%;
    width: 65%;
    height: 55%;
    z-index: 2;
    border-radius: 40px 20px 20px 20px;
}

.item-3 {
    top: 15%;
    right: 0;
    width: 45%;
    height: 70%;
    border-radius: 20px 20px 40px 20px;
}

.collage-badge {
    position: absolute;
    bottom: 10%;
    right: -10%;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.collage-badge i {
    color: #ef4444;
    font-size: 1.5rem;
}

.collage-badge span {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 100%);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky) 0%, #0077b6 100%);
    color: var(--white);
    box-shadow: 0 6px 20px -2px rgba(0, 180, 216, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -2px rgba(0, 180, 216, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px -2px rgba(27, 58, 107, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -2px rgba(27, 58, 107, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--navy);
    border: 1.5px solid var(--navy);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px -2px rgba(27, 58, 107, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 6px 20px -2px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0e7065 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px -2px rgba(37, 211, 102, 0.55);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-grid.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-grid.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-grid.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-grid.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-grid.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-grid.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-grid.active > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-grid.active > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-grid.active > *:nth-child(8) { transition-delay: 0.8s; }

/* ---- SECTION STYLES ---- */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0,180,216,0.1);
    color: var(--sky);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2,
.section-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- CATEGORIES GRID ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsla(var(--h-navy), var(--s-navy), var(--l-navy), 0.03), hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.03));
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card .icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--sky);
    transition: var(--transition);
}

.category-card:hover .icon {
    background: var(--sky);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.3);
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.category-card .count {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 16px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: var(--transition);
}

.category-card:hover .count {
    background: var(--navy);
    color: var(--white);
}

/* ---- PRODUCT CARDS ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(27, 58, 107, 0.06), 0 8px 10px -6px rgba(27, 58, 107, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -8px rgba(0, 180, 216, 0.18), 0 1px 3px rgba(0,0,0,0.05);
    border-color: rgba(0, 180, 216, 0.4);
}

.product-card .card-image {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.product-card .card-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.03) 100%);
}

.product-card .card-image img {
    height: 75%;
    width: 75%;
    max-height: 75%;
    max-width: 75%;
    object-fit: contain;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover .card-image img {
    transform: scale(1.08);
}

.product-card .card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card .card-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card .card-body .composition {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 44px;
}

.product-card .card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-card .card-tags .tag {
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: var(--transition);
}

.product-card:hover .card-tags .tag {
    background: hsla(var(--h-sky), var(--s-sky), var(--l-sky), 0.1);
    color: var(--sky);
}

/* ---- STATS / COUNTERS ---- */
.stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1b3a6b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.15), transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 16px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 30%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.stat-item .label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.2px;
}

/* ---- ABOUT SECTION (Homepage) ---- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy), var(--sky));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-preview-image i {
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}

.about-preview-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.about-preview-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-preview-content .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.about-preview-content .features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.about-preview-content .features .feature i {
    color: var(--sky);
    font-size: 1rem;
}

/* ---- ABOUT PAGE ---- */
.page-banner {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--sky-pale) 100%);
    text-align: center;
    position: relative;
}

.page-banner h1,
.page-banner .page-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.page-banner .breadcrumb a {
    color: var(--sky);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sky-pale), rgba(0,180,216,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    color: var(--navy);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sky);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sky-pale), rgba(0,180,216,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ---- PRODUCT DETAIL ---- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-pale), var(--gray-50));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    padding: 32px;
}

.product-image-main img {
    width: 75%;
    height: 75%;
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.product-image-main .placeholder-icon {
    font-size: 6rem;
    color: var(--sky);
    opacity: 0.3;
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-info .product-composition {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-meta {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
}

.product-meta-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.product-meta-item:last-child { border-bottom: none; }

.product-meta-item i {
    color: var(--sky);
    width: 20px;
    text-align: center;
}

.product-meta-item strong {
    color: var(--navy);
    margin-right: 6px;
}

.product-section {
    margin-bottom: 24px;
}

.product-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-section h3 i {
    color: var(--sky);
}

.product-section p,
.product-section ul li {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.product-section ul {
    padding-left: 0;
}

.product-section ul li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.product-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sky);
}

.product-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

/* ---- PRODUCT CONTROLS (SEARCH & FILTER) ---- */
.product-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.search-bar {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar i {
    position: absolute;
    left: 20px;
    color: var(--gray-400);
    font-size: 1rem;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy);
    background: transparent;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    background: var(--sky-pale);
}

.product-controls .filter-buttons {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product-controls {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 16px;
    }
    .search-bar { width: 100%; }
    .search-bar input { background: var(--gray-100); }
    .product-controls .filter-buttons { width: 100%; }
}

/* ---- FILTER BUTTONS ---- */
.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--sky);
    background: var(--sky);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.2);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--white);
    text-decoration: none;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-logo-text {
    line-height: 1.1;
}

.footer-logo-text strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
}

.footer-logo-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--sky-light);
    font-weight: 500;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--sky-light);
}

.footer-about p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--sky-light);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--sky-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-contact li i {
    color: var(--sky-light);
    margin-top: 3px;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 1.7rem;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 998;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--sky);
    transform: translateY(-2px);
}

/* ---- ALERT MESSAGES ---- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 4px;
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        padding: 12px 20px;
        border-radius: var(--radius);
        font-size: 1rem;
    }

    .hero { padding: 110px 0 50px; }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero h1 { font-size: 2rem; }
    .hero p { margin: 0 auto 24px; }
    .hero-buttons { justify-content: center; }

    .hero-image-wrapper { max-width: 300px; }

    .section-header h2 { font-size: 1.7rem; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .about-preview,
    .about-content,
    .product-detail { grid-template-columns: 1fr; gap: 30px; }

    .about-values { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .product-actions { flex-direction: column; }

    .page-banner { padding: 100px 0 40px; }
    .page-banner h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .categories-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .about-preview-content .features { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item .number { font-size: 2rem; }
    .filter-buttons { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.78rem; }
}

/* ---- PAGINATION ---- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-600);
}

.pagination a:hover,
.pagination span.current {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ---- NO RESULTS ---- */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-400);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.no-results h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
}

/* ---- PRODUCT ACCORDION ---- */
.product-accordion {
    margin-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    padding-left: 10px;
    background: var(--gray-50);
}

.accordion-header h3,
.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header h3 i,
.accordion-header h4 i {
    color: var(--sky);
}

.accordion-header .chevron {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding-bottom: 24px;
    opacity: 1;
    visibility: visible;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.accordion-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--sky);
    font-size: 0.85rem;
}

.accordion-item:nth-child(2) li::before {
    content: '\f071';
    color: #f59e0b;
}

/* ==========================================
   PREMIUM SECTIONS ADDITIONS
   ========================================== */

/* ---- DARK SECTION & GLASSMORPHISM ---- */
.section-dark {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, hsla(var(--h-sky), 100%, 50%, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: var(--gray-300);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.glass-card .icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--sky), #0077b6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}

.glass-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
}

.glass-card p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--sky-light);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: var(--gray-100);
    z-index: 0;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sky-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    font-weight: 800;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ---- TIMELINE (OUR JOURNEY) ---- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gray-200);
    border-radius: 4px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background: var(--sky);
    border: 4px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--sky-pale);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
    background: var(--navy);
    box-shadow: 0 0 0 6px hsla(var(--h-navy), var(--s-navy), var(--l-navy), 0.1);
    transform: translateX(-50%) scale(1.2);
}

.timeline-content {
    width: calc(50% - 50px);
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    border: 1px solid var(--gray-100);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-bottom: none;
    border-left: none;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-top: none;
    border-right: none;
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--sky-pale);
    color: var(--sky);
    font-weight: 800;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ---- PREMIUM CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--sky) 0%, rgba(0, 150, 200, 1) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--sky);
    font-weight: 800;
}

.cta-banner .btn:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transform: translateY(-3px);
    color: var(--navy);
}

/* ---- ADDITIONAL QUALITY/FEATURE GRID ---- */
.quality-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.quality-feature .icon {
    width: 60px; height: 60px;
    background: var(--sky-pale);
    color: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.quality-feature:hover .icon {
    background: var(--sky);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.quality-feature h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.quality-feature p {
    color: var(--gray-600);
    margin: 0;
}

/* ---- TESTIMONIALS REDESIGN OVERRIDES ---- */
.testimonial-card {
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
    z-index: 1;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: -20px;
    left: 20px; 
    font-size: 8rem; 
    color: var(--gray-50); 
    z-index: -1; 
    opacity: 0.6;
}

.testimonial-card.featured {
    transform: scale(1.05);
    border-color: var(--sky);
    box-shadow: 0 25px 50px -12px rgba(0, 180, 216, 0.25);
    background: linear-gradient(180deg, var(--white) 0%, #faffff 100%);
    z-index: 2;
}

.testimonial-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.testimonial-card.featured .quote-icon {
    color: var(--sky-pale);
    opacity: 0.3;
}

.testimonial-card .stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

/* ==========================================================================
   NAVBAR ACTIONS & SEARCH TRIGGER
   ========================================================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gray-200);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.nav-search-btn:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--sky);
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.15);
    transform: translateY(-1px);
}

.search-kbd-badge {
    display: inline-block;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-500);
}

/* ==========================================================================
   GLOBAL LIVE SEARCH MODAL
   ========================================================================== */
.llp-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.llp-search-modal.active {
    opacity: 1;
    visibility: visible;
}

.llp-search-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.llp-search-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    border: 1px solid var(--gray-200);
}

.llp-search-modal.active .llp-search-container {
    transform: translateY(0) scale(1);
}

.llp-search-header {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
    gap: 12px;
}

.llp-search-header .search-icon {
    color: var(--sky);
    font-size: 1.15rem;
}

.llp-search-header input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text);
    background: transparent;
}

.llp-search-header input::placeholder {
    color: var(--gray-400);
}

.llp-search-clear {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 0.95rem;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
}

.llp-search-clear:hover {
    color: var(--text);
    background: var(--gray-100);
}

.llp-search-close {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
}

.llp-search-body {
    max-height: 420px;
    overflow-y: auto;
    padding: 12px;
}

.llp-search-hint {
    padding: 16px;
}

.hint-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hint-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hint-chip {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.hint-chip:hover {
    background: var(--sky-pale);
    color: var(--sky);
    border-color: var(--sky);
}

.llp-search-loading,
.llp-search-empty {
    text-align: center;
    padding: 36px 20px;
    color: var(--gray-500);
}

.llp-search-loading i {
    font-size: 1.8rem;
    color: var(--sky);
    margin-bottom: 12px;
    display: block;
}

.llp-search-empty i {
    font-size: 2.2rem;
    color: var(--gray-300);
    margin-bottom: 10px;
    display: block;
}

.llp-search-empty span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 6px;
}

.search-results-count {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    padding: 6px 12px;
}

.search-items-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.llp-search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text);
}

.llp-search-item:hover,
.llp-search-item.selected {
    background: var(--gray-50);
    transform: translateX(4px);
}

.llp-search-item:hover .search-item-title,
.llp-search-item.selected .search-item-title {
    color: var(--sky);
}

.search-item-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.search-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-item-info {
    flex: 1;
    min-width: 0;
}

.search-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-title mark,
.search-item-comp mark {
    background: #fef08a;
    color: #854d0e;
    padding: 1px 3px;
    border-radius: 3px;
}

.search-item-comp {
    font-size: 0.8rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-arrow {
    color: var(--gray-400);
    font-size: 0.8rem;
}

.llp-search-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-500);
}

.llp-search-footer kbd {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 3px;
    padding: 1px 5px;
    font-weight: 600;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL
   ========================================================================== */
.llp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.llp-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.llp-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
}

.llp-lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.llp-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.llp-lightbox.active .llp-lightbox-img {
    transform: scale(1);
}

.llp-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.llp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.llp-lightbox-caption {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 14px;
    text-align: center;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.llp-toast-container {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.llp-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--navy-dark);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.llp-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.llp-toast-success i { color: #22c55e; font-size: 1.1rem; }
.llp-toast-error i { color: #ef4444; font-size: 1.1rem; }
.llp-toast-info i { color: var(--sky); font-size: 1.1rem; }

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: 6px;
    line-height: 1;
}

.toast-close:hover { color: var(--white); }

/* ==========================================================================
   CIRCULAR SCROLL PROGRESS BUTTON
   ========================================================================== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(27, 58, 107, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--sky);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4);
}

.scroll-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 3;
}

.scroll-progress-bar {
    fill: none;
    stroke: var(--sky);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* ==========================================================================
   MOBILE NAV BACKDROP
   ========================================================================== */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Share button on product detail */
.btn-share-link {
    cursor: pointer;
}

/* ==========================================================================
   AUTHENTIC MOBILE CRO STICKY BAR
   ========================================================================== */
.mobile-cro-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    padding: 8px 12px;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .mobile-cro-bar {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 8px;
    }
    .whatsapp-float {
        bottom: 75px !important;
    }
    .scroll-top {
        bottom: 75px !important;
    }
    body {
        padding-bottom: 60px;
    }
}

.mobile-cro-bar .cro-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.mobile-cro-bar .cro-btn i {
    font-size: 1.15rem;
}

.mobile-cro-bar .cro-call {
    color: var(--navy);
    background: var(--gray-100);
}

.mobile-cro-bar .cro-catalog {
    color: var(--sky);
    background: var(--sky-pale);
}

.mobile-cro-bar .cro-whatsapp {
    color: var(--white);
    background: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* ---- REQUEST PRICE LIST POPUP MODAL ---- */
.price-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.price-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.price-modal-card {
    background: var(--white);
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}

.price-modal-backdrop.active .price-modal-card {
    transform: translateY(0) scale(1);
}

.price-modal-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.price-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.price-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.price-modal-body {
    padding: 22px 24px;
    overflow-y: auto;
}

.price-modal-product-badge {
    background: var(--sky-pale);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--navy);
}

.price-modal-product-badge i {
    color: var(--sky);
    font-size: 1.1rem;
    margin-top: 2px;
}

.price-form-group {
    margin-bottom: 14px;
}

.price-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.price-form-group input,
.price-form-group select,
.price-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.price-form-group input:focus,
.price-form-group select:focus,
.price-form-group textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.price-modal-url-tag {
    display: block;
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   CATEGORY PAGE MODERN UI & CLINICAL STYLES
   ========================================== */
.cat-stats-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-200);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cat-pill:hover {
    transform: translateY(-2px);
    border-color: var(--sky);
    box-shadow: var(--shadow);
}

.cat-pill i {
    color: var(--sky);
}

.cat-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin: 36px 0 20px;
}

.cat-highlight-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.cat-highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--sky-light);
    box-shadow: var(--shadow-md);
}

.cat-highlight-card .icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sky-pale);
    color: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.cat-highlight-card:hover .icon-box {
    background: var(--navy);
    color: var(--white);
}

.cat-highlight-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
}

.cat-highlight-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 16px;
}

.cat-highlight-card .card-action {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.cat-highlight-card .card-action:hover {
    color: var(--navy);
    gap: 10px;
}

.cat-deep-dive-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px;
    margin-top: 40px;
    box-shadow: var(--shadow-sm);
}

.cat-deep-dive-card p {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.cat-spotlight-box {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(27, 58, 107, 0.06) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-left: 5px solid var(--sky);
    border-radius: var(--radius-sm);
    padding: 22px 26px;
    margin: 28px 0;
}

.cat-cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #102447 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow-md);
}

.cat-cta-banner h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cat-cta-banner p {
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 24px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.cat-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.cat-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--gray-200);
}

.cat-btn-detail {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sky);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.cat-btn-detail:hover {
    color: var(--navy);
    gap: 8px;
}

.cat-btn-inquiry {
    font-size: 0.78rem;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.cat-btn-inquiry:hover {
    background: #16a34a;
    color: var(--white);
}


