/* ═══════════════════════════════════════════════════════════════
   LCGC – Base Stylesheet  (mobile-first)
   All breakpoints use min-width — base styles are for mobile.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ──────────────────────────────────────────────────── */
:root {
    /* Colours */
    --oak:        #5C3D1E;
    --oak-dark:   #3D2712;
    --oak-light:  #7D5A3C;
    --birch:      #C49A6C;
    --birch-light:#D4B48A;
    --cream:      #FAF6F0;
    --warm:       #F0E8DC;
    --border:     #E8D5B7;
    --border-lt:  #F5EDE0;
    --text:       #2D2D2D;
    --text-mid:   #6B6B6B;
    --text-muted: #999;
    --white:      #FFFFFF;
    --error:      #C62828;
    --success:    #2E7D32;

    /* Typography */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Inter', system-ui, sans-serif;

    /* Font sizes — mobile base */
    --fs-xs:  0.75rem;
    --fs-sm:  0.875rem;
    --fs-md:  1rem;
    --fs-lg:  1.125rem;
    --fs-xl:  1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-14: 3.5rem;
    --sp-16: 4rem;
    --sp-20: 5rem;

    /* Layout */
    --page-pad: 1rem;        /* mobile side padding */
    --radius:   6px;
    --radius-lg:12px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur:  0.2s;

    /* Z-index */
    --z-header:  200;
    --z-overlay: 300;
    --z-drawer:  400;
}

@media (min-width: 640px)  { :root { --page-pad: 1.5rem; } }
@media (min-width: 1024px) { :root { --page-pad: 4rem;   } }
@media (min-width: 1280px) { :root { --page-pad: 12rem;  } }

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: var(--fs-md);
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--oak); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--oak-dark); }

ul, ol { list-style: none; }

/* ─── Container ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: var(--page-pad);
}

/* ─── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--oak-dark);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl);  }

@media (min-width: 768px) {
    h1 { font-size: var(--fs-4xl); }
    h2 { font-size: var(--fs-3xl); }
    h3 { font-size: var(--fs-2xl); }
}

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.75rem 1.5rem;
    font-family: var(--sans);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--oak);
    color: var(--white);
    border-color: var(--oak);
}
.btn-primary:hover { background: var(--oak-dark); border-color: var(--oak-dark); color: var(--white); }

.btn-accent {
    background: var(--birch);
    color: var(--white);
    border-color: var(--birch);
}
.btn-accent:hover { background: var(--oak-light); border-color: var(--oak-light); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--oak);
    border-color: var(--oak);
}
.btn-outline:hover { background: var(--oak); color: var(--white); }

.btn-sm { padding: 0.5rem 1rem; font-size: var(--fs-xs); }
.btn-lg { padding: 1rem 2rem; font-size: var(--fs-md); }

/* ─── Section Spacing ─────────────────────────────────────────── */
.section { padding-block: var(--sp-12); }
@media (min-width: 768px) { .section { padding-block: var(--sp-20); } }

.section-header { margin-bottom: var(--sp-8); text-align: center; }
.section-title  { font-size: var(--fs-2xl); color: var(--oak-dark); margin-bottom: var(--sp-3); }
.section-sub    { color: var(--text-mid); font-size: var(--fs-md); }

@media (min-width: 768px) {
    .section-title { font-size: var(--fs-3xl); }
}

/* ─── Announcement Bar ────────────────────────────────────────── */
.announcement-bar {
    background: var(--birch);
    color: var(--white);
    text-align: center;
    padding: var(--sp-2) var(--page-pad);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-lt);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}



.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--sp-4);
}

@media (min-width: 1024px) {
    .header-inner { height: 80px; }
}

/* Logo */
.site-logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.site-logo      { height: 40px; width: auto; }
@media (min-width: 1024px) { .site-logo { height: 50px; } }
.custom-logo    { height: 40px; width: auto; }
@media (min-width: 1024px) { .custom-logo { height: 50px; } }

/* Desktop nav — hidden on mobile */
.main-nav { display: none; }
@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: center;
    }
    /* The <ul> wp_nav_menu() outputs */
    .main-nav ul {
        display: flex;
        align-items: center;
        gap: var(--sp-8);
        list-style: none;
        padding: 0;
        margin: 0;
    }
    /* Nested sub-menus — hide for now */
    .main-nav ul ul { display: none; }
}

