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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    /* Core palette — deep ink navy + warm brass/gold, matching the logo */
    --ink: #0b1f3a;
    --ink-deep: #071328;
    --ink-soft: #16305a;
    --brass: #b8873f;
    --brass-light: #d4af6a;
    --brass-pale: #f3e6cd;
    --cream: #faf7f1;
    --paper: #ffffff;
    --stone-50: #f7f6f3;
    --stone-100: #efeee9;
    --stone-200: #e2e0d8;
    --text-ink: #16213a;
    --text-muted: #5c6478;
    --text-faint: #8b91a3;
    --line: #e6e3da;
    --line-soft: rgba(11, 31, 58, 0.08);
    --shadow-sm: 0 2px 8px rgba(11, 20, 40, 0.05);
    --shadow-md: 0 8px 30px rgba(11, 20, 40, 0.08);
    --shadow-lg: 0 20px 60px rgba(11, 20, 40, 0.12);
    --shadow-brass: 0 10px 30px rgba(184, 135, 63, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-ink);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-color: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    margin: 0;
    padding: 0;
}

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

video {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', 'Inter', serif;
}

a {
    color: inherit;
}

::selection {
    background: var(--brass-light);
    color: var(--ink);
}

/* Language-specific fonts */
[lang="ar"] {
    font-family: 'Cairo', 'Inter', sans-serif;
}

[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4 {
    font-family: 'Cairo', 'Inter', sans-serif;
}

[lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

[lang="hi"] h1, [lang="hi"] h2, [lang="hi"] h3, [lang="hi"] h4 {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

[lang="zh"] {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
}

[lang="zh"] h1, [lang="zh"] h2, [lang="zh"] h3, [lang="zh"] h4 {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .section-title::after,
[dir="rtl"] .section-eyebrow::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .inquiry-form-container {
    right: auto;
    left: -440px;
    border-left: none;
    border-right: 1px solid var(--line);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

[dir="rtl"] .inquiry-form-container.active {
    left: 0;
}

[dir="rtl"] .inquiry-form-tab {
    right: auto;
    left: -210px;
    transform: translateY(-50%) rotate(90deg);
}

[dir="rtl"] .inquiry-form-tab:hover {
    left: -190px;
}

[dir="rtl"] .product-features li::before {
    margin-left: 0.6rem;
}

[dir="rtl"] .footer-contact,
[dir="rtl"] .footer-section p {
    flex-direction: row-reverse;
}

/* ============ Language Switcher ============ */
.language-switcher {
    position: relative;
    display: inline-block;
}

.lang-button {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-ink);
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.lang-button:hover {
    border-color: var(--brass);
    color: var(--brass);
    background: var(--brass-pale);
}

.lang-button i {
    font-size: 0.85rem;
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s var(--ease);
    z-index: 1000;
    overflow: hidden;
    padding: 0.4rem;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.lang-option:hover {
    background: var(--stone-50);
}

.lang-option.active {
    background: var(--ink);
    color: var(--paper);
}

.lang-option.active:hover {
    background: var(--ink-soft);
}

.lang-flag {
    font-size: 1.1rem;
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

/* ============ Header & Navigation ============ */
header {
    background: rgba(250, 247, 241, 0.85);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

nav {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-container a:hover {
    opacity: 0.85;
}

.logo-img {
    max-height: 58px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s var(--ease);
}

.logo-container a:hover .logo-img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.75rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-ink);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brass);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brass);
    transition: width 0.35s var(--ease);
    border-radius: 2px;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero.hero-compact {
    min-height: auto;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    z-index: 0;
    filter: saturate(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(184, 135, 63, 0.22), transparent 60%),
        linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 45%, var(--ink-soft) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass-light), transparent);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    padding: 7rem 2rem 6rem;
    text-align: center;
}

.hero-compact .hero-content {
    padding: 4.5rem 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(212, 175, 106, 0.35);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass-light);
    margin-bottom: 1.75rem;
    background: rgba(212, 175, 106, 0.08);
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.1s forwards;
}

.hero-eyebrow i {
    font-size: 0.7rem;
}

.hero-motto {
    font-family: 'Noto Sans Devanagari', 'Fraunces', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--brass-light);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.18s forwards;
}

.hero-motto-translation {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(250, 247, 241, 0.55);
    letter-spacing: 0.02em;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.22s forwards;
}

.hero h1 {
    font-size: clamp(2.75rem, 5.5vw, 4.75rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--paper);
    letter-spacing: -0.02em;
    line-height: 1.08;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.25s forwards;
}

.hero-compact h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.hero h1 em {
    font-style: italic;
    color: var(--brass-light);
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: rgba(250, 247, 241, 0.72);
    font-weight: 400;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}

.hero .hero-tagline {
    font-size: 1.05rem;
    color: rgba(250, 247, 241, 0.6);
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.hero-compact .hero-tagline {
    margin: 0 auto;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.55s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brass-light), var(--brass));
    color: var(--ink-deep);
    box-shadow: var(--shadow-brass);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(184, 135, 63, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Trust strip below hero */
.trust-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 2.5rem 3rem;
}

.trust-strip-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.trust-stat .num {
    font-family: 'Fraunces', serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.trust-stat .label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* ============ Section Styles ============ */
section {
    padding: 7rem 3rem;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 1rem;
}

.section-head {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.1rem, 3.5vw, 2.85rem);
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0;
    position: relative;
    display: block;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    max-width: 700px;
    line-height: 1.8;
    margin-top: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

/* ============ Trade Terms Section ============ */
.trade-terms {
    background: var(--stone-50);
    border-radius: var(--radius-lg);
}

.incoterms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.incoterm-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
    text-align: center;
}

.incoterm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--brass-light);
}

.incoterm-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brass-pale);
    color: var(--brass);
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
}

.incoterm-abbr {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.incoterm-name {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

/* ============ Payment Options Section ============ */
.payment-options {
    background: var(--paper);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.payment-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--brass);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.payment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--line);
}

.payment-card:hover::before {
    transform: scaleY(1);
}

.payment-icon {
    font-size: 1.6rem;
    color: var(--brass);
    margin-bottom: 1.25rem;
}

.payment-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    line-height: 1.5;
}

[dir="rtl"] .payment-text {
    text-align: right;
}

.payment-note {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--brass-pale);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--ink);
    font-size: 0.95rem;
    max-width: 900px;
}

.payment-note strong {
    font-weight: 500;
}

/* ============ Products Section ============ */
.products-section {
    background: var(--paper);
    padding: 7rem 3rem;
    width: 100%;
    box-sizing: border-box;
}

.category-container {
    margin-bottom: 5.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.category-container:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.category-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    position: relative;
    width: auto;
    box-sizing: border-box;
    letter-spacing: -0.01em;
}

.category-count {
    font-size: 0.82rem;
    color: var(--text-faint);
    font-weight: 500;
    letter-spacing: 0.04em;
}

[dir="rtl"] .category-title {
    text-align: right;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.product-card {
    background: var(--paper);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.45s var(--ease);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--line);
}

.product-image {
    width: 100%;
    height: 240px;
    background: var(--stone-50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
    border: none;
    outline: none;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stone-50);
    color: var(--text-faint);
    font-size: 3rem;
}

.product-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.product-description {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-size: 0.94rem;
}

.product-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--brass-pale);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-features li {
    padding: 0.35rem 0.75rem;
    color: var(--text-ink);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--stone-50);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
}

.product-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brass);
    flex-shrink: 0;
}

.product-button {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.product-button:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
}

/* ============ Category Tiles (Products Page) ============ */
.category-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    width: 100%;
    box-sizing: border-box;
}

.category-tile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-align: left;
    position: relative;
    overflow: hidden;
}

[dir="rtl"] .category-tile {
    text-align: right;
    align-items: flex-end;
}

.category-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brass-pale) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.category-tile:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brass-light);
}

.category-tile:hover::before {
    opacity: 1;
}

.category-tile-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--brass-pale);
    color: var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
}

