/* Alces Pharma - Bebeburp High Fidelity Polish */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Palette - High Saturation */
    --brand-pink: #E6007E;
    --brand-pink-dark: #C4006B;

    --brand-blue: #0054A6;
    --brand-blue-gradient: linear-gradient(180deg, #0066CC 0%, #0054A6 100%);

    --brand-green-bg: #E0F2D5;
    --brand-green-text: #3F7E34;

    --brand-beige: #F4E6D0;
    --brand-text: #222222;
    /* Darker for better contrast */

    --white: #FFFFFF;
    --light-gray: #F5F5F7;

    /* Typography */
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Poppins', sans-serif;

    /* UI Dimensions */
    --container-width: 1240px;
    /* Slightly wider */
    --radius: 8px;
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--brand-text);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
    position: relative;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Bolder */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Top Bar (Pink) */
.top-bar {
    background-color: var(--brand-pink);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 2. Header (Premium Spacing) */
header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    /* Minimized padding */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Reduced header size */
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 32px;
    /* Larger */
    color: var(--brand-blue);
    line-height: 1;
    font-weight: 700;
    align-self: flex-start;
    /* Align to top to prevent top-clipping */
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 110px;
    /* Large logo maintained */
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    /* Optional popup effect */
}

/* Remove old text span styles if strictly using image */
.logo span {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    /* Bolder */
    font-size: 14px;
    color: #444;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: var(--brand-pink);
    border-color: var(--brand-pink);
}

.header-icons {
    display: flex;
    gap: 20px;
    color: #444;
    font-size: 22px;
}

.header-icons a:hover {
    color: var(--brand-blue);
}

/* ===== Products Dropdown Menu ===== */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    font-weight: 700;
    font-size: 14px;
    color: #444;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger {
    color: var(--brand-pink);
    border-color: var(--brand-pink);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    margin-top: 15px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #fff;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #0099a8;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    text-transform: none;
    border-bottom: none;
}

.dropdown-item i {
    font-size: 10px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #00B4B4, #008B8B);
    color: #fff;
}

.dropdown-item:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Submenu Styles */
.dropdown-item-container {
    position: relative;
}

.submenu {
    position: absolute;
    left: 100%;
    top: -10px;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 1001;
}

