/* ANISE NUTRITION & WELLNESS HOME STYLECSS */

/* --- Import Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* --- Design Tokens / Variables --- */
:root {
    --font-heading: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    --font-body: 'Google Sans', 'Google Sans Hebrew', sans-serif;
    --font-button: 'Open Sans', 'Google Sans Hebrew', sans-serif;
    
    /* Color Palette matching a3.jpeg */
    --color-navy: #253047;
    --color-blue-grey: #809BAC;
    --color-terracotta: #C98971;
    --color-bg-light: #FAF9F6;
    --color-bg-white: #FFFFFF;
    
    /* Alert / Success Colors */
    --color-green: #25D366;
    --color-green-dark: #128C7E;
    
    /* Layout Details */
    --max-width: 1200px;
    --border-light: 1px solid rgba(37, 48, 71, 0.08);
    --border-medium: 1px solid rgba(37, 48, 71, 0.15);
    --shadow-soft: 0 10px 30px rgba(37, 48, 71, 0.03);
    --shadow-medium: 0 15px 40px rgba(37, 48, 71, 0.06);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets & General Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-navy);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

/* LTR directional safety container for phone numbers and codes */
.ltr-dir {
    direction: ltr;
    display: inline-block;
}

.max-width-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
    text-wrap: balance;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Accessibility Skip Link --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-navy);
    color: var(--color-bg-light);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.2s;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.skip-link:focus {
    top: 0;
}

/* --- Sticky/Floating Navigation Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-light);
    z-index: 1000;
    transition: var(--transition-normal);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(250, 249, 246, 0.95);
    box-shadow: 0 4px 20px rgba(37, 48, 71, 0.04);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo */
.logo-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--color-navy);
    position: relative;
    padding-bottom: 2px;
}

.logo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-terracotta);
    border-radius: 50%;
    margin-right: 2px;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-blue-grey);
    margin-top: 2px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-navy);
    opacity: 0.8;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Desktop Header Contact Cluster & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-whatsapp-link {
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: var(--border-light);
    background-color: var(--color-bg-white);
}

.header-whatsapp-link:hover {
    color: var(--color-green);
    border-color: rgba(37, 211, 102, 0.3);
    background-color: rgba(37, 211, 102, 0.05);
    transform: translateY(-2px);
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
}

.header-phone-link:hover {
    color: var(--color-terracotta);
}

.header-phone-icon,
.action-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    font-family: var(--font-button);
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    padding: 10px 24px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--color-navy);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Hamburger menu button (Mobile only) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-navy);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 48, 71, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--color-bg-white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250, 249, 246, 0.85);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-secondary {
    font-family: var(--font-button);
    background-color: transparent;
    color: var(--color-bg-white);
    padding: 10px 24px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(250, 249, 246, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--color-bg-white);
    background-color: rgba(250, 249, 246, 0.08);
}

/* --- Section Global Layouts --- */
.section-padding {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: var(--border-light);
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-navy);
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-blue-grey);
    margin-bottom: 12px;
}

/* --- Collection Grid --- */
.collection-tabs {
    display: flex;
    list-style: none;
    gap: 24px;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-button);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    opacity: 0.6;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -21px; /* Align with header border-bottom */
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-navy);
    transition: var(--transition-fast);
}

.tab-btn:hover {
    opacity: 1;
}

.tab-btn.active {
    opacity: 1;
}

.tab-btn.active::after {
    width: 100%;
}

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

/* Product Card design */
.product-card {
    background-color: var(--color-bg-white);
    border: var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(128, 155, 172, 0.3);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #FAF9F6;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-terracotta);
    color: var(--color-bg-white);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-blue-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-rating {
    display: flex;
    gap: 2px;
    color: #FBBF24;
}

.product-rating svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-navy);
}

.product-desc {
    font-size: 14px;
    color: rgba(37, 48, 71, 0.7);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: var(--border-light);
    padding-top: 16px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-card-cart {
    background-color: var(--color-bg-light);
    border: var(--border-light);
    color: var(--color-navy);
    width: 40px;
    height: 40px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-card-cart:hover {
    background-color: rgba(37, 48, 71, 0.05);
    color: var(--color-navy);
}

.btn-card-buy {
    font-family: var(--font-button);
    background-color: var(--color-navy);
    border: 1px solid var(--color-navy);
    color: var(--color-bg-white);
    padding: 0 16px;
    height: 40px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-card-buy:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

/* --- Featured 2x2 Bento Grid --- */
.featured-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1.15 / 1;
    background-color: var(--color-bg-white);
    border: var(--border-light);
}

.bento-card-image {
    width: 100%;
    height: 100%;
}

.bento-card-image img {
    width: 100%;
    height: 100%;
    transition: transform 8s ease;
}

.bento-card:hover .bento-card-image img {
    transform: scale(1.04);
}

.bento-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(37, 48, 71, 0.8) 0%, rgba(37, 48, 71, 0) 60%);
    z-index: 2;
}

.bento-card-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 40px;
    z-index: 3;
    color: var(--color-bg-white);
}

.bento-card-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    margin-bottom: 12px;
}

.bento-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-bg-white);
    line-height: 1.3;
}

/* --- Floating Banner Section ("Empower Your Aura") --- */
.floating-banner-section {
    background-color: var(--color-blue-grey);
    color: var(--color-bg-white);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.floating-banner-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.floating-banner-tag {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(250, 249, 246, 0.8);
    margin-bottom: 16px;
}

.floating-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-bg-white);
    margin-bottom: 20px;
}

.floating-banner-desc {
    font-size: 16px;
    color: rgba(250, 249, 246, 0.85);
    line-height: 1.6;
}

/* Floating collage */
.floating-collage-wrapper {
    position: relative;
    height: 380px;
    max-width: 1000px;
    margin: 0 auto;
}

.collage-item {
    position: absolute;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(37, 48, 71, 0.15);
    background-color: var(--color-bg-white);
    border: 4px solid var(--color-bg-white);
    transition: var(--transition-normal);
}

.collage-item:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 10 !important;
    box-shadow: 0 30px 60px rgba(37, 48, 71, 0.25);
}

.collage-item img {
    width: 100%;
    height: 100%;
}

/* Position mapping matching layout in a5.png banner */
.collage-item-1 {
    width: 260px;
    height: 260px;
    top: 50px;
    right: 5%;
    z-index: 1;
}

.collage-item-2 {
    width: 220px;
    height: 220px;
    bottom: 20px;
    right: 32%;
    z-index: 2;
}

.collage-item-3 {
    width: 200px;
    height: 200px;
    top: 20px;
    left: 32%;
    z-index: 3;
}

.collage-item-4 {
    width: 240px;
    height: 240px;
    bottom: 50px;
    left: 5%;
    z-index: 2;
}

/* --- Contact & Lead Capture Form --- */
.contact-section {
    background-color: var(--color-bg-white);
    border-top: var(--border-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header-text {
    margin-bottom: 40px;
}

.contact-header-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-header-text p {
    font-size: 16px;
    color: rgba(37, 48, 71, 0.7);
}

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

.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(201, 137, 113, 0.06);
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 15px;
    color: rgba(37, 48, 71, 0.8);
}

.contact-item-text a:hover {
    color: var(--color-terracotta);
}

/* Form Styling */
.contact-form-card {
    background-color: var(--color-bg-light);
    border: var(--border-light);
    border-radius: var(--radius-sm);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-navy);
}

.form-input {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-navy);
    background-color: var(--color-bg-white);
    border: var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    outline: none;
    transition: var(--transition-fast);
    direction: rtl;
}

.form-input:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(37, 48, 71, 0.05);
}

textarea.form-input {
    resize: none;
    height: 120px;
}

/* Form success box */
.form-success-message {
    display: none;
    background-color: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    color: var(--color-green-dark);
}

.form-success-message svg {
    width: 48px;
    height: 48px;
    color: var(--color-green);
    margin: 0 auto 16px;
}

.form-success-message h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--color-green-dark);
}

.form-success-message p {
    font-size: 14px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.1);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .logo-text {
    color: var(--color-bg-white);
}

.footer-brand .logo-sub {
    color: var(--color-bg-light);
    opacity: 0.6;
}

.footer-brand-desc {
    font-size: 14px;
    color: rgba(250, 249, 246, 0.7);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(250, 249, 246, 0.05);
    color: var(--color-bg-white);
    border: 1px solid rgba(250, 249, 246, 0.1);
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-bg-white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(250, 249, 246, 0.7);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-terracotta);
    padding-right: 4px;
}

.footer-address {
    font-style: normal;
    font-size: 14px;
    color: rgba(250, 249, 246, 0.7);
    line-height: 1.8;
}

.footer-address strong {
    color: var(--color-bg-white);
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(250, 249, 246, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: rgba(250, 249, 246, 0.5);
}

.footer-bottom-link:hover {
    color: var(--color-terracotta);
}

/* --- Toast Notification Alert (JS Mockups) --- */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(37, 48, 71, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    pointer-events: auto;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    border-right: 4px solid var(--color-terracotta);
}

.toast.removing {
    animation: fadeOut 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast-icon {
    width: 20px;
    height: 20px;
    color: var(--color-terracotta);
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}


/* ==========================================================================
   CONVERSION WIDGETS (Required by DESIGN_SYSTEMS.md)
   ========================================================================== */

/* --- 1. Desktop Bottom-Left Fixed WhatsApp Widget --- */
.desktop-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    color: var(--color-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-fast);
}

.desktop-whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* Pulsing Outer Wave Ring Animation */
.desktop-whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    animation: whatsappRipple 2s infinite ease-in-out;
    z-index: -1;
    opacity: 0.8;
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.float-icon {
    width: 28px;
    height: 28px;
}

/* --- 2. Mobile Floating Capsule Actions Dock --- */
.mobile-action-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 320px;
    height: 64px;
    border-radius: 32px;
    display: none; /* STRICTLY HIDDEN ON DESKTOP BY DEFAULT */
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(37, 48, 71, 0.15);
}

.mobile-action-bar-container {
    height: 100%;
    width: 100%;
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(250, 249, 246, 0.4);
    border-radius: 32px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 12px;
}

.action-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    background-color: transparent;
    transition: var(--transition-fast);
}

.action-item:hover, .action-item:focus {
    background-color: rgba(37, 48, 71, 0.05);
}

.action-item.highlight {
    background-color: var(--color-navy);
    color: var(--color-bg-white);
    box-shadow: 0 4px 15px rgba(37, 48, 71, 0.2);
}

.action-item.highlight:hover {
    background-color: var(--color-terracotta);
    box-shadow: 0 4px 15px rgba(201, 137, 113, 0.3);
}

.action-icon {
    width: 22px;
    height: 22px;
}

/* --- 3. Safety CSS Rule for Solid Fills --- */
/* Failsafe SVG Fills: Guarantees solid-filled icons do not render as messy overlapping outlines */
.header-whatsapp-icon,
.header-whatsapp-icon path,
.desktop-whatsapp-float svg,
.desktop-whatsapp-float svg path,
.mobile-action-bar svg[fill="currentColor"],
.mobile-action-bar svg[fill="currentColor"] path,
.social-links svg,
.social-links svg path,
.social-link svg,
.social-link svg path {
    fill: currentColor !important;
    stroke: none !important;
}


/* ==========================================================================
   RESPONSIVENESS / MEDIA QUERIES
   ========================================================================== */

/* Large screens viewport */
@media (max-width: 1200px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* Tablets and landscape mobiles */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .featured-bento-grid {
        gap: 20px;
    }
    
    .bento-card-content {
        padding: 24px;
    }
    
    .bento-card-title {
        font-size: 22px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .floating-collage-wrapper {
        height: 260px;
    }
    
    .collage-item-1 {
        width: 180px;
        height: 180px;
    }
    
    .collage-item-2 {
        width: 150px;
        height: 150px;
        right: 32%;
    }
    
    .collage-item-3 {
        width: 140px;
        height: 140px;
        left: 32%;
    }
    
    .collage-item-4 {
        width: 160px;
        height: 160px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px; /* Mandatory padding offset when mobile actions dock is active */
    }
    
    .desktop-whatsapp-float {
        display: none !important; /* Always hidden on mobile viewports */
    }
    
    .mobile-action-bar {
        display: block; /* Visible ONLY on mobile/tablet viewports */
    }
    
    /* Navigation menu drawer style */
    .main-header {
        height: 70px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-bg-light);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-normal);
        border-top: var(--border-light);
        box-shadow: 0 10px 30px rgba(37, 48, 71, 0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .header-actions {
        display: none; /* Hide header contacts on mobile, handled by mobile dock */
    }
    
    /* Hero section adjust */
    .hero {
        height: 80vh;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .collection-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 16px;
    }
    
    .tab-btn::after {
        bottom: -11px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        aspect-ratio: 1.3 / 1;
    }
    
    .floating-banner-title {
        font-size: 34px;
    }
    
    .floating-collage-wrapper {
        display: none; /* Hide floating collage on mobile to save space */
    }
    
    .floating-banner-section {
        padding: 60px 0;
    }
    
    .floating-banner-content {
        margin-bottom: 0;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

/* --- Trust Features Bar --- */
.trust-features-bar {
    background-color: var(--color-navy);
    color: var(--color-bg-light);
    padding: 24px 0;
    border-bottom: 1px solid rgba(250, 249, 246, 0.1);
    z-index: 10;
    position: relative;
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    padding: 0 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.trust-item:hover {
    transform: translateY(-2px);
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.trust-item:hover .trust-icon {
    animation: iconPulse 1s ease-in-out infinite;
    color: var(--color-terracotta);
}

.trust-icon {
    width: 28px;
    height: 28px;
    color: rgba(250, 249, 246, 0.8);
    transition: var(--transition-fast);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: 12px;
    color: rgba(250, 249, 246, 0.6);
    margin-top: 2px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(250, 249, 246, 0.15);
}

/* Mobile responsive for trust bar */
@media (max-width: 768px) {
    .trust-bar-container {
        flex-direction: column;
        gap: 20px;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        width: 100%;
        text-align: right;
        justify-content: flex-start;
        padding-right: 20%;
    }
}
