:root {
    --navy: #0b2d4a;
    --navy-2: #0e385c;
    --navy-deep: #071e33;
    --navy-soft: #163a58;
    --bg: #f4f6f8;
    --white: #ffffff;
    --text: #1b2430;
    --muted: #667085;
    --border: #e4e8ee;
    --gold: #f0b429;
    --star-empty: #cfd6de;
    --whatsapp: #25d366;
    --shadow: 0 10px 28px rgba(11, 45, 74, 0.08);
    --radius: 12px;
    --container: 1220px;
    --font-display: "Figtree", "Noto Sans", sans-serif;
    --font-body: "Noto Sans", "Figtree", sans-serif;
    --header-h: 86px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
    touch-action: manipulation;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0; }

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -40px;
    z-index: 100;
    background: var(--navy);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
}
.skip-link:focus { top: 8px; }

svg { fill: currentColor; width: 18px; height: 18px; flex-shrink: 0; }

/* Ticker */
.ticker {
    background: var(--navy);
    color: #fff;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group {
    display: flex;
    align-items: center;
    gap: 42px;
    padding-right: 42px;
    white-space: nowrap;
}
.ticker-group a,
.ticker-group span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.ticker-group svg { width: 15px; height: 15px; }

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 40;
}
.header-row {
    min-height: var(--header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}
.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
    font-size: 18px;
    letter-spacing: 0.4px;
    color: var(--navy);
}
.brand-text em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #c1121f;
}

.search-bar {
    display: flex;
    align-items: stretch;
    height: 48px;
    border: 1px solid #d7dee7;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.search-bar input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 16px;
    font-size: 14px;
    min-width: 0;
}
.search-bar select {
    border: 0;
    border-left: 1px solid #d7dee7;
    background: #fff;
    padding: 0 10px;
    color: var(--text);
    min-width: 150px;
    font-size: 14px;
}
.search-bar button {
    width: 52px;
    border: 0;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}
.search-bar button:hover { background: var(--navy-2); }
.search-bar button svg { width: 20px; height: 20px; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.header-link svg { width: 22px; height: 22px; }
.cart-icon-wrap { position: relative; display: inline-flex; }
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.icon-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--navy);
    place-items: center;
}
.icon-btn svg { width: 24px; height: 24px; }

/* Nav */
.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-h);
    z-index: 35;
}
.nav-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    min-height: 54px;
}
.cat-menu { position: relative; }
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.cat-btn .chev { width: 16px; height: 16px; }
.cat-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 8px;
    z-index: 20;
}
.cat-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
}
.cat-dropdown a:hover { background: var(--bg); color: var(--navy); }
.nav-links {
    display: flex;
    justify-content: center;
    gap: 36px;
}
.nav-links a {
    font-weight: 600;
    color: #1d2430;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}
.nav-links a.is-active,
.nav-links a:hover { color: var(--navy); }
.nav-links a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--navy);
}

.mobile-drawer,
.drawer-backdrop { display: none; }

/* Hero */
.hero {
    background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
    overflow: hidden;
}
.hero-slider { position: relative; }
.hero-slide {
    display: none;
    min-height: 460px;
}
.hero-slide.is-active {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 24px;
}
.hero-copy { padding: 48px 0; max-width: 560px; }
.hero-copy h1 {
    font-size: clamp(32px, 4.4vw, 52px);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.4px;
}
.hero-copy p {
    margin: 16px 0 28px;
    color: var(--muted);
    font-size: 18px;
}
.hero-visual {
    display: grid;
    place-items: center;
    padding: 24px 0;
}
.hero-visual img {
    width: min(100%, 620px);
    height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(11, 45, 74, 0.12));
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    border: 0;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn-block { width: 100%; }
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 22px;
}
.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: #c5d0db;
}
.hero-dots button.is-active { background: var(--navy); }

/* Sections */
.section { padding: 72px 0; }
.section-muted { background: var(--bg); }
.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 36px;
}
.section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    background: var(--navy);
    margin: 12px auto 0;
    border-radius: 2px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.cat-card,
.product-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid #edf1f5;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cat-card:hover,
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 45, 74, 0.12);
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px 16px;
    text-align: center;
    min-height: 188px;
}
.cat-card img {
    width: 100%;
    height: 118px;
    object-fit: contain;
    margin-bottom: 10px;
}
.cat-card span {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}
.cat-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: var(--bg);
    color: var(--navy);
    display: grid;
    place-items: center;
    margin: 24px 0 18px;
}
.cat-icon svg { width: 36px; height: 36px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.product-card .thumb {
    height: 180px;
    display: grid;
    place-items: center;
    background: #fff;
    padding: 12px;
}
.product-card .thumb img {
    max-height: 156px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}
.product-card .thumb.is-photo {
    padding: 0;
    background: #eef2f6;
    overflow: hidden;
}
.product-card .thumb.is-photo img {
    width: 100%;
    height: 180px;
    max-height: none;
    object-fit: cover;
}
.featured-grid {
    grid-template-columns: repeat(4, 1fr);
}
.product-photo.is-photo {
    padding: 0;
    overflow: hidden;
}
.product-photo.is-photo img {
    width: 100%;
    max-height: 460px;
    height: 420px;
    object-fit: cover;
}
.product-card .body { padding: 0 14px 14px; }
.product-card h3 {
    font-size: 15px;
    min-height: 40px;
    color: var(--text);
}
.stars {
    display: flex;
    gap: 2px;
    margin: 6px 0 8px;
    color: var(--star-empty);
}
.stars svg { width: 14px; height: 14px; }
.stars.is-gold { color: var(--gold); }
.price {
    font-weight: 800;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 10px;
}
.product-card .btn { border-radius: 6px; min-height: 40px; font-size: 14px; }

/* Testimonials */
.testimonial-viewport { overflow: hidden; }
.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}
.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}
.testimonial-card p {
    color: #3f4a57;
    min-height: 84px;
}
.person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.person img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.person strong { display: block; font-size: 14px; }
.person span { color: var(--muted); font-size: 13px; }
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
.slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: #c9d3de;
}
.slider-dots button.is-active { background: var(--navy); }

/* Trust / Footer */
.trust-bar {
    background: var(--navy);
    color: #fff;
    padding: 32px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.trust-item svg { width: 28px; height: 28px; margin-top: 2px; }
.trust-item h3 { font-size: 16px; margin-bottom: 4px; }
.trust-item p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.82); }