.dropdown-item-container:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-item-container:hover>.dropdown-item {
    background: linear-gradient(90deg, #00B4B4, #008B8B);
    color: #fff;
}

.dropdown-item-container:hover>.dropdown-item i {
    opacity: 1;
    transform: translateX(3px);
}

.submenu-item {
    display: block;
    padding: 10px 20px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.submenu-item:hover {
    color: #0099a8;
    background: #f9f9f9;
    padding-left: 25px;
}

.division-products {
    display: none;
}

.division-products.active {
    display: block;
}

.product-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #0099a8;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border-bottom: none;
    text-transform: none;
}

.product-link i {
    font-size: 10px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.product-link:hover {
    background: rgba(0, 180, 180, 0.1);
    color: #008B8B;
}

.product-link:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* 3. Hero Section (Rich Upgrade - High Fi) */
.hero {
    background: linear-gradient(110deg, #EAF6FF 0%, #EAF6FF 50%, #fff 50.1%);
    /* Sharper cut */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1300px;
}

.hero-content {
    flex: 1;
    padding-left: 20px;
    z-index: 2;
}

/* Badge: New Year Offer */
.offer-badge {
    display: inline-block;
    background: linear-gradient(90deg, #E6007E, #C4006B);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
    letter-spacing: 1px;
}

/* Title: Impact Style */
.hero-title {
    font-size: 52px;
    line-height: 1.1;
    color: var(--brand-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    /* Force CAPS */
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--brand-pink);
    display: block;
    margin-top: 5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    font-weight: 500;
    max-width: 450px;
    line-height: 1.6;
}

/* Price Sticker */
.hero-price-tag {
    background: #0054A6;
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 84, 166, 0.3);
    margin-bottom: 0;
    margin-right: 20px;
    vertical-align: middle;
    transform: rotate(-3deg);
    border: 2px solid #fff;
}

.price-top {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-main {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

/* Button: Shop Now Pill */
.btn-hero {
    background: #0054A6;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background: #004494;
}

.btn-hero-secondary {
    background: #E6007E;
    /* Brand Pink */
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    box-shadow: 0 5px 15px rgba(230, 0, 126, 0.3);
    transition: transform 0.2s, background 0.2s;
    height: 100%;
    /* Match height */
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background: #C4006B;
    /* Darker Pink hover */
    color: #fff;
}

/* Visual Side - Product Poster Composition */
.hero-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    /* For 3D depth feel */
}

.hero-poster {
    position: relative;
    width: 550px;
    /* Slightly wider container */
    height: 450px;
    /* Taller container */
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-blob {
    position: absolute;
    width: 480px;
    /* Larger blob */
    height: 480px;
    background: radial-gradient(circle, #E0F2D5 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-main {
    position: absolute;
    height: 480px;
    /* Increased from 380px */
    width: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transform: rotate(5deg) translateX(-20px);
    transition: transform 0.3s ease;
}

.product-secondary {
    position: absolute;
    height: 360px;
    /* Increased from 280px */
    width: auto;
    z-index: 1;
    right: -10px;
    /* Adjusted position */
    bottom: -10px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
    transform: rotate(-10deg) scale(0.9);
}

/* Animations */
.floating {
    animation: float-main 5s ease-in-out infinite;
}

.floating-delayed {
    animation: float-secondary 6s ease-in-out infinite 0.5s;
}

@keyframes float-main {

    0%,
    100% {
        transform: rotate(5deg) translateX(-20px) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateX(-20px) translateY(-15px);
    }
}

@keyframes float-secondary {

    0%,
    100% {
        transform: rotate(-10deg) scale(0.9) translateY(0);
    }

    50% {
        transform: rotate(-10deg) scale(0.9) translateY(-10px);
    }
}

/* Floating Gift Card - White with Pink Border */
.floating-gift {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid var(--brand-pink);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.gift-icon-box {
    font-size: 28px;
    color: var(--brand-pink);
}

.gift-text strong {
    display: block;
    color: var(--brand-pink);
    font-size: 16px;
    font-weight: 800;
}

.gift-text span {
    font-size: 11px;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media(max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 0;
    }

    .hero {
        background: #EAF6FF;
    }

    .hero-price-tag {
        margin: 0 auto 25px;
    }

    .floating-gift {
        position: static;
        margin-top: 20px;
        display: inline-flex;
    }
}

/* 4. USP Bar (Green Polish) */
.usp-bar {
    background-color: var(--brand-green-bg);
    color: var(--brand-green-text);
    padding: 18px 0;
    font-family: var(--font-body);
}

.usp-grid {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    /* Extra bold */
    text-align: center;
    letter-spacing: 1px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.usp-item i {
    font-size: 18px;
}

/* 5. Categories (Circles) */
.categories {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: var(--brand-text);
    margin: 40px 0 100px;
    /* Increased bottom margin significantly */
    font-weight: 700;
    text-align: center;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* Wider gap */
    flex-wrap: wrap;
}

.cat-item {
    text-align: center;
    cursor: pointer;
    width: 110px;
}

.cat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #EFEFEF;
    /* Thicker border */
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.cat-item:hover .cat-circle {
    border-color: var(--brand-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cat-name {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-body);
    color: #333;
}

/* 6. Product Grid (High Fidelity) */
.products-section {
    padding: 40px 0 80px;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* Standard Bebeburp gap */
}

.product-card {
    border: 1px solid #EAEAEA;
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #ddd;
    transform: translateY(-5px);
}

.tag-badge {
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--brand-pink);
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 0 4px 4px 0;
}

.p-image {
    height: 240px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    /* White background for clean look */
    position: relative;
}

.p-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Ensures white-on-white blends if needed */
}

.p-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.p-title {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    color: #111;
    height: 40px;
    /* Force 2 lines max height logic visual */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.p-rating {
    color: #FFB400;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.p-price {
    font-size: 17px;
    font-weight: 800;
    color: #333;
    margin-top: auto;
    margin-bottom: 15px;
}

.p-price span {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

/* Button (Solid Block Match) */
.btn-add {
    background: var(--brand-blue);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    border-radius: 0 0 var(--radius) var(--radius);
    /* Clean bottom corners */
}

.btn-add:hover {
    background: #003F7D;
}

/* 7. Beige Section (Nutrition) */
.nutrition-section {
    background-color: var(--brand-beige);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.split-img {
    flex: 1;
}

.split-text h2 {
    color: #6D4C41;
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-text p {
    color: #5D4037;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.feature-list {
    margin-bottom: 35px;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #6D4C41;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--brand-green-text);
    font-size: 18px;
}

.rounded-shadow {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(109, 76, 65, 0.15);
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.btn-brown {
    background: #6D4C41;
    color: #fff;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(109, 76, 65, 0.3);
}

.btn-brown:hover {
    background: #5D4037;
    transform: translateY(-2px);
}

/* 8. Footer (Pink Wave Match) */
footer {
    background-color: #FFF5F8;
    /* Light Pink tint */
    padding-top: 80px;
    position: relative;
    border-top: 6px solid var(--brand-pink);
    color: #666;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 60px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

/* Brand Column specific */
.brand-col {
    flex: 1.5;
    /* Slightly wider */
    padding-right: 30px;
}

.brand-col .logo {
    margin-bottom: 20px;
    font-size: 28px;
}

.brand-col p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-pink);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.social-links a:hover {
    background: var(--brand-pink);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(230, 0, 126, 0.2);
}

.footer-col h4 {
    color: var(--brand-text);
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.footer-col ul li a {
    color: #666;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: var(--brand-pink);
    padding-left: 5px;
    /* Slide effect */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

/* Developer Credit */
.developer-credit {
    font-size: 13px;
    font-weight: 500;
}

.developer-credit a {
    color: var(--brand-pink);
    font-weight: 700;
    transition: color 0.2s;
}

.developer-credit a:hover {
    color: var(--brand-pink-dark);
    text-decoration: underline;
}

/* ===== Product Spotlight Sections ===== */
.product-spotlight {
    padding: 80px 0;
}

.product-spotlight h2 {
    font-size: 38px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-spotlight p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.spotlight-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.spotlight-tagline {
    font-weight: 600;
    font-size: 14px !important;
    margin-bottom: 15px !important;
}

.spotlight-img img {
    max-height: 500px;
    /* Increased from 400px */
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    /* Enhanced shadow */
    border-radius: 20px;
}

.btn-spotlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    /* Larger button */
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

/* Alcelac Theme - Red/Brown matching product packaging */
.spotlight-alcelac {
    background: #FFF5F5;
    /* Lighter clean background */
}

.spotlight-alcelac h2 {
    color: #A03030;
    /* Slightly more vibrant rust/red */
    font-size: 48px;
    /* Larger title */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.spotlight-alcelac p {
    color: #4A4A4A;
    /* Cleaner dark grey for readability */
    font-size: 17px;
}

.spotlight-alcelac .spotlight-badge {
    background: #A03030;
    color: #fff;
    font-size: 13px;
    padding: 10px 25px;
}

.spotlight-alcelac .feature-list li {
    color: #555;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}

.spotlight-alcelac .feature-list li i {
    color: #A03030;
    font-size: 20px;
}

.btn-alcelac {
    background: #A03030;
    color: #fff;
    box-shadow: 0 10px 20px rgba(160, 48, 48, 0.2);
}

.btn-alcelac:hover {
    background: #8B2020;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(160, 48, 48, 0.3);
}

/* Ones Theme - Gold/Yellow matching product packaging */
.spotlight-ones {
    background: #FFFEF5;
}

.spotlight-ones h2 {
    color: #0054A6;
    font-size: 48px;
    margin-bottom: 15px;
}


/* ===== Contact Us Section (Reconstructed) ===== */
.contact-section {
    padding: 80px 0;
    background: #FEFDF5;
    position: relative;
    overflow: hidden;
    color: var(--brand-blue);
    text-align: center;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-header p {
    color: #666;
    font-size: 16px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 84, 166, 0.25);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 84, 166, 0.4);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== Footer Section (Reconstructed) ===== */
footer {
    background: #FFF5F8;
    color: #444;
    padding: 60px 0 20px;
    font-size: 14px;
    border-top: 5px solid var(--brand-pink);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding-right: 20px;
    margin-bottom: 30px;
}

.brand-col {
    flex: 2;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--brand-blue);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--brand-pink);
    padding-left: 5px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.logo span {
    color: var(--brand-pink);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--brand-pink);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #ffe0e9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--brand-pink);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #666;
}

.developer-credit a {
    color: #ffd700;
    text-decoration: none;
}

/* ===== Heading Utilities ===== */
.about-main-heading {
    color: var(--brand-blue);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.mobile-title {
    display: none;
}

.desktop-title {
    display: block;
}

/* ===== About Grid Redesign (Modern Cards) ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 84, 166, 0.12);
    border-color: rgba(0, 84, 166, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #F0F8FF;
    /* AliceBlue / Brand Lightest */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--brand-blue);
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 84, 166, 0.05);
}

.about-card:hover .icon-box {
    background: var(--brand-blue);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 84, 166, 0.2);
}

.about-card h4 {
    font-size: 19px;
    font-weight: 800;
    /* Extra bold */
    color: #2c3e50;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.about-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== Responsive Mobile Styles & Fixes ===== */

/* Global Mobile Fixes */
img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
}

.container {
    padding: 0 20px;
    width: 100%;
}

/* ===== Scroll Reveal Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(230, 0, 126, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(230, 0, 126, 0.7);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll globally */
html {
    scroll-behavior: smooth;
}

/* ===== TABLET BREAKPOINT (≤1024px) ===== */
@media (max-width: 1024px) {

    .navbar {
        padding: 0 20px;
    }

    /* ── Glassmorphism Mobile Menu ── */
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 48px 28px 40px;
        gap: 8px;
        z-index: 999;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.35s ease;
        border-top: 1px solid rgba(0, 84, 166, 0.08);
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
        opacity: 1;
    }

    /* ── Hamburger Button ── */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        border-radius: 8px;
        transition: background 0.2s;
    }

    .mobile-menu-btn:active {
        background: rgba(0, 84, 166, 0.06);
    }

    .mobile-menu-btn .bar {
        width: 26px;
        height: 2.5px;
        background-color: var(--brand-blue);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        transform-origin: center;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* ── Nav Links Styling ── */
    .nav-links>a {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1.5px;
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        border-radius: 14px;
        color: var(--brand-text);
        transition: all 0.25s ease;
        position: relative;
    }

    .nav-links>a:hover,
    .nav-links>a:active {
        background: rgba(0, 84, 166, 0.06);
        color: var(--brand-blue);
    }

    /* ── Products Dropdown ── */
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-links .dropdown-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1.5px;
        width: 100%;
        gap: 10px;
        padding: 16px 20px;
        border-radius: 14px;
        color: var(--brand-text);
        transition: all 0.25s ease;
    }

    .nav-dropdown.active .dropdown-trigger {
        background: linear-gradient(135deg, rgba(230, 0, 126, 0.08), rgba(0, 84, 166, 0.08));
        color: var(--brand-pink);
    }

    .nav-dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        width: 100%;
        min-width: unset !important;
        padding: 8px 0;
        margin-top: 4px;
        margin-bottom: 0;
        left: auto !important;
        top: auto !important;
        background: rgba(0, 84, 166, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(0, 84, 166, 0.06);
        overflow: hidden;
    }

    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none !important;
    }

    /* Override desktop hover — prevent it from showing dropdown on mobile */
    .nav-dropdown:hover .dropdown-menu {
        display: none;
        transform: none !important;
    }

    /* Only show via JS .active class on mobile */
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
        transform: none !important;
        animation: fadeInUp 0.35s ease;
    }

    .dropdown-item-container {
        width: 100%;
        position: static !important;
    }

    .dropdown-item {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 14px 24px;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: var(--brand-blue);
        border-radius: 0;
        margin: 0;
        transition: all 0.2s ease;
        background: transparent;
    }

    /* Override desktop hover gradient on items */
    .dropdown-item:hover {
        background: rgba(0, 180, 180, 0.06);
        color: var(--brand-blue);
    }

    .dropdown-item:active {
        background: rgba(0, 180, 180, 0.12);
    }

    .dropdown-item i.fa-chevron-right {
        display: none !important;
    }

    /* Submenu — override desktop absolute positioning */
    .submenu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        left: auto !important;
        top: auto !important;
        background: rgba(0, 84, 166, 0.05);
        border-radius: 0;
        padding: 4px 0;
        min-width: unset !important;
        margin: 0;
    }

    /* Override desktop hover — prevent it from showing submenu on mobile */
    .dropdown-item-container:hover .submenu {
        display: none;
        transform: none !important;
    }

    .dropdown-item-container:hover>.dropdown-item {
        background: transparent;
        color: var(--brand-blue);
    }

    .dropdown-item-container:hover>.dropdown-item i {
        transform: none;
    }

    /* Only show submenu via JS .active class on mobile */
    .dropdown-item-container.active .submenu {
        display: block !important;
        transform: none !important;
        animation: fadeInUp 0.3s ease;
    }

    .dropdown-item-container.active>.dropdown-item {
        color: #00B4B4;
        font-weight: 700;
        background: rgba(0, 180, 180, 0.06);
    }

    .submenu-item {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
        color: #555;
        font-weight: 500;
        border-radius: 0;
        margin: 0;
        transition: all 0.2s ease;
    }

    .submenu-item:hover {
        padding-left: 20px;
        color: #00B4B4;
        background: rgba(0, 180, 180, 0.06);
    }

    .submenu-item:active {
        background: rgba(0, 180, 180, 0.12);
    }

    /* ── Layout Adjustments ── */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE BREAKPOINT (≤768px) ===== */
@media (max-width: 768px) {

    /* ── Global Mobile Polish ── */
    .container {
        padding: 0 24px;
    }

    /* ── Header ── */
    .navbar {
        height: 70px;
    }

    .logo img {
        height: 85px;
    }

    .nav-links {
        top: 70px;
        height: calc(100vh - 70px);
    }

    /* ── Hero Section — Premium Mobile ── */
    .hero {
        padding: 50px 0 60px;
        background: linear-gradient(160deg, #EAF6FF 0%, #F0F8FF 60%, #fff 100%);
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
        gap: 30px;
    }

    .hero-content {
        padding: 0;
        width: 100%;
    }

    .offer-badge {
        font-size: 11px;
        padding: 8px 20px;
        margin-bottom: 20px;
        animation: pulseGlow 2.5s ease-in-out infinite;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 0 auto 28px;
        max-width: 340px;
        line-height: 1.7;
        color: #666;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 15px 30px;
        font-size: 14px;
        border-radius: 14px;
        font-weight: 800;
        letter-spacing: 0.5px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-hero {
        background: linear-gradient(135deg, #0054A6, #0066CC);
    }

    .btn-hero-secondary {
        background: linear-gradient(135deg, #E6007E, #FF1493);
    }

    .btn-hero:active,
    .btn-hero-secondary:active {
        transform: scale(0.97);
    }

    .hero-visual {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
        overflow: visible;
    }

    .hero-poster {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .poster-blob {
        width: 260px;
        height: 260px;
    }

    .product-main {
        height: 270px;
    }

    .product-secondary {
        height: 200px;
        right: -5px;
        bottom: -5px;
    }

    /* ── USP Bar — 2×2 Grid ── */
    .usp-bar {
        padding: 24px 0;
        background: linear-gradient(135deg, #E0F2D5 0%, #D4EDDA 100%);
    }

    .usp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .usp-item {
        flex-direction: column;
        gap: 8px;
        font-size: 10px;
        letter-spacing: 0.8px;
        padding: 14px 8px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 14px;
        text-align: center;
        justify-content: center;
        border: 1px solid rgba(63, 126, 52, 0.08);
    }

    .usp-item i {
        font-size: 22px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(63, 126, 52, 0.12);
        border-radius: 50%;
        color: var(--brand-green-text);
        margin: 0 auto;
    }

    /* ── Product Spotlights — Card Style ── */
    .product-spotlight {
        padding: 50px 0;
    }

    .spotlight-alcelac,
    .spotlight-ones {
        margin: 0;
    }

    .split-layout {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .reverse-layout {
        flex-direction: column;
        display: flex;
    }

    .split-text {
        padding: 0 8px;
    }

    .split-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .product-spotlight h2 {
        font-size: 28px;
    }

    .product-spotlight p {
        font-size: 15px;
        line-height: 1.7;
    }

    .spotlight-badge {
        font-size: 11px;
        padding: 8px 22px;
        margin-bottom: 12px;
    }

    .spotlight-tagline {
        font-size: 13px !important;
    }

    .spotlight-img {
        order: -1;
    }

    .spotlight-img img {
        max-width: 85%;
        max-height: 280px;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-list {
        margin-bottom: 28px;
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list li {
        justify-content: flex-start;
        margin-bottom: 12px;
        font-size: 14px;
        gap: 10px;
        padding: 8px 14px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .feature-list li i {
        font-size: 16px;
        flex-shrink: 0;
    }

    .btn-spotlight {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
        padding: 16px 30px;
        font-size: 14px;
        border-radius: 14px;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-alcelac {
        background: linear-gradient(135deg, #A03030, #C04040);
    }

    .btn-ones {
        background: linear-gradient(135deg, #0054A6, #0066CC);
        color: #fff;
        box-shadow: 0 8px 24px rgba(0, 84, 166, 0.25);
    }

    .btn-spotlight:active {
        transform: scale(0.97);
    }

    /* ── About Section — Premium Cards ── */
    .about-section {
        padding: 50px 0;
    }

    .about-section .split-layout {
        flex-direction: column;
        gap: 30px;
    }

    .mobile-title.about-main-heading {
        font-size: 30px;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 16px;
    }

    .mobile-title.about-main-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue));
        border-radius: 2px;
    }

    .about-section .split-text h2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .about-section .split-text p {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 28px;
    }

    .about-card {
        padding: 24px 20px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 84, 166, 0.06);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        display: flex;
        align-items: center;
        gap: 18px;
        text-align: left;
    }

    .about-card .icon-box {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 16px;
        font-size: 24px;
        margin: 0;
        background: linear-gradient(135deg, #EAF6FF, #E0F2D5);
        box-shadow: 0 4px 12px rgba(0, 84, 166, 0.08);
    }

    .about-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .about-card p {
        font-size: 13px;
        margin-bottom: 0;
    }

    .about-img {
        order: -1;
    }

    .about-img img {
        max-width: 80%;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .about-blob {
        display: none;
    }

    /* ── Contact Section — Premium Cards ── */
    .contact-section {
        padding: 50px 0;
    }

    .contact-header {
        margin-bottom: 36px;
    }

    .contact-header h2 {
        font-size: 28px;
        position: relative;
        padding-bottom: 16px;
    }

    .contact-header h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue));
        border-radius: 2px;
    }

    .contact-header p {
        font-size: 14px;
        margin-top: 12px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-item {
        padding: 24px 16px;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 84, 166, 0.05);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .contact-item:active {
        transform: scale(0.97);
    }

    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin: 0 auto 12px;
        background: linear-gradient(135deg, var(--brand-blue), #0077CC);
        box-shadow: 0 6px 16px rgba(0, 84, 166, 0.2);
    }

    .contact-item h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-item p {
        font-size: 12px;
        line-height: 1.5;
        word-break: break-word;
    }

    /* ── Footer — Polished ── */
    footer {
        padding: 40px 0 16px;
        border-top-width: 4px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding-bottom: 30px;
    }

    .footer-col {
        padding-right: 0;
        margin-bottom: 28px;
    }

    .footer-col:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        padding-bottom: 28px;
    }

    .brand-col {
        padding-right: 0;
    }

    .brand-col .logo {
        font-size: 22px;
    }

    .brand-col p {
        font-size: 13px;
        max-width: 320px;
        margin: 0 auto 20px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 16px;
        letter-spacing: 1.5px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background: var(--brand-pink);
        border-radius: 1px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 13px;
        padding: 4px 0;
        display: inline-block;
    }

    .social-links {
        justify-content: center;
        gap: 12px;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border: none;
        background: linear-gradient(135deg, rgba(230, 0, 126, 0.08), rgba(0, 84, 166, 0.08));
        color: var(--brand-blue);
        box-shadow: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .social-links a:hover,
    .social-links a:active {
        background: linear-gradient(135deg, var(--brand-pink), #FF1493);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(230, 0, 126, 0.25);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 16px;
        font-size: 12px;
    }

    .developer-credit {
        font-size: 11px;
        opacity: 0.7;
    }

    .developer-credit a {
        color: var(--brand-pink) !important;
    }

    /* ── Heading Utilities ── */
    .mobile-title {
        display: block;
        text-align: center;
        font-size: 30px;
        margin-bottom: 16px;
    }

    .desktop-title {
        display: none;
    }

    /* ── Product Grid ── */
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SMALL MOBILE BREAKPOINT (≤400px) ===== */
@media (max-width: 400px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .cta-group {
        max-width: 280px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .usp-item {
        font-size: 9px;
        padding: 12px 6px;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-card .icon-box {
        margin: 0 auto;
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #20BA5A);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #20BA5A, #1a9e4c);
    transform: scale(1.1) translateY(-3px);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}