@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap');
:root {
    --matcha-50: #f0f7f0;
    --matcha-100: #dceedd;
    --matcha-200: #b5d8b5;
    --matcha-300: #7bb97c;
    --matcha-400: #4f9a50;
    --matcha-500: #3a7d3b;
    --matcha-600: #2b6330;
    --matcha-700: #1e4d24;
    --matcha-800: #163a1b;
    --matcha-900: #0e2812;
    --gold-400: #d4a853;
    --gold-500: #c49328;
    --gold-600: #a67a1f;
    --cream-50: #fdfbf7;
    --cream-100: #f9f4eb;
    --cream-200: #f0e8d8;

    --bg-primary: #fdfbf7;
    --bg-secondary: #f5f0e6;
    --bg-card: #ffffff;
    --bg-card-hover: #faf7f0;
    --bg-nav: rgba(253, 251, 247, 0.88);
    --bg-footer: #111a12;
    --text-primary: #1a1c18;
    --text-secondary: #5a5d55;
    --text-tertiary: #8a8d82;
    --text-on-accent: #fff;
    --border-light: rgba(26, 28, 24, 0.07);
    --border-medium: rgba(26, 28, 24, 0.13);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    --transition-fast: .2s cubic-bezier(.4, 0, .2, 1);
    --transition-medium: .35s cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0c100c;
    --bg-secondary: #151c15;
    --bg-card: #1a231b;
    --bg-card-hover: #222d23;
    --bg-nav: rgba(12, 16, 12, 0.92);
    --bg-footer: #070a07;
    --text-primary: #e4e6e0;
    --text-secondary: #a0a49a;
    --text-tertiary: #686c64;
    --border-light: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .4);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, .5);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, .6);
}

/* --- View Transition (circle clip reveal) --- */
::view-transition-old(root) {
    animation: none;
    z-index: 1;
    mix-blend-mode: normal
}

::view-transition-new(root) {
    animation: clipReveal .7s ease-in-out;
    z-index: 9999;
    mix-blend-mode: normal
}

@keyframes clipReveal {
    from {
        clip-path: circle(0% at var(--tx, 50%) var(--ty, 50%))
    }

    to {
        clip-path: circle(150% at var(--tx, 50%) var(--ty, 50%))
    }
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
    text-align: right;
    line-height: 1.75;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary)
}

::-webkit-scrollbar-thumb {
    background: var(--matcha-500);
    border-radius: 3px
}

/* --- Layout --- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

.section {
    padding: 110px 0
}

.section-header {
    text-align: center;
    margin-bottom: 64px
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--matcha-50);
    color: var(--matcha-700);
    padding: 7px 20px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: .3px
}

[data-theme="dark"] .section-badge {
    background: rgba(58, 125, 59, .12);
    color: var(--matcha-300)
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    padding: 0 24px;
    transition: box-shadow var(--transition-fast)
}

.navbar.scrolled {
    box-shadow: var(--shadow-md)
}

.navbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--matcha-700)
}

[data-theme="dark"] .navbar-brand {
    color: var(--matcha-300)
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--matcha-500), var(--matcha-700));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 6px
}

.navbar-links a {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast)
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--matcha-700);
    background: var(--matcha-50)
}

[data-theme="dark"] .navbar-links a:hover,
[data-theme="dark"] .navbar-links a.active {
    color: var(--matcha-300);
    background: rgba(58, 125, 59, .1)
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

/* Theme Toggle */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.theme-toggle:hover {
    color: var(--gold-500);
    border-color: var(--gold-500);
    transform: rotate(20deg)
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0) scale(1)
}

.theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(.5)
}

[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(90deg) scale(.5)
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0) scale(1)
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light)
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(58, 125, 59, .06) 0%, transparent 70%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -8%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, .05) 0%, transparent 70%);
    pointer-events: none
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    width: 100%
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--matcha-500), var(--matcha-700));
    color: #fff;
    padding: 8px 22px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeInUp .6s ease-out
}

.hero-badge i {
    font-size: 1rem
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
    animation: fadeInUp .6s ease-out .1s both
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--matcha-500), var(--matcha-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.9;
    animation: fadeInUp .6s ease-out .2s both
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp .6s ease-out .3s both
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft .8s ease-out .3s both
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl)
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--matcha-400), var(--gold-400));
    opacity: .12;
    z-index: -1
}

.hero-float {
    position: absolute;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    font-weight: 600;
    z-index: 3;
    border: 1px solid var(--border-light)
}

.hero-float.top-left {
    top: 8%;
    right: 92%;
    animation: float 4s ease-in-out infinite
}

.hero-float.bottom-right {
    bottom: 8%;
    left: 88%;
    animation: float 4s ease-in-out infinite 2s
}

.float-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem
}

.float-icon.green {
    background: var(--matcha-100);
    color: var(--matcha-700)
}

[data-theme="dark"] .float-icon.green {
    background: rgba(58, 125, 59, .15);
    color: var(--matcha-300)
}

.float-icon.gold {
    background: rgba(212, 168, 83, .12);
    color: var(--gold-500)
}

.float-label {
    font-size: .75rem;
    color: var(--text-tertiary);
    font-weight: 400
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: var(--radius-full);
    font-size: .95rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden
}

.btn i {
    font-size: 1.1rem
}

.btn-primary {
    background: linear-gradient(135deg, var(--matcha-500), var(--matcha-700));
    color: #fff;
    box-shadow: 0 4px 18px rgba(58, 125, 59, .25)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(58, 125, 59, .35)
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium)
}

.btn-secondary:hover {
    border-color: var(--matcha-500);
    color: var(--matcha-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

[data-theme="dark"] .btn-secondary:hover {
    color: var(--matcha-300)
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .25)
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, .35)
}

.btn-sm {
    padding: 10px 22px;
    font-size: .88rem
}

.btn-lg {
    padding: 15px 38px;
    font-size: 1.05rem
}

/* --- About --- */
.about {
    background: var(--bg-secondary)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.about-image img {
    width: 100%;
    height: 440px;
    object-fit: cover
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 125, 59, .08), transparent)
}

.about-content h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.35
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.9
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast)
}

.about-feature:hover {
    border-color: var(--matcha-400);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px)
}

.about-feature .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: var(--matcha-50);
    color: var(--matcha-600);
    flex-shrink: 0
}

[data-theme="dark"] .about-feature .feature-icon {
    background: rgba(58, 125, 59, .12);
    color: var(--matcha-300)
}

.about-feature span {
    font-weight: 600;
    font-size: .9rem
}

/* --- Products --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: pointer
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--matcha-400)
}

.product-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg-secondary)
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.product-card:hover .product-card-image img {
    transform: scale(1.06)
}

.product-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: #fff
}

.product-card-body {
    padding: 22px
}

.product-card-category {
    font-size: .78rem;
    color: var(--matcha-500);
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 6px
}

[data-theme="dark"] .product-card-category {
    color: var(--matcha-300)
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px
}

.product-card-desc {
    font-size: .88rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--matcha-600)
}

[data-theme="dark"] .product-price {
    color: var(--matcha-300)
}

.product-price .currency {
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-right: 4px
}

.product-card-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--matcha-50);
    color: var(--matcha-600);
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light)
}

[data-theme="dark"] .product-card-btn {
    background: rgba(58, 125, 59, .1);
    color: var(--matcha-300)
}

.product-card:hover .product-card-btn {
    background: var(--matcha-500);
    color: #fff;
    border-color: var(--matcha-500)
}

/* --- Features --- */
.features {
    background: var(--bg-secondary)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--matcha-400), var(--matcha-600));
    opacity: 0;
    transition: opacity var(--transition-fast)
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.feature-card:hover::before {
    opacity: 1
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--matcha-50), var(--matcha-100));
    color: var(--matcha-600)
}

[data-theme="dark"] .feature-card-icon {
    background: rgba(58, 125, 59, .1);
    color: var(--matcha-300)
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px
}

.feature-card p {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.7
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium)
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px)
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--gold-400);
    font-size: .95rem
}

.testimonial-text {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--matcha-400), var(--matcha-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 700
}

.testimonial-author-info h4 {
    font-size: .92rem;
    font-weight: 700
}

.testimonial-author-info span {
    font-size: .78rem;
    color: var(--text-tertiary)
}

/* --- CTA --- */
.cta-section {
    background: linear-gradient(135deg, var(--matcha-700), var(--matcha-900));
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, .03), transparent 60%);
    pointer-events: none
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2
}

.cta-inner h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px
}

.cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 36px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto
}

/* --- Contact --- */
.contact-info {
    background: var(--bg-secondary)
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.contact-card {
    text-align: center;
    padding: 38px 22px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium)
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md)
}