.category-tile-name {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.category-tile-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.category-tile-arrow {
    margin-top: 0.5rem;
    color: var(--brass);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.category-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    transition: color 0.25s ease;
}

.category-back-btn:hover {
    color: var(--brass);
}

[dir="rtl"] .category-back-btn i {
    transform: scaleX(-1);
}

.products-view {
    display: none;
}

.products-view.active {
    display: block;
}

.category-tiles-view.hidden {
    display: none;
}

/* ============ Product Inquiry Form ============ */
.inquiry-form-tab {
    position: fixed;
    right: -210px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: var(--ink);
    color: var(--paper);
    padding: 1rem 2rem;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    z-index: 999;
    transition: right 0.35s var(--ease);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    max-width: none;
}

.inquiry-form-tab:hover {
    right: -190px;
    background: var(--ink-soft);
}

.inquiry-form-container {
    position: fixed;
    right: -440px;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    max-width: 90vw;
    background: var(--paper);
    box-shadow: -10px 0 50px rgba(11, 20, 40, 0.18);
    z-index: 1001;
    transition: right 0.5s var(--ease);
    padding: 2.75rem;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border-left: 1px solid var(--line);
    max-height: 88vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.inquiry-form-container.active {
    right: 0;
}

/* ============ WhatsApp Floating Button ============ */
.whatsapp-fab {
    position: fixed;
    left: 1.75rem;
    bottom: 1.75rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 998;
    text-decoration: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

[dir="rtl"] .whatsapp-fab {
    left: auto;
    right: 1.75rem;
}

@media (max-width: 768px) {
    .whatsapp-fab {
        left: 1.25rem;
        bottom: 1.25rem;
        width: 54px;
        height: 54px;
        font-size: 1.75rem;
    }

    [dir="rtl"] .whatsapp-fab {
        left: auto;
        right: 1.25rem;
    }
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--ink);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.close-form {
    background: var(--stone-50);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.close-form:hover {
    background: var(--ink);
    color: var(--paper);
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-ink);
    font-weight: 500;
    font-size: 0.88rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.25s ease;
    background: var(--stone-50);
    color: var(--text-ink);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brass);
    background: var(--paper);
}

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

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--ink);
    color: var(--paper);
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.submit-btn:hover {
    background: var(--ink-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============ Footer ============ */
footer {
    background: var(--ink-deep);
    color: var(--paper);
    padding: 5rem 3rem 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 106, 0.4), transparent);
}

.footer-content {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: -0.01em;
}

.footer-section p {
    color: rgba(250, 247, 241, 0.65);
    line-height: 1.9;
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.footer-section p i {
    color: var(--brass-light);
    margin-top: 0.2rem;
    min-width: 18px;
    flex-shrink: 0;
}

.footer-section a {
    color: rgba(250, 247, 241, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brass-light);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(250, 247, 241, 0.45);
    font-size: 0.85rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(250, 247, 241, 0.65);
    font-size: 0.92rem;
}

.footer-contact i {
    color: var(--brass-light);
}

/* ============ Responsive Design ============ */
@media (max-width: 1024px) {
    nav {
        padding: 0 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.75rem;
    }

    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    nav {
        padding: 0 1.5rem;
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: var(--paper);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 2rem 2rem;
        box-shadow: -8px 0 30px rgba(11, 20, 40, 0.15);
        transition: right 0.4s var(--ease);
        gap: 1.5rem;
        z-index: 999;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 0.85rem 0;
        font-size: 1.05rem;
    }

    .language-switcher {
        width: 100%;
    }

    .lang-button {
        width: 100%;
        justify-content: space-between;
    }

    .lang-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--line);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 5.5rem 1.5rem 4rem;
    }

    .hero-compact .hero-content {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p:first-of-type {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .trust-strip {
        padding: 2rem 1.5rem;
    }

    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1rem;
    }

    .trust-stat .num {
        font-size: 1.6rem;
    }

    section {
        padding: 4.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .products-section {
        padding: 4.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .category-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        width: 100%;
        max-width: 100%;
    }

    .category-tiles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .incoterms-grid,
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.25rem;
    }

    .inquiry-form-container {
        width: 100%;
        max-width: 100%;
        right: -100%;
        border-radius: 0;
        padding: 2rem 1.5rem;
    }

    .inquiry-form-container.active {
        right: 0;
    }

    .inquiry-form-tab {
        display: none;
    }

    .category-container {
        width: 100%;
        max-width: 100%;
        margin-bottom: 4rem;
    }

    .incoterms-grid,
    .payment-grid {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    nav {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    .logo-img {
        max-height: 46px;
        max-width: 100%;
    }

    .hero-content {
        padding: 4.5rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p:first-of-type {
        font-size: 1.1rem;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
    }

    section {
        padding: 3.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .products-section {
        padding: 3.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .category-title {
        font-size: 1.3rem;
    }

    .product-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .product-image {
        height: 200px;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.15rem;
    }

    .incoterm-card {
        padding: 1.75rem 1.25rem;
    }

    .incoterm-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .incoterm-abbr {
        font-size: 1.2rem;
    }

    .payment-text {
        font-size: 0.9rem;
    }

    footer {
        padding: 3.5rem 1.5rem 2rem;
    }

    .footer-section p {
        font-size: 0.88rem;
        flex-wrap: wrap;
    }

    .footer-section p i {
        min-width: 16px;
    }

    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-subtitle {
        width: 100%;
        max-width: 100%;
    }
}