.main-nav a {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-block: var(--sp-2);
    white-space: nowrap;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--birch);
    transition: width var(--dur) var(--ease);
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--oak); }
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after { width: 100%; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--sp-2); }

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    position: relative;
    text-decoration: none;
}
.header-btn:hover { background: var(--warm); color: var(--oak); }
.header-btn svg   { flex-shrink: 0; }

.cart-count {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--birch);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile menu toggle */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: var(--sp-2);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
    position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

.nav-toggle.open span            { background: transparent; }
.nav-toggle.open span::before    { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after     { top: 0; transform: rotate(-45deg); }

@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ─── Mobile Drawer ───────────────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: var(--z-drawer);
    pointer-events: none;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.drawer-panel {
    position: absolute;
    top: 0; left: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open { pointer-events: all; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer.open .drawer-panel   { transform: translateX(0); }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) var(--sp-6);
    border-bottom: 1px solid var(--border-lt);
}

.drawer-close {
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-mid);
    display: flex;
    padding: var(--sp-2);
}

.drawer-nav { padding: var(--sp-4); flex: 1; }
.drawer-nav a {
    display: block;
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-md);
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: all var(--dur) var(--ease);
}
.drawer-nav a:hover { background: var(--warm); color: var(--oak); }

/* ─── Page Header (inner pages) ───────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--oak-dark) 0%, var(--oak) 55%, var(--oak-light) 100%);
    padding-block: var(--sp-10);
    position: relative;
    overflow: hidden;
}

/* Decorative circles — subtle depth without being distracting */
.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.page-header::before {
    width: 340px;
    height: 340px;
    top: -100px;
    right: 8%;
    background: rgba(255,255,255,0.05);
}
.page-header::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: 30%;
    background: rgba(255,255,255,0.04);
}

.page-header .page-title {
    font-size: var(--fs-2xl);
    color: var(--white);
    margin-bottom: 0;
}

/* Breadcrumbs on dark background */
.page-header .breadcrumbs,
.page-header .woocommerce-breadcrumb {
    color: rgba(255,255,255,0.6);
    padding-block: 0 var(--sp-3);
}
.page-header .breadcrumbs a,
.page-header .woocommerce-breadcrumb a {
    color: rgba(255,255,255,0.6);
}
.page-header .breadcrumbs a:hover,
.page-header .woocommerce-breadcrumb a:hover {
    color: var(--white);
}
.page-header .breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* Also flip archive-desc text (shop/category pages) */
.page-header .archive-desc { color: rgba(255,255,255,0.75); }

@media (min-width: 768px) {
    .page-header { padding-block: var(--sp-14); }
    .page-header .page-title { font-size: var(--fs-3xl); }
}

/* ─── Generic page content ────────────────────────────────────── */
.page-wrap {
    padding-block: var(--sp-8);
    max-width: 900px;
}
@media (min-width: 768px) { .page-wrap { padding-block: var(--sp-12); } }

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--oak-dark);
    color: #C8A882;
    padding-top: var(--sp-16);
    padding-bottom: var(--sp-8);
    margin-top: var(--sp-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    margin-bottom: var(--sp-8);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-desc { font-size: var(--fs-sm); line-height: 1.8; margin-top: var(--sp-4); }

.footer-col-title {
    font-family: var(--sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: var(--sp-4);
}

.footer-links a {
    display: block;
    font-size: var(--fs-sm);
    color: #C8A882;
    padding-block: var(--sp-1);
    transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--birch-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
    font-size: var(--fs-xs);
    color: #8B6B4A;
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ─── Breadcrumbs ─────────────────────────────────────────────── */
.breadcrumbs {
    font-size: var(--fs-sm);
    color: var(--text-mid);
    padding-block: var(--sp-4);
}
.breadcrumbs a { color: var(--text-mid); }
.breadcrumbs a:hover { color: var(--oak); }
.breadcrumbs .breadcrumb-sep { margin-inline: var(--sp-2); }

/* ─── Forms (global) ──────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--sans);
    font-size: var(--fs-md);
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--dur) var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--birch);
    box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.15);
}

label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--oak);
    margin-bottom: var(--sp-2);
}

/* ─── Print ───────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .mobile-drawer, .announcement-bar { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    a    { color: #000; text-decoration: underline; }
}

/* ─── Reduced Motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--oak-dark);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--oak) 0%, var(--oak-dark) 100%);
}

.hero-body {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: var(--sp-16);
}

.hero-content {
    padding-inline: var(--page-pad);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--birch-light);
    border: 1px solid var(--birch);
    border-radius: 999px;
    padding: var(--sp-1) var(--sp-4);
    margin-bottom: var(--sp-4);
}

.hero-title {
    font-size: var(--fs-3xl);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--sp-5);
    white-space: pre-line;
}

.hero-sub {
    font-size: var(--fs-md);
    color: #D4B48A;
    line-height: 1.8;
    margin-bottom: var(--sp-8);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: center;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

@media (min-width: 480px) {
    .hero-actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
    .hero { min-height: 80vh; }
    .hero-media { width: 55%; left: auto; right: 0; }
    .hero-img   { opacity: 1; }

    /* Gradient fade from left over the image */
    .hero-media::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to right, var(--oak-dark) 0%, transparent 70%);
    }

    .hero-content {
        text-align: left;
        margin: 0;
        max-width: 560px;
        padding-inline: 0;
    }

    .hero-body {
        padding-inline: var(--page-pad);
        max-width: 1280px;
        margin-inline: auto;
        padding-block: var(--sp-20);
    }

    .hero-actions { justify-content: flex-start; }

    .hero-title { font-size: var(--fs-4xl); }
}

@media (min-width: 1440px) {
    .hero-title { font-size: var(--fs-5xl); }
}

/* ─── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-lt);
    padding-block: var(--sp-6);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

@media (min-width: 768px) {
    .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--sp-2);
    padding: var(--sp-3);
}

@media (min-width: 768px) {
    .trust-item { flex-direction: row; text-align: left; }
}

.trust-item svg  { color: var(--birch); flex-shrink: 0; }
.trust-item strong { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--oak-dark); }
.trust-item span   { font-size: var(--fs-xs); color: var(--text-mid); }

/* ─── Category Grid ───────────────────────────────────────────── */
.cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
}

@media (min-width: 768px) {
    .cat-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
}

.cat-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--warm);
    text-decoration: none;
}

.cat-card-img { position: absolute; inset: 0; }
.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.cat-card:hover .cat-card-img img { transform: scale(1.05); }

.cat-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--warm) 0%, var(--border) 100%);
}

.cat-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(61,39,18,0.85) 0%, transparent 100%);
    padding: var(--sp-6) var(--sp-4) var(--sp-3);
    color: var(--white);
}
.cat-card-label span {
    font-family: var(--serif);
    font-size: var(--fs-lg);
    font-weight: 600;
}

/* ─── Product Grid (homepage) ─────────────────────────────────── */
.section--warm { background: var(--warm); }

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

@media (min-width: 768px) {
    .prod-grid { grid-template-columns: repeat(4, 1fr); }
}

.prod-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.prod-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.prod-card-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--warm);
    overflow: hidden;
}
.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.prod-card:hover .prod-img { transform: scale(1.04); }

.prod-badge {
    position: absolute;
    top: var(--sp-2);
    left: var(--sp-2);
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.prod-badge--sale { background: var(--error); color: var(--white); }

.prod-card-info { padding: var(--sp-3) var(--sp-4) var(--sp-4); }
.prod-title {
    font-family: var(--serif);
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--oak-dark);
    margin-bottom: var(--sp-2);
    line-height: 1.3;
}
.prod-price { font-size: var(--fs-sm); font-weight: 600; color: var(--oak); }
.prod-price del { color: var(--text-muted); font-weight: 400; }
.prod-price ins { text-decoration: none; }

.section-cta { text-align: center; }

/* ─── About Strip ─────────────────────────────────────────────── */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

@media (min-width: 768px) {
    .about-grid {
        flex-direction: row;
        align-items: center;
        gap: var(--sp-16);
    }
    .about-img-wrap { flex: 1; }
    .about-text      { flex: 1; }
}

.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about-img      { width: 100%; height: auto; border-radius: var(--radius-lg); }
.about-img-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--warm) 0%, var(--border) 100%);
    border-radius: var(--radius-lg);
}

.eyebrow {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--birch);
    margin-bottom: var(--sp-3);
}