.contact-card-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.35rem;
    background: var(--matcha-50);
    color: var(--matcha-600)
}

[data-theme="dark"] .contact-card-icon {
    background: rgba(58, 125, 59, .1);
    color: var(--matcha-300)
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px
}

.contact-card p {
    font-size: .92rem;
    color: var(--text-secondary);
    line-height: 1.8
}

/* --- Footer --- */
.footer {
    background: var(--bg-footer);
    color: rgba(255, 255, 255, .8);
    padding: 56px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--matcha-300);
    margin-bottom: 10px
}

.footer-brand p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.8
}

.footer-col h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

.footer-col a {
    display: block;
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    padding: 4px 0;
    transition: color var(--transition-fast)
}

.footer-col a:hover {
    color: var(--matcha-300)
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .55);
    font-size: 1.05rem;
    transition: all var(--transition-fast)
}

.footer-social a:hover {
    background: var(--matcha-500);
    color: #fff;
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 22px;
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .3)
}

/* --- Product Detail --- */
.product-page {
    padding-top: 100px;
    min-height: 100vh
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.product-gallery {
    position: sticky;
    top: 100px
}

.product-main-image {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light)
}

.product-main-image img {
    width: 100%;
    height: 440px;
    object-fit: cover
}

.product-info .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-tertiary);
    margin-bottom: 18px
}

.product-info .breadcrumb a {
    color: var(--matcha-500);
    transition: color var(--transition-fast)
}

.product-info .breadcrumb a:hover {
    color: var(--matcha-700)
}

.product-info h1 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35
}

.product-info .product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--matcha-50);
    color: var(--matcha-700);
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 18px
}

[data-theme="dark"] .product-info .product-category-badge {
    background: rgba(58, 125, 59, .1);
    color: var(--matcha-300)
}

.product-info .product-price-display {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--matcha-600);
    margin-bottom: 22px
}

[data-theme="dark"] .product-info .product-price-display {
    color: var(--matcha-300)
}

.product-info .product-price-display .currency {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-tertiary)
}

.product-info .product-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light)
}

.product-specs {
    margin-bottom: 28px
}

.product-specs h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 14px
}

.spec-list {
    display: grid;
    gap: 10px
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md)
}

.spec-item .spec-icon {
    color: var(--matcha-500);
    font-size: 1.1rem;
    width: 20px;
    text-align: center
}

.spec-item .spec-label {
    font-weight: 600;
    font-size: .88rem;
    min-width: 90px
}

.spec-item .spec-value {
    color: var(--text-secondary);
    font-size: .88rem
}

.product-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: .92rem;
    font-weight: 500;
    margin-bottom: 28px;
    padding: 8px 0;
    transition: color var(--transition-fast)
}

.back-btn:hover {
    color: var(--matcha-500)
}

.back-btn i {
    font-size: 1.1rem
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 22px rgba(37, 211, 102, .35);
    transition: all var(--transition-fast);
    animation: pulseWa 2s ease-in-out infinite
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .45)
}

@keyframes pulseWa {

    0%,
    100% {
        box-shadow: 0 4px 22px rgba(37, 211, 102, .35)
    }

    50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, .55)
    }
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium)
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 24px;
    color: var(--text-primary);
    transition: color var(--transition-fast)
}

.mobile-menu a:hover {
    color: var(--matcha-500)
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-primary);
    background: var(--bg-secondary)
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-36px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all .7s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* --- Responsive --- */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-content {
        order: 2
    }

    .hero-visual {
        order: 1
    }

    .hero-desc {
        margin: 0 auto 36px
    }

    .hero-actions {
        justify-content: center
    }

    .hero-float {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .product-detail {
        grid-template-columns: 1fr
    }

    .product-gallery {
        position: static
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .navbar-links {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .section {
        padding: 76px 0
    }

    .products-grid,
    .features-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .about-features {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-image-wrapper {
        max-width: 320px
    }

    .product-main-image img {
        height: 280px
    }

    .product-actions {
        flex-direction: column
    }

    .product-actions .btn {
        width: 100%
    }
}

@media(max-width:480px) {
    .btn {
        padding: 12px 22px;
        font-size: .88rem
    }

    .hero-title {
        font-size: 2rem
    }

    .whatsapp-float {
        bottom: 18px;
        left: 18px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem
    }
}