:root {
    --brand: #40135e;
    --brand-light: #fee4ff;
    --text-dark: #1a2024;
    --text-muted: #8b8ba3;
    --price: #353543;
    --green: #008c00;
    --danger: #e02020;
    --purple: #7048c6;
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    background: #f2f2f5;
    color: var(--text-dark);
    -webkit-tap-highlight-color: transparent;
}

/* Lock the experience to a mobile-width column, even on desktop browsers */
.app {
    max-width: 480px;
    margin: 0 auto;
    background: #f2f2f5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 40;
}

.overlay.show {
    display: block;
}

/* ---------- Header ---------- */
.app-header {
    background: var(--brand);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-row {
    display: flex;
    align-items: center;
    padding: 10px 8px;
    gap: 4px;
}

.icon-btn {
    background: transparent;
    border: none;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.header-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin: 0 0 0 4px;
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff5722;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---------- Deal banner ---------- */
.deal-banner-wrap {
    background: var(--brand-light);
    padding: 14px 14px 26px;
}

.deal-banner {
    position: relative;
    background:
        radial-gradient(120% 140% at 50% -10%, #7a3aa3 0%, #4b1768 55%, #2c0a42 100%);
    border: 3px solid #d9ae4e;
    border-radius: 22px;
    padding: 20px 34px 16px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(43, 10, 66, .35), inset 0 0 0 1px rgba(255, 255, 255, .08);
    overflow: visible;
}

.deal-banner-light {
    position: absolute;
    top: -3px;
    left: 8%;
    right: 8%;
    height: 3px;
    background-image: radial-gradient(circle, #ffe9a8 1.6px, transparent 1.8px);
    background-size: 14px 3px;
    background-repeat: repeat-x;
    opacity: .9;
}

.hourglass {
    position: absolute;
    top: 10px;
    font-size: 22px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .45));
}

.hourglass-left {
    left: 6px;
    transform: rotate(-10deg);
}

.hourglass-right {
    right: 6px;
    transform: rotate(10deg);
}

.deal-banner-title {
    font-family: 'Baloo 2', 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.05;
    margin: 4px 0 0;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: linear-gradient(180deg, #fff8d8 0%, #f8d868 45%, #d99a1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #2c0a42;
    text-shadow: 0 3px 0 #2c0a42, 0 5px 6px rgba(0, 0, 0, .35);
}

.deal-banner-ribbon {
    position: relative;
    margin: 14px auto 0;
    max-width: 94%;
    background: linear-gradient(180deg, #f7dd8a 0%, #d9ae4e 55%, #b9861f 100%);
    color: #3b1554;
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 10px;
    clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .25);
}

/* ---------- Categories ---------- */
.categories {
    padding: 8px 8px 4px;
    background: var(--brand-light);
}

.cat-list {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-list::-webkit-scrollbar {
    display: none;
}

.category {
    display: flex;
    flex-flow: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    text-decoration: none;
    cursor: pointer;
}

.category img,
.category .cat-emoji {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2px solid transparent;
}

.category.active .cat-emoji {
    border-color: var(--brand);
}

.category p {
    color: var(--price);
    font-size: 11px;
    font-weight: 600;
    margin: 4px 0 0;
    width: 72px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------- Filter chips ---------- */
.filter-bar {
    display: flex;
    gap: 8px;
    padding: 10px 8px;
    overflow-x: auto;
    background: #fff;
    scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex: 0 0 auto;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
}

.filter-chip.active {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

/* ---------- Product grid ---------- */
.products {
    padding: 0;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
}

.no-products {
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 13px;
    padding: 40px 20px;
}

.product-card {
    width: 50%;
    background: #fff;
    border: 1px solid #eee;
    border-bottom: 2px solid #eee;
    display: flex;
    flex-flow: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.product-img {
    height: 190px;
    width: 100%;
    background: #fafafa;
    padding: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
    border: none;
    cursor: pointer;
    padding: 0;
}

.wishlist-btn.active svg path {
    fill: #e02020;
    stroke: #e02020;
}

.add-btn {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.discount-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}

.product-details {
    padding: 8px 10px 10px;
}

.product-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
    line-height: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin: 2px 0;
}

.sell-price {
    color: var(--price);
    font-weight: 700;
    font-size: 15px;
}

.mrp-price {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: line-through;
}

.off-percentage {
    color: var(--green);
    font-weight: 600;
    font-size: 12px;
}

.product-message {
    font-size: 11px;
    font-weight: 600;
    margin: 3px 0;
    display: inline-block;
}

.product-message.stock-low {
    color: var(--danger);
}

.product-message.saver-deal {
    color: var(--purple);
}

.product-message.bank-offer {
    color: #26a541;
}

.rating-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 2px;
}

.star-list {
    display: flex;
    gap: 1px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-badge {
    font-size: 9px;
    font-weight: 700;
    color: #2874f0;
    border: 1px solid #2874f0;
    border-radius: 3px;
    padding: 1px 4px;
}

.delivery-msg {
    font-size: 10.5px;
    color: #666;
    margin-top: 3px;
}

/* ---------- Pagination ---------- */
.vv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 10px;
    flex-wrap: wrap;
}

.vv-page {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.vv-page.is-active {
    background: linear-gradient(180deg, var(--brand), #2a0c40);
    color: #fff;
    border-color: transparent;
}

.vv-page.vv-next {
    background: #fff;
    color: var(--brand);
    font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 28px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 48%;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 14px;
    margin: 0 0 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 12.5px;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 11.5px;
    color: #999;
}

/* ---------- Cart drawer ---------- */
.sidenav {
    height: 100%;
    width: 88%;
    max-width: 380px;
    position: fixed;
    z-index: 50;
    top: 0;
    right: -100%;
    background: #fff;
    transition: right .25s ease;
    display: flex;
    flex-flow: column;
}

.sidenav.open {
    right: 0;
}

.drawer-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.drawer-title h3 {
    margin: 0;
    font-size: 16px;
}

.closebtn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.cart-products-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 16px;
}

.cart-empty {
    text-align: center;
    margin-top: 25vh;
    color: #999;
    font-size: 14px;
}

.cart-product {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-product-img {
    width: 56px;
    height: 56px;
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    flex: 0 0 auto;
}

.cart-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-product-info {
    flex: 1;
}

.cart-product-info p {
    margin: 0 0 4px;
    font-size: 12.5px;
    font-weight: 600;
}

.cart-product-price {
    font-size: 12px;
    font-weight: 700;
}

.cart-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.cart-qty-wrapper span.qty-btn {
    width: 22px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
}

.remove-item {
    background: none;
    border: none;
    color: #e02020;
    font-size: 11px;
    cursor: pointer;
    padding: 0;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding: 12px 16px 18px;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
}

.cart-row.dashed {
    border-bottom: 1px dashed #ccc;
}

.checkout-btn {
    width: 100%;
    background: #2874f0;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 8px;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

/* ---------- Section title ---------- */
.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 14px 12px 0;
}

/* ---------- Hero carousel (home page) ---------- */
.hero-carousel {
    position: relative;
    overflow: hidden;
    margin: 10px 8px 0;
    border-radius: 10px;
}

.hero-track {
    display: flex;
    transition: transform .4s ease;
}

.hero-slide {
    flex: 0 0 100%;
    aspect-ratio: 2.5 / 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
    width: 16px;
    border-radius: 4px;
}

/* ---------- Product detail page (PDP) ---------- */
.has-sticky-footer {
    padding-bottom: 76px;
}

.pdp-gallery {
    position: relative;
    background: #fff;
}

.pdp-gallery-track {
    display: flex;
    transition: transform .3s ease;
}

.pdp-slide {
    flex: 0 0 100%;
    aspect-ratio: 1 / 1;
    background: #fafafa;
}

.pdp-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdp-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
}

.pdp-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.pdp-social-proof {
    background: #fff8e1;
    color: #7a5b00;
    font-size: 11.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-top: 1px solid #f0e0a8;
}

.pdp-body {
    background: #fff;
    padding: 14px 14px 4px;
    margin-bottom: 8px;
}

.pdp-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.35;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pdp-rating-text {
    font-size: 12px;
    color: var(--text-muted);
}

.deal-flag {
    display: inline-block;
    background: #108934;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.pdp-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.pdp-mrp {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pdp-off {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.pdp-delivery-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #444;
    border-top: 1px dashed #eee;
    padding: 10px 0;
    margin-bottom: 6px;
}

.pdp-description-card {
    background: #fafafa;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0 14px;
}

.pdp-description-card h4 {
    margin: 0 0 8px;
    font-size: 14px;
}

.pdp-description-card p {
    font-size: 12.5px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    white-space: pre-line;
}

.pdp-related {
    background: #fff;
    padding: 10px 8px 4px;
}

/* Sticky Add to Cart / Buy Now (and cart page's place-order) bar */
.pdp-actions {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: flex;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
    z-index: 30;
}

.pdp-btn {
    flex: 1;
    border-radius: 6px;
    padding: 12px 0;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.pdp-btn-outline {
    background: #fff;
    border: 1.5px solid var(--brand);
    color: var(--brand);
}

.pdp-btn-solid {
    background: #ffc200;
    color: #1a2024;
}

.pdp-btn-full {
    flex: 1 1 100%;
}

/* ---------- Full cart page ---------- */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 14px 18px;
    margin-bottom: 8px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #aaa;
    font-size: 10.5px;
    font-weight: 600;
    flex: 1;
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.step.active {
    color: var(--brand);
}

.step.active .step-num {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.step.completed {
    color: var(--green);
}

.step.completed .step-num {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

/* ---------- Checkout forms (address / payment) ---------- */
.checkout-form {
    background: #fff;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-field i {
    font-weight: 400;
    color: var(--text-muted);
    font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 400;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: var(--text-dark);
    resize: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row .form-field {
    flex: 1;
}

.radio-pill-row {
    display: flex;
    gap: 10px;
}

.radio-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
}

.radio-pill:has(input:checked) {
    border-color: var(--brand);
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
}

/* ---------- Payment options ---------- */
.pay-total-label {
    font-size: 14px;
    margin: 0 0 16px;
}

.pay-total-label span {
    color: var(--brand);
    font-weight: 800;
}

.pay-option {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
}

.pay-option input {
    position: absolute;
    opacity: 0;
}

.pay-option:has(input:checked) {
    border-color: var(--brand);
    background: var(--brand-light);
}

.pay-option-icon {
    font-size: 24px;
}

.pay-option-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.pay-option-text i {
    font-style: normal;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------- Order summary page ---------- */
.summary-card {
    background: #fff;
    padding: 14px;
    margin-bottom: 8px;
}

.summary-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.summary-card-head h4 {
    margin: 0;
    font-size: 14px;
}

.summary-card-head a {
    color: var(--brand);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
}

.summary-text {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.summary-item img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    background: #fafafa;
    border-radius: 6px;
}

.summary-item-info {
    flex: 1;
}

.summary-item-info p {
    margin: 0 0 4px;
    font-size: 12.5px;
    font-weight: 600;
}

.summary-item-info span {
    font-size: 11.5px;
    color: var(--text-muted);
}

.summary-item-price {
    font-size: 13px;
    font-weight: 700;
}

/* ---------- Order confirmation page ---------- */
.order-success-page {
    background: #fff;
    padding: 40px 24px;
    text-align: center;
    margin-bottom: 8px;
}

.order-success-icon {
    font-size: 56px;
    margin-bottom: 14px;
}

.order-success-page h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.order-id,
.order-delivery {
    font-size: 13px;
    color: #555;
    margin: 4px 0;
}

.order-total-card {
    display: flex;
    justify-content: space-between;
    background: #fafafa;
    border-radius: 8px;
    padding: 14px;
    margin: 20px 0;
    font-size: 14px;
}

.order-success-btn {
    margin-top: 8px;
}

.cart-page-list {
    background: #fff;
    padding: 6px 14px;
    margin-bottom: 8px;
}

.cart-page-footer {
    background: #fff;
    padding: 12px 14px;
}

.cart-row-total {
    font-weight: 700;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.cart-empty a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

/* ---------- Static content pages (About, Terms, Privacy, etc.) ---------- */
.static-page {
    background: #fff;
    padding: 18px 16px 30px;
    margin-bottom: 8px;
}

.static-page h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.static-page h3 {
    font-size: 14.5px;
    margin: 20px 0 8px;
    color: var(--brand);
}

.static-page p,
.static-page li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #444;
}

.static-page ul {
    padding-left: 20px;
    margin: 0;
}

.static-page a {
    color: var(--brand);
}

.static-updated {
    color: var(--text-muted) !important;
    font-size: 12px !important;
    margin: 0 0 10px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.faq-item summary {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    font-weight: 700;
    color: var(--brand);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin: 10px 0 0;
}

.contact-card {
    background: #fafafa;
    border-radius: 10px;
    padding: 14px;
    margin: 16px 0;
}

.contact-row {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 20px;
}

.contact-row strong {
    font-size: 13px;
}

.contact-row p {
    margin: 2px 0 0;
    font-size: 13px;
}

.contact-row a {
    color: var(--brand);
    text-decoration: none;
}