.site-footer { background: var(--navy-deep); color: #d7e0ea; }
.footer-main { padding: 56px 0 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 36px;
}
.footer-brand .brand-text strong,
.footer-brand .brand-text em { color: #fff; }
.footer-about { margin: 16px 0; font-size: 14px; line-height: 1.7; }
.site-footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: grid;
    place-items: center;
    color: #fff;
}
.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.contact-list svg { width: 18px; height: 18px; margin-top: 3px; color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    font-size: 13px;
}
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icons span {
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.whatsapp-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
    z-index: 50;
    animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-fab svg { width: 30px; height: 30px; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    z-index: 60;
    font-size: 14px;
}

/* Inner pages */
.page-hero {
    background: var(--navy);
    color: #fff;
    padding: 42px 0;
}
.page-hero h1 { font-size: 36px; }
.breadcrumb { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: #fff; }

.about-wrap,
.contact-wrap,
.policy-wrap,
.account-wrap {
    display: grid;
    gap: 32px;
}
.about-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}
.about-wrap p { color: #3d4653; font-size: 16px; line-height: 1.8; }
.about-card,
.panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 28px;
}
.about-card h3,
.panel h2 { color: var(--navy); margin-bottom: 12px; }

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
}
.side-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
}
.side-nav a.is-active,
.side-nav a:hover { background: var(--bg); color: var(--navy); font-weight: 700; }
.shop-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    gap: 12px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.product-photo {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 28px;
    min-height: 420px;
    display: grid;
    place-items: center;
}
.product-photo img { max-height: 380px; object-fit: contain; }
.qty-row { display: flex; gap: 10px; align-items: center; margin: 16px 0 20px; }
.qty-row input {
    width: 72px;
    height: 44px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cart-table th,
.cart-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cart-item img { width: 64px; height: 64px; object-fit: contain; }
.cart-summary {
    margin-top: 20px;
    max-width: 360px;
    margin-left: auto;
}
.form-grid { display: grid; gap: 14px; }
.form-grid label { font-weight: 600; font-size: 14px; }
.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.contact-wrap { grid-template-columns: 1.1fr 0.9fr; }
.info-line {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.info-line svg { width: 22px; height: 22px; color: var(--navy); margin-top: 2px; }

.empty-state { text-align: center; padding: 48px 16px; color: var(--muted); }

.rental-hero-section { padding-top: 48px; }
.rental-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.rental-visual {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #eaf4ff 0%, #f7fbff 100%);
    box-shadow: var(--shadow);
}
.rental-visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
    background: linear-gradient(180deg, #eaf4ff 0%, #f7fbff 100%);
}
.rental-copy h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    color: #1b2430;
    font-weight: 800;
    margin-bottom: 16px;
}
.rental-copy p {
    color: #5b6573;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 22px;
}
.contact-now {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 10px 16px;
    margin-bottom: 14px;
    border: 1px solid #b7d6f5;
    border-radius: 8px;
    background: #eaf4ff;
    color: #1b2430;
    font-weight: 700;
    font-size: 18px;
}
.contact-now:hover { background: #dff0ff; }
.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: grid;
    place-items: center;
}
.check-icon svg { width: 16px; height: 16px; }
.btn-rent {
    background: #1a8cff;
    min-width: 160px;
}
.btn-rent:hover { background: #0d74d9; }
.rental-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.rental-points h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 8px;
}
.rental-points p { margin: 0; color: var(--muted); }

@media (prefers-reduced-motion: no-preference) {
    .js-ready .cat-card:not(.is-in),
    .js-ready .product-card:not(.is-in),
    .js-ready .testimonial-card:not(.is-in),
    .js-ready .reveal:not(.is-in) {
        opacity: 0;
        transform: translateY(16px);
    }
    .js-ready .cat-card.is-in,
    .js-ready .product-card.is-in,
    .js-ready .testimonial-card.is-in,
    .js-ready .reveal.is-in {
        animation: rise-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
}
@keyframes rise-in {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .cat-grid,
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-slide.is-active { grid-template-columns: 1fr; min-height: auto; }
    .hero-copy { max-width: none; padding: 36px 0 8px; }
    .hero-visual img { height: 280px; }
    .testimonial-card { flex-basis: calc((100% - 20px) / 2); }
    .footer-grid,
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .shop-layout,
    .product-detail,
    .about-wrap,
    .contact-wrap,
    .rental-split { grid-template-columns: 1fr; }
    .featured-grid,
    .rental-points { grid-template-columns: repeat(2, 1fr); }
    .rental-visual img { min-height: 260px; }
}

@media (max-width: 860px) {
    .header-row {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        min-height: 70px;
    }
    .search-bar,
    .nav-links,
    .link-text,
    .account-link,
    .cat-menu { display: none; }
    .icon-btn { display: grid; }
    .brand-text strong { font-size: 15px; }
    .brand img { width: 46px; height: 46px; }
    .main-nav { display: none; }
    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100dvh;
        width: min(86vw, 340px);
        background: #fff;
        z-index: 80;
        padding: 16px;
        overflow: auto;
        box-shadow: var(--shadow);
        transform: translateX(-105%);
        transition: transform 0.28s ease;
    }
    .mobile-drawer.is-open { transform: translateX(0); }
    .mobile-drawer[hidden] { display: flex; }
    .drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(7, 30, 51, 0.45);
        z-index: 70;
    }
    .drawer-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }
    .mobile-drawer a {
        display: block;
        padding: 12px 8px;
        border-bottom: 1px solid var(--border);
        font-weight: 600;
        min-height: 44px;
    }
    .drawer-search {
        display: flex;
        gap: 8px;
        margin-bottom: 12px;
    }
    .drawer-search input {
        flex: 1;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 0 12px;
    }
    .drawer-search button {
        border: 0;
        background: var(--navy);
        color: #fff;
        border-radius: 8px;
        padding: 0 12px;
        font-weight: 700;
    }
    .drawer-label {
        margin: 16px 0 6px;
        color: var(--muted);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
    .cat-grid,
    .product-grid,
    .featured-grid,
    .rental-points { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { flex-basis: 100%; }
    .section { padding: 48px 0; }
    .section-title { font-size: 26px; }
    .footer-grid,
    .trust-grid,
    .footer-bottom-row { grid-template-columns: 1fr; }
    .footer-bottom-row { text-align: center; justify-content: center; }
    .cart-table th:nth-child(3),
    .cart-table td:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
    .cat-grid,
    .product-grid,
    .featured-grid { grid-template-columns: 1fr 1fr; }
    .rental-points { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 28px; }
    .product-card h3 { font-size: 13px; min-height: 36px; }
    .product-card .btn { font-size: 13px; min-height: 40px; }
    .rental-copy h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .ticker-track { transform: none; }
}

:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}
