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

:root {
    --cream:        #F8F5EF;
    --cream-dark:   #EDE8DF;
    --white:        #FFFFFF;
    --ink:          #1C1C1C;
    --ink-mid:      #4A4A4A;
    --ink-light:    #888888;
    --border:       #DDD8CF;
    --border-light: #EDE8DF;
    --accent:       #1C1C1C;
    --accent-hover: #3A3A3A;
    --price-color:  #1C1C1C;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
    --shadow-md:    0 4px 16px rgba(0,0,0,.1);
    --transition:   0.25s ease;
    --nav-height:   96px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography helpers ────────────────────────────── */
.serif {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
}

/* ─── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .04em;
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 8px 0;
    border-bottom: 1.5px solid var(--ink);
    letter-spacing: .06em;
    font-size: .8rem;
    text-transform: uppercase;
}
.btn-ghost:hover { opacity: .65; }

.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ─── Navigation ───────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(248,245,239,.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    overflow: visible;
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-left: auto;
}

.nav-logo-img {
    height: 186px;
    width: auto;
}

.nav-link {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-mid);
    transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-mid);
    transition: color var(--transition);
}
.nav-cart:hover { color: var(--ink); }
.nav-cart i { font-size: 1rem; }

.cart-badge {
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    width: 18px; height: 18px;
    font-size: .65rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    position: absolute;
    top: -8px; right: -10px;
    transform: scale(0);
    transition: transform var(--transition);
}
.cart-badge.show { transform: scale(1); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    transition: var(--transition);
}

/* Mobile slide-down menu — hidden everywhere by default */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(248,245,239,.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu .nav-link {
    font-size: .95rem;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

/* ─── Hero ─────────────────────────────────────────── */
.hero {
    margin-top: var(--nav-height);
    background:
        linear-gradient(rgba(248,245,239,0.25), rgba(248,245,239,0.25)),
        url('assets/images/Banner/XSi4rxIicqe0-ONPfz4Tl_Fq0Eu4jc.png') center / cover no-repeat;
    min-height: 90vh;
    padding: 80px 24px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--ink);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.hero-location {
    margin-top: 48px;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink);
}

/* ─── Trust Strip ──────────────────────────────────── */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 40px 24px;
}

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

.trust-item i {
    font-size: 1.4rem;
    color: var(--ink-mid);
    margin-bottom: 10px;
}

.trust-item h4 {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--ink);
}

.trust-item p {
    font-size: .8rem;
    color: var(--ink-light);
    line-height: 1.5;
}

/* ─── Section headers ──────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
}

.section-sub {
    font-size: .95rem;
    color: var(--ink-mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── Filter Tabs ──────────────────────────────────── */
.filter-row {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color var(--transition), border-color var(--transition);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-bottom-color: var(--ink); }

/* ─── Products Section ─────────────────────────────── */
.products-section {
    padding: 96px 0;
    background: var(--cream);
}

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

/* ─── Product Card ─────────────────────────────────── */
.product-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--transition);
    cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-md); z-index: 1; position: relative; }

.product-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--white);
}

.product-img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
    padding: 16px;
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-image-wrap { cursor: pointer; }

.product-info {
    padding: 18px 20px 22px;
}

.product-info h3 {
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-price {
    font-size: .88rem;
    color: var(--ink-mid);
    margin-bottom: 14px;
}

.product-price span { font-size: .72rem; color: var(--ink-light); }

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

.product-actions .btn { flex: 1; }

/* ─── Updates Section ──────────────────────────────── */
/* ─── Reviews ──────────────────────────────────────── */
.reviews-section {
    padding: 72px 0 64px;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.reviews-track-wrap {
    overflow: hidden;
    max-width: 720px;
    margin: 32px auto 0;
}

.reviews-track {
    display: flex;
    gap: 16px;
    transition: transform 0.6s ease;
}

.review-card {
    width: 220px;
    flex-shrink: 0;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.review-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.review-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.review-stars {
    color: #C8A97E;
    font-size: .8rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: .78rem;
    color: var(--ink-mid);
    line-height: 1.55;
    font-style: italic;
    flex: 1;
}

.review-author {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-light);
}

/* ─── CTA Banner ───────────────────────────────────── */
.cta-banner {
    background: var(--ink);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.cta-banner .section-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-banner .section-sub   { color: rgba(255,255,255,.7); }

.cta-banner-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--ink);
}
.cta-banner .btn-primary:hover { background: var(--cream); }

.cta-banner .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.cta-banner .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ─── Footer ───────────────────────────────────────── */
.footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.footer-brand-logo { height: 186px; width: auto; margin-bottom: 8px; }


.footer-brand p {
    font-size: .88rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-mid);
    font-size: .9rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-socials a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.footer-col h4 {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: .88rem;
    color: var(--ink-mid);
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--ink); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: .8rem; color: var(--ink-light); }

/* ─── Scroll-reveal util ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --nav-height: 80px; }

    /* Nav */
    .hamburger  { display: flex; }
    .nav-links  { display: none; }
    .nav-logo-img { height: 120px; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); }

    /* Trust strip */
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; gap: 16px; }
    .hero { padding: 56px 16px 64px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .trust-strip-inner { grid-template-columns: 1fr; }
    .section-header { margin-bottom: 36px; }
    .reviews-track-wrap { max-width: 100%; padding: 0 24px; }
}

/* ─── v2 Interior Pages (request, contact, cart) ───── */
.v2-page-header {
    padding: 64px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 64px;
}
.v2-page-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
    margin: 8px 0 16px;
}
.v2-page-sub {
    font-size: 1rem;
    color: var(--ink-mid);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Two-column page layout */
.v2-two-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
    padding-bottom: 80px;
}
.v2-info-col { padding-top: 8px; }
.v2-form-col {}

/* Feature list (request page) */
.v2-feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.v2-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.v2-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}
.v2-feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}
.v2-feature p {
    font-size: .88rem;
    color: var(--ink-mid);
    line-height: 1.6;
}

/* Contact info block */
.v2-contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.v2-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.v2-contact-item .v2-feature-icon { background: var(--ink); }
.v2-contact-item h4 {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}
.v2-contact-item p, .v2-contact-item a {
    font-size: .9rem;
    color: var(--ink-mid);
    line-height: 1.6;
}
.v2-contact-item a:hover { color: var(--ink); }
.v2-contact-socials {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}
.v2-contact-socials a {
    width: 40px; height: 40px;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-mid);
    font-size: .9rem;
    transition: border-color var(--transition), color var(--transition);
}
.v2-contact-socials a:hover { border-color: var(--ink); color: var(--ink); }

/* Form styles */
.v2-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border);
}
.v2-form-group {
    margin-bottom: 20px;
}
.v2-form-group label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
}
.v2-form-group input,
.v2-form-group select,
.v2-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    background: var(--cream);
    color: var(--ink);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition);
    appearance: none;
}
.v2-form-group input:focus,
.v2-form-group select:focus,
.v2-form-group textarea:focus {
    outline: none;
    border-color: var(--ink);
    background: var(--white);
}
.v2-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231C1C1C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: var(--cream);
    padding-right: 36px;
    cursor: pointer;
}
.v2-form-group select:focus { background-color: var(--white); }
.v2-form-group textarea { resize: vertical; min-height: 120px; }
.v2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.v2-file-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px dashed var(--border);
    background: var(--cream);
    color: var(--ink-mid);
    font-size: .85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: border-color var(--transition);
}
.v2-file-input:hover { border-color: var(--ink); }
.v2-field-note {
    margin-top: 6px;
    font-size: .78rem;
    color: var(--ink-light);
}
.v2-form-msg {
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--cream-dark);
    border-left: 3px solid var(--ink);
    font-size: .88rem;
    color: var(--ink);
    line-height: 1.5;
}

/* Cart page */
.v2-cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
    padding-bottom: 80px;
}
.v2-cart-items {}
.v2-cart-summary {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}
.v2-cart-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.v2-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .88rem;
    color: var(--ink-mid);
    margin-bottom: 12px;
}
.v2-summary-row.total {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.v2-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.v2-cart-item:first-child { border-top: 1px solid var(--border); }
.v2-cart-item-img {
    width: 100px; height: 100px;
    object-fit: contain;
    background: var(--white);
    padding: 8px;
    border: 1px solid var(--border);
}
.v2-cart-item-info {}
.v2-cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}
.v2-cart-item-meta {
    font-size: .8rem;
    color: var(--ink-light);
    margin-bottom: 12px;
}
.v2-cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.v2-cart-item-price {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
}
.v2-cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.v2-qty-btn {
    width: 30px; height: 30px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: .9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    transition: border-color var(--transition), background var(--transition);
}
.v2-qty-btn:hover { border-color: var(--ink); background: var(--cream); }
.v2-qty-display {
    font-size: .9rem;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    color: var(--ink);
}
.v2-remove-btn {
    background: none;
    border: none;
    font-size: .78rem;
    color: var(--ink-light);
    cursor: pointer;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 0;
    transition: color var(--transition);
}
.v2-remove-btn:hover { color: var(--ink); }
.v2-cart-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--ink-mid);
}
.v2-cart-empty i { font-size: 3rem; margin-bottom: 20px; color: var(--border); }
.v2-cart-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--ink);
}
.v2-cart-empty p { font-size: .9rem; margin-bottom: 28px; }

@media (max-width: 900px) {
    .v2-two-col { grid-template-columns: 1fr; gap: 48px; }
    .v2-cart-layout { grid-template-columns: 1fr; }
    .v2-cart-summary { position: static; }
}

@media (max-width: 600px) {
    .v2-form { padding: 28px 20px; }
    .v2-form-row { grid-template-columns: 1fr; }
}

/* ─── Placeholder image fallback ───────────────────── */
.placeholder-image {
    width: 100%; height: 100%;
    background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-light);
    font-size: 2.5rem;
}
