/* ============================================================
   Unikoll Brochure — Ayurvedic & Herbal Products
   Full Webpage Redesign — Aligned with unikoll.com
   ============================================================ */
@import url('https://fonts.cdnfonts.com/css/utendo');

:root {
    --primary: #00d2d3;
    --primary-dark: #01a3a4;
    --secondary: #2d3436;
    --navy: #1e272e;
    --accent: #55efc4;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --white: #ffffff;
    --bg-light: #f7f9fa;
    --border: #dfe6e9;

    --font: 'Utendo', sans-serif;
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 999px;

    --sh-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --sh-md: 0 10px 20px -4px rgba(0, 0, 0, 0.09);
    --sh-lg: 0 20px 30px -6px rgba(0, 0, 0, 0.12);
    --sh-glow: 0 0 24px rgba(0, 210, 211, 0.28);

    --ease: 0.3s ease;
    --ease-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--ease);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

/* ====================  FADE IN ANIMATION  ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================  BUTTONS  ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 28px;
    font-weight: 600;
    font-family: var(--font);
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    font-size: 0.92rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary);
    color: var(--navy);
    box-shadow: var(--sh-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--sh-glow);
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--navy);
}

.btn-white:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-ghost-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* ====================  EYEBROW + TITLES  ==================== */
.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.teal-eyebrow {
    color: var(--accent);
}

.navy-eyebrow {
    color: var(--navy);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--primary);
    border-radius: var(--r-full);
}

.light-title {
    color: #fff;
}

.light-title::after {
    background: var(--accent);
}

.navy-title {
    color: var(--navy);
}

.navy-title::after {
    background: var(--navy);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 24px auto 0;
    line-height: 1.7;
}

.light-sub {
    color: rgba(255, 255, 255, 0.8);
}

.navy-sub {
    color: rgba(30, 39, 46, 0.75);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ====================  NAVBAR  ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--ease), background var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav-logo img {
    height: 52px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 9px 20px;
    font-size: 0.88rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

.nav-links.open {
    display: flex;
}

/* ====================  HERO  ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 39, 46, 0.92) 0%, rgba(30, 39, 46, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 80px;
    max-width: 700px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.text-teal {
    color: var(--primary);
    font-weight: 800;
}

.hero-desc {
    font-size: 1.15rem;
    opacity: 0.88;
    max-width: 540px;
    margin-bottom: 38px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-small-img {
    width: 140px;
    height: 80px;
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 0;
}

.hero-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

/* ====================  BRAND STRIP  ==================== */
.brand-strip {
    background: var(--primary);
    padding: 18px 0;
}

.brand-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 32px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.strip-item i {
    font-size: 1.3rem;
}

.strip-divider {
    width: 1px;
    height: 28px;
    background: rgba(30, 39, 46, 0.2);
}

/* ====================  SECTION BACKGROUNDS  ==================== */
.light-section {
    background: var(--white);
}

.light-section:nth-child(even) {
    background: var(--bg-light);
}

.dark-section {
    background: var(--secondary);
}

.teal-section {
    background: var(--primary);
}

.featured-section {
    background: var(--bg-light);
}

.why-section {
    background: var(--white);
}

/* ====================  PRODUCT GRID  ==================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.product-grid-lg {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.product-grid-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.product-grid-flex>.product-card {
    flex: 1 1 220px;
}

.product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* ====================  PRODUCT CARDS  ==================== */
.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg), var(--sh-glow);
    border-color: rgba(0, 210, 211, 0.35);
}

.product-img-wrap {
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease-smooth);
    border-radius: 0;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.07);
}

.product-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--navy);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.tag-navy {
    background: var(--navy);
    color: #fff;
}

.product-body {
    padding: 22px;
    flex-grow: 1;
}

.product-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.product-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Dark section cards */
.dark-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-card .product-body h3 {
    color: #fff;
}

.dark-card .product-body p {
    color: rgba(255, 255, 255, 0.72);
}

.dark-card:hover {
    border-color: rgba(0, 210, 211, 0.45);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: var(--sh-lg), var(--sh-glow);
}

/* Teal section cards */
.teal-card {
    background: rgba(30, 39, 46, 0.85);
    border-color: rgba(30, 39, 46, 0.3);
}

.teal-body h3 {
    color: #fff;
}

.teal-body p {
    color: rgba(255, 255, 255, 0.75);
}

.teal-card:hover {
    border-color: rgba(30, 39, 46, 0.7);
    background: rgba(30, 39, 46, 0.95);
    box-shadow: var(--sh-lg);
}

/* Featured card */
.featured-card .product-img-wrap {
    height: 260px;
}

/* ====================  ADDITIONAL PRODUCTS  ==================== */
.additional-row {
    margin-top: 50px;
    padding: 36px;
    background: var(--bg-light);
    border-radius: 0;
    border: 1px solid var(--border);
}

.additional-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.additional-header i {
    font-size: 1.7rem;
    color: var(--primary);
}

.additional-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.additional-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--white);
    border-radius: 0;
    border: 1px solid var(--border);
    transition: transform var(--ease), box-shadow var(--ease);
}

.additional-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: rgba(0, 210, 211, 0.3);
}

.additional-item>i {
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.additional-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.additional-item p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ====================  HAIRCARE ADDITIONAL  ==================== */
.haircare-additional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 44px;
}

.haircare-add-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(30, 39, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 22px;
    transition: var(--ease);
}

.haircare-add-item:hover {
    background: rgba(30, 39, 46, 0.9);
    transform: translateY(-4px);
}

.ha-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--ease);
}

.ha-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.ha-text strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.ha-text p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
    line-height: 1.5;
}

/* ====================  FEATURED PRODUCT  ==================== */
.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sh-lg), var(--sh-glow);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #fff;
    padding: 24px;
    box-sizing: border-box;
    display: block;
}

.featured-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 7px;
}

.featured-text .section-title::after {
    left: 0;
    transform: none;
}

.feature-checklist {
    margin: 20px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.feature-checklist i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* ====================  MEDICAL CATALOG  ==================== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.catalog-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.catalog-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.catalog-block-header i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.catalog-block-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.catalog-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.catalog-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.item-tag {
    display: block;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.catalog-item h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.catalog-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    line-height: 1.5;
}

.assurance-box {
    margin-top: 20px;
    border: 2px solid var(--primary);
    border-radius: 0;
    padding: 22px;
    text-align: center;
    background: rgba(0, 210, 211, 0.06);
}

.assurance-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.assurance-box h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.assurance-box p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ====================  WHY CHOOSE  ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--sh-sm);
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.why-card:hover::before {
    width: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg), var(--sh-glow);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 210, 211, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--ease);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--ease);
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-card:hover .why-icon i {
    color: var(--navy);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ====================  CONTACT SECTION  ==================== */
.contact-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: var(--r-md);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ====================  FOOTER  ==================== */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 60px;
}

.footer-inner {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-col h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.88rem;
}

/* ====================  RESPONSIVE  ==================== */
@media (max-width:1100px) {
    .catalog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:900px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid-lg {
        grid-template-columns: 1fr 1fr;
    }

    .featured-layout {
        grid-template-columns: 1fr;
    }

    .featured-image img {
        height: 340px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .haircare-additional {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 5%;
        box-shadow: var(--sh-md);
        gap: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
    }
}

@media (max-width:600px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .product-grid,
    .product-grid-3,
    .product-grid-lg {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .brand-strip-inner {
        gap: 10px;
    }

    .strip-item {
        padding: 0 16px;
        font-size: 0.85rem;
    }

    .strip-divider {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }
}

/* ====================  PRINT  ==================== */
@media print {
    @page {
        margin: 0.5in;
    }

    .navbar,
    .hero-scroll-hint,
    .cta-strip,
    .mobile-toggle {
        display: none !important;
    }

    .hero {
        height: 50vh;
        min-height: 300px;
    }

    .section {
        padding: 50px 0;
        page-break-inside: avoid;
    }

    body {
        font-size: 12px;
    }
}

/* ====================  PRINT STYLES FOR PDF  ==================== */
@media print {

    /* 1. Reset Base & Remove Animations */
    .fade-in,
    .fade-up,
    .visible {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    * {
        animation: none !important;
        transition: none !important;
    }

    @page {
        size: A4 portrait;
        margin: 15mm;
    }

    /* 2. Color & Typography Scaling */
    html,
    body {
        background-color: #fff !important;
        color: #111 !important;
        font-size: 14pt !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    h2.section-title {
        font-size: 24pt !important;
        margin-bottom: 20px !important;
    }

    h3 {
        font-size: 18pt !important;
    }

    p {
        font-size: 12pt !important;
        line-height: 1.6 !important;
    }

    /* 3. Hide Web-Only Elements */
    .navbar,
    footer,
    .contact-section,
    .btn {
        display: none !important;
    }

    /* 4. Magazine Pagination */
    .hero-section {
        min-height: 250mm !important;
        /* Force near full A4 page for cover */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 0 20mm !important;
        page-break-after: always !important;
        /* Start content on next page */
    }

    .section {
        padding: 10mm 0 !important;
        page-break-before: always !important;
        /* Each section on a new page */
        page-break-inside: avoid !important;
    }

    /* 5. A4 Optimized Grids (Forced 2-Column for Readability) */
    .product-grid,
    .product-grid-lg,
    .product-grid-3,
    .product-grid-flex {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15mm !important;
        page-break-inside: auto !important;
    }

    .product-card {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
        margin-bottom: 5mm !important;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .featured-layout {
        display: flex !important;
        flex-direction: column !important;
        /* Stack vertically for A4 */
        gap: 10mm !important;
        page-break-inside: avoid !important;
    }

    .featured-image img {
        max-height: 100mm !important;
        object-fit: contain !important;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid !important;
    }

    ul,
    ol,
    p {
        page-break-inside: avoid !important;
    }
}