:root {
    --ink: #0c1b14;
    --deep: #092016;
    --green: #0f5a36;
    --leaf: #2aa45f;
    --mint: #dff7e8;
    --gold: #d7a53f;
    --amber: #ffcf68;
    --cream: #fff8e8;
    --paper: #fbf8ef;
    --smoke: #eef4ec;
    --line: rgba(12, 27, 20, 0.12);
    --shadow: 0 28px 80px rgba(5, 26, 16, 0.18);
    --radius: 28px;
    --radius-sm: 18px;
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: "Trebuchet MS", Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.08;
    background-image: radial-gradient(rgba(0, 0, 0, 0.4) 1px, transparent 1px);
    background-size: 4px 4px;
    mix-blend-mode: multiply;
}
.gf-nav {
    background: linear-gradient(90deg, rgba(9, 32, 22, 0.92), rgba(13, 73, 43, 0.86));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.72rem 0;
    transition: 0.25s ease;
}
.gf-nav.scrolled {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
    padding: 0.45rem 0;
}
.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 230px;
}
.brand-mark {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.brand-word {
    height: 46px;
    width: 168px;
    object-fit: contain;
    filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.24));
}
.navbar-nav .nav-link {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.76) !important;
    border-radius: 999px;
    padding: 0.65rem 0.9rem !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
}
.gf-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cart-pill {
    border: 0;
    background: var(--amber);
    color: #1c1708;
    border-radius: 999px;
    padding: 0.56rem 0.85rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 12px 30px rgba(215, 165, 63, 0.28);
}
.cart-pill b {
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    border-radius: 999px;
    min-width: 24px;
    height: 24px;
    font-size: 0.76rem;
}
.view {
    display: none;
}
.active-view {
    display: block;
}
.section-pad {
    padding: 7rem 0;
}
.hero-stage {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 12% 15%, rgba(255, 207, 104, 0.25), transparent 25%),
        radial-gradient(circle at 88% 34%, rgba(42, 164, 95, 0.22), transparent 28%),
        linear-gradient(135deg, #071b12 0%, #0d3d28 48%, #06160f 100%);
    color: #fff;
    overflow: hidden;
}
.hero-stage:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 90px);
    mask-image: linear-gradient(to bottom, #000, transparent 84%);
}
.hero-orbit {
    position: absolute;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    right: -250px;
    top: 80px;
    animation: spin 22s linear infinite;
}
.hero-orbit:before,
.hero-orbit:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 44px rgba(255, 207, 104, 0.72);
}
.hero-orbit:before {
    width: 18px;
    height: 18px;
    left: 110px;
    top: 110px;
}
.hero-orbit:after {
    width: 10px;
    height: 10px;
    right: 150px;
    bottom: 80px;
}
.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
	margin-top: 4rem;
}
.eyebrow:before,
.section-kicker:before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}
.hero-copy h1,
.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: -0.01em;
    font-size: clamp(2.4rem, 5vw, 5.8rem);
    margin: 0 0 1.25rem;
}
.hero-copy .lead {
    font-size: 1.16rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    max-width: 690px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}
.btn {
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.02em;
    padding: 0.82rem 1.2rem;
}
.btn-gold {
    background: linear-gradient(135deg, var(--amber), var(--gold));
    border: 0;
    color: #1c1708;
    box-shadow: 0 18px 45px rgba(215, 165, 63, 0.28);
}
.btn-gold:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffda82, #c69027);
}
.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
}
.metric-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    overflow: hidden;
    max-width: 720px;
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.metric-strip article {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}
.metric-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--amber);
}
.metric-strip span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}
.hero-slider {
    height: min(72vh, 720px);
    min-height: 520px;
    border-radius: 42px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #123;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 1s ease,
        transform 1.2s ease;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08)), var(--bg);
    background-size: cover;
    background-position: center;
}
.slide.active {
    opacity: 1;
    transform: scale(1);
}
.slide-content {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
}
.slide-content span {
    display: inline-block;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 800;
    color: #fff;
}
.slide-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    max-width: 650px;
    margin: 0.9rem 0 0;
}
.slider-dots {
    position: absolute;
    right: 2rem;
    top: 2rem;
    display: flex;
    gap: 0.45rem;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    border: 0;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
}
.slider-dots button.active {
    width: 34px;
    background: var(--amber);
}
.intro-band {
    background: linear-gradient(180deg, var(--paper), #fff);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.045em;
    margin: 0 0 1.3rem;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.value-grid div,
.story-card,
.category-card,
.service-card,
.testimonial,
.store-panel,
.store-sidebar,
.cart-drawer,
.product-card,
.auth-card,
.dashboard-card,
.contact-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.value-grid div {
    padding: 1.4rem;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}
.value-grid div:after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(42, 164, 95, 0.12);
    right: -22px;
    bottom: -22px;
}
.value-grid b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    margin-bottom: 0.5rem;
}
.value-grid span,
p {
    color: rgba(12, 27, 20, 0.72);
    line-height: 1.75;
}
.about-mission {
    background: var(--smoke);
}
.story-card {
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.story-card.tall {
    min-height: 360px;
}
.story-card span {
    font-weight: 900;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}
.story-card h3 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 1;
    margin: 1rem 0;
}
.story-card.accent {
    background: linear-gradient(145deg, #0e5b36, #09351f);
    color: #fff;
}
.story-card.accent p {
    color: rgba(255, 255, 255, 0.76);
}
.story-card.accent span {
    color: var(--amber);
}
.category-section {
    background: #fff;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}
.category-card {
    overflow: hidden;
    position: relative;
    min-height: 350px;
    color: #fff;
    background: #123;
    isolation: isolate;
    cursor: pointer;
    transition: 0.28s ease;
}
.category-card:hover {
    transform: translateY(-8px);
}
.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: 0.55s ease;
}
.category-card:hover img {
    transform: scale(1.08);
}
.category-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08));
    z-index: -1;
}
.category-card div {
    position: absolute;
    inset: auto 1.3rem 1.3rem;
}
.category-card span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--amber);
    font-weight: 900;
}
.category-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    margin: 0.55rem 0;
}
.category-card p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0;
}
.detail-rail {
    background: linear-gradient(120deg, #fff 0%, #f5fff5 100%);
}
.rail-image {
    border-radius: 40px;
    box-shadow: var(--shadow);
    height: 560px;
    width: 100%;
    object-fit: cover;
}
.gf-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 0.8rem;
}
.gf-accordion .accordion-button {
    font-weight: 900;
    color: var(--ink);
    background: #fff;
    box-shadow: none;
}
.gf-accordion .accordion-button:not(.collapsed) {
    background: var(--mint);
    color: var(--deep);
}
.rating-section {
    background: #082016;
    color: #fff;
}
.rating-section p {
    color: rgba(255, 255, 255, 0.72);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.testimonial {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    color: #fff;
}
.testimonial p {
    color: rgba(255, 255, 255, 0.75);
}
.stars {
    color: var(--amber);
    letter-spacing: 0.12em;
    font-size: 1.15rem;
}
.faq-section {
    background: var(--paper);
}
.page-hero {
    padding: 11rem 0 5rem;
    background: radial-gradient(circle at 80% 20%, rgba(255, 207, 104, 0.25), transparent 25%),
        linear-gradient(135deg, #082016, #0e5b36);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 850px;
}
.page-hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}
.product-hero {
    background:
        linear-gradient(135deg, rgba(8, 32, 22, 0.92), rgba(15, 90, 54, 0.8)),
        url("../images/cat-health.jpg") center/cover;
}
.contact-hero {
    background:
        linear-gradient(135deg, rgba(8, 32, 22, 0.92), rgba(15, 90, 54, 0.76)),
        url("../images/tech-ecosystem.jpg") center/cover;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}
.service-card {
    padding: 1.6rem;
    min-height: 260px;
    transition: 0.25s ease;
    overflow: hidden;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
}
.service-card:after {
    content: attr(data-num);
    position: absolute;
    right: 1rem;
    bottom: -0.8rem;
    font-family: var(--font-display);
    font-size: 7rem;
    color: rgba(15, 90, 54, 0.08);
    line-height: 1;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    margin: 1rem 0;
}
.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--mint);
    display: grid;
    place-items: center;
    color: var(--green);
    font-weight: 900;
}
.store-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 330px;
    gap: 1.25rem;
    align-items: start;
}
.store-sidebar,
.cart-drawer {
    position: sticky;
    top: 105px;
    padding: 1.1rem;
}
.store-sidebar h2,
.cart-drawer h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
}
.filter-stack {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 1.4rem;
}
.filter-btn {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 0.72rem 0.9rem;
    font-weight: 900;
    text-align: left;
    transition: 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--deep);
    color: #fff;
}
.store-panel.mini {
    box-shadow: none;
    padding: 1rem;
    background: var(--smoke);
}
.mini-list {
    display: grid;
    gap: 0.6rem;
}
.mini-item {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    font-size: 0.84rem;
}
.mini-item img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
}
.store-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}
.store-toolbar h2 {
    font-family: var(--font-display);
    font-size: 2.7rem;
}
.search-box {
    display: grid;
    gap: 0.3rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--green);
}
.search-box input,
.gf-form input,
.gf-form select,
.gf-form textarea {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 0.9rem 1rem;
    width: 100%;
    outline: none;
}
.search-box input:focus,
.gf-form input:focus,
.gf-form select:focus,
.gf-form textarea:focus {
    border-color: var(--leaf);
    box-shadow: 0 0 0 4px rgba(42, 164, 95, 0.12);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.product-card {
    overflow: hidden;
    transition: 0.25s ease;
}
.product-card:hover {
    transform: translateY(-7px);
}
.product-media {
    height: 220px;
    background: #f2f4ef;
    position: relative;
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-badge {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    background: var(--amber);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-weight: 900;
    font-size: 0.72rem;
}
.product-body {
    padding: 1rem;
}
.product-body h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.05;
    min-height: 3.2rem;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.9rem 0;
}
.price {
    font-weight: 900;
    color: var(--green);
    font-size: 1.25rem;
}
.rating {
    font-weight: 900;
    color: #93630a;
}
.product-actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 0.5rem;
}
.icon-btn,
.link-btn {
    border: 0;
    background: var(--smoke);
    border-radius: 14px;
    font-weight: 900;
}
.icon-btn {
    height: 44px;
}
.icon-btn.active {
    background: #ffe2e2;
    color: #a91919;
}
.link-btn {
    padding: 0.4rem 0.7rem;
    color: var(--green);
}
.cart-items {
    display: grid;
    gap: 0.8rem;
    min-height: 90px;
}
.cart-row {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.75rem;
}
.cart-row img {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    object-fit: cover;
}
.cart-row h4 {
    font-size: 0.95rem;
    font-weight: 900;
    margin: 0;
}
.cart-row small {
    color: rgba(12, 27, 20, 0.58);
}
.qty {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.qty button {
    border: 0;
    width: 25px;
    height: 25px;
    border-radius: 8px;
    background: var(--mint);
    font-weight: 900;
}
.cart-summary {
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding-top: 1rem;
    display: grid;
    gap: 0.65rem;
}
.cart-summary div {
    display: flex;
    justify-content: space-between;
}
.cart-summary .total {
    font-size: 1.22rem;
    color: var(--green);
}
.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 18% 20%, rgba(255, 207, 104, 0.22), transparent 25%), var(--paper);
    padding-top: 10rem;
}
.auth-card,
.dashboard-card {
    width: min(980px, calc(100% - 2rem));
    padding: 2rem;
}
.gf-form {
    display: grid;
    gap: 1rem;
}
.gf-form label {
    display: grid;
    gap: 0.4rem;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green);
}
.dashboard-head {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: start;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.dashboard-grid article {
    background: var(--smoke);
    border-radius: 22px;
    padding: 1rem;
}
.dashboard-grid h3 {
    font-family: var(--font-display);
}
.order-card,
.profile-line {
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.2rem;
}
.contact-card {
    padding: 1.6rem;
}
.contact-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}
.contact-list li {
    padding: 1rem;
    border-radius: 18px;
    background: var(--smoke);
    display: grid;
    gap: 0.2rem;
}
.contact-list span {
    font-weight: 900;
    color: var(--green);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}
.site-footer {
    background: #06160f;
    color: #fff;
    padding: 4rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}
.footer-logo {
    height: 58px;
    width: 210px;
    object-fit: contain;
    filter: brightness(1.15);
}
.site-footer p {
    color: rgba(255, 255, 255, 0.68);
    max-width: 420px;
}
.site-footer h3 {
    font-family: var(--font-display);
    color: var(--amber);
}
.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    padding: 0.25rem 0;
}
.site-footer a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.1rem;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}
.modal-shell {
    position: fixed;
    inset: 0;
    background: rgba(2, 12, 7, 0.76);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 1rem;
    backdrop-filter: blur(12px);
}
.modal-shell.open {
    display: flex;
}
.modal-card {
    width: min(960px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: var(--paper);
    border-radius: 32px;
    padding: 1.4rem;
    position: relative;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}
.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    z-index: 2;
}
.detail-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}
.detail-modal-grid img {
    border-radius: 24px;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #fff;
}
.detail-modal-grid h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}
.detail-list {
    padding-left: 1.1rem;
    color: rgba(12, 27, 20, 0.75);
    line-height: 1.8;
}
.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    padding: 1rem;
    border-radius: 18px;
    background: var(--smoke);
    margin: 1rem 0;
}
.toast-note {
    position: fixed;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%) translateY(24px);
    background: #06160f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.8rem 1.1rem;
    z-index: 6000;
    opacity: 0;
    transition: 0.25s ease;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
    font-weight: 900;
}
.toast-note.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.delay-1 {
    transition-delay: 0.12s;
}
.delay-2 {
    transition-delay: 0.22s;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 1199px) {
    .brand-lockup {
        min-width: 0;
    }
    .store-layout {
        grid-template-columns: 1fr;
    }
    .store-sidebar,
    .cart-drawer {
        position: static;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .navbar-collapse {
        padding: 1rem 0;
    }
}
@media (max-width: 767px) {
    .section-pad {
        padding: 4.5rem 0;
    }
    .brand-word {
        width: 130px;
        height: 38px;
    }
    .hero-slider {
        min-height: 420px;
        height: 55vh;
        border-radius: 28px;
    }
    .metric-strip {
        grid-template-columns: 1fr;
    }
    .value-grid,
    .testimonial-grid,
    .contact-grid,
    .detail-modal-grid {
        grid-template-columns: 1fr;
    }
    .category-grid,
    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    .section-head,
    .store-toolbar,
    .dashboard-head,
    .footer-bottom {
        display: grid;
    }
    .rail-image {
        height: 330px;
    }
    .hero-copy h1,
    .page-hero h1 {
        font-size: 3.2rem;
    }
    .section-title {
        font-size: 2.55rem;
    }
    .auth-card,
    .dashboard-card {
        padding: 1.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .modal-card {
        border-radius: 24px;
        padding: 1rem;
    }
    .detail-modal-grid h2 {
        font-size: 2.2rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .cart-row {
        grid-template-columns: 52px 1fr;
    }
    .cart-row .qty {
        grid-column: 2;
    }
}
