* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}

/* ================= OFFER BAR ================= */
.offer-bar {
    background: #111;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    height: 42px;
    display: flex;
    align-items: center;
    position: relative;
}

.offer-track {
    display: flex;
    gap: 80px;
    animation: scrollText 25s linear infinite;
    padding-left: 100%;
    font-size: 14px;
    font-weight: 400;
}

.offer-track span {
    padding-right: 50px;
}

/* Hover par scrolling stop */
.offer-bar:hover .offer-track {
    animation-play-state: paused;
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ================= NAVBAR ================= */
.navbar {
    background: #f8f8f8;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Left Side */
.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
/* Logo (image based) */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}
/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #181818;
    font-size: 16px;
    letter-spacing: 1.5px;
    transition: 0.3s;
    position: relative;
}

.nav-links li a:hover {
    color: #777;
}

/* Icons */
.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-icons i {
    font-size: 18px;
    color: #111;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icons i:hover {
    transform: translateY(-2px);
    color: #666;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}


/* ================= MOBILE ================= */
@media(max-width:1024px) {

    .menu-toggle {
        display: block;
    }

    .nav-left {
        gap: 18px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        border-top: none;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }
}

/* Tablet */
@media(max-width:768px) {

    .navbar {
        padding: 16px 5%;
    }

  .logo-img {
        height: 34px;
    }

    .nav-icons {
        gap: 18px;
    }

    .nav-icons i {
        font-size: 17px;
    }
}

/* Small Mobile */
@media(max-width:480px) {

    .offer-track {
        font-size: 12px;
        gap: 50px;
    }

    .logo-img {
        height: 28px;
    }
    .nav-icons {
        gap: 15px;
    }
}

.nav-links li {
    position: relative;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 60px;
    left: -250px;
    width: 1000px;
    background: #f7f7f7;
    display: flex;
    gap: 40px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border-radius: 12px;

    /* Deep 3D Shadow */
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.08),
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 35px 70px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    z-index: 999;
}

/* Hover Effect */
.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Column */
.mega-column {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.mega-column h4 {
    font-size: 14px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
}

.mega-column a {
    text-decoration: none;
    color: #333;
    margin-bottom: 14px;
    font-size: 15px;
    transition: 0.3s;
}

.mega-column a:hover {
    color: #000;
    transform: translateX(4px);
}

/* Mega Menu Image */
.mega-image {
    position: relative;
    width: 220px;
    min-width: 220px;
    border-radius: 18px;
    overflow: hidden;
}

.mega-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.4s ease;
}

.mega-image:hover img {
    transform: scale(1.06);
}

.mega-image span {
    position: absolute;
    bottom: 18px;
    left: 18px;
    color: #da0a0a;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Arrow rotate on hover */
.shop-toggle i {
    transition: 0.5s ease;
}

.mega-parent:hover .shop-toggle i {
    transform: rotate(180deg);
}

/* Premium Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-icons i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #1d1a1a;

    background: #f4f4f4;
    border-radius: 50%;

    cursor: pointer;
    transition: all 0.35s ease;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}



/* Hover Effect */
.nav-icons i:hover {
    background: #d50909;
    color: #383434;

    transform: translateY(-4px) scale(1.05);

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.18),
        0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsive */
@media(max-width:768px) {
    .nav-icons {
        gap: 12px;
    }

    .nav-icons i {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Mobile mein mega image hide */
@media(max-width:1024px) {
    .mega-image {
        display: none;
    }
}

/* Responsive */
@media(max-width:991px) {

    .mega-menu {
        position: static;
        width: 100%;
        flex-wrap: wrap;
        padding: 25px;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .mega-parent:hover .mega-menu {
        display: flex;
    }

}

/* Mega Menu Default */
.mega-menu {
    position: absolute;
    top: 55px;
    left: -250px;
    width: 1000px;
    background: #f7f7f7;
    display: flex;
    gap: 40px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop Hover */
.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media(max-width:991px) {

    .mega-menu {
        position: static;
        width: 100%;

        /* 2-column grid layout */
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;

        max-height: 0;
        overflow: hidden;

        opacity: 1;
        visibility: visible;

        padding: 0;
        transition: max-height 0.5s ease, padding 0.4s ease;
        box-shadow: none;
        border-radius: 0;
        transform: none;

        background: #fafafa;
    }

    .mega-menu.active {
        max-height: 1000px;
        margin-top: 1rem;
        padding: 0;
        /* padding columns pe hoga, wrapper pe nahi */
    }

    /* Har column ka proper spacing aur divider */
    .mega-column {
        padding: 18px 20px;
        border-right: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
        min-width: unset;
        /* desktop wala min-width override */
    }

    /* Even column ka right border hatao */
    .mega-column:nth-child(even) {
        border-right: none;
    }

    .mega-column h4 {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .mega-column a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* Image mobile pe hide */
    .mega-image {
        display: none;
    }

    .shop-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
}

.menu-toggle {
    z-index: 1001;
}

/* Mobile menu properly show */
@media(max-width:1024px) {

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        overflow: hidden;

        max-height: 0;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 1000px;
        padding: 20px 0;
    }
}


/* --------------------------product pages-------------------- */
:root {
    --black: #0d0d0d;
    --white: #ffffff;
    --cream: #faf8f5;
    --border: #e5e0d8;
    --muted: #888580;
    --green: #1a6b3a;
    --wa: #25D366;
    --wa-dark: #1aab53;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}


/* ── BREADCRUMB ── */
.breadcrumb {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 28px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--black);
}

.breadcrumb span {
    opacity: .5;
}

/* ── MAIN GRID ── */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

/* ── GALLERY ── */
.gallery {
    display: flex;
    gap: 12px;
    position: sticky;
    top: 80px;
}

.thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 76px;
    flex-shrink: 0;
}

.thumb {
    width: 76px;
    height: 96px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #f0ece8;
    transition: border-color .18s, transform .15s;
    flex-shrink: 0;
}

.thumb:hover {
    transform: scale(1.03);
}

.thumb.active {
    border-color: var(--black);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-img-wrap {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f0ece8;
    aspect-ratio: 3/4;
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s;
}

.wish-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .15);
    background: rgba(255, 255, 255, .92);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
    backdrop-filter: blur(6px);
}

.wish-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.wish-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #888;
    stroke-width: 1.8;
    transition: all .2s;
}

.wish-btn.wished svg {
    fill: #e53935;
    stroke: #e53935;
}

.img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(13, 13, 13, .75);
    color: #fff;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    backdrop-filter: blur(6px);
}

/* ── INFO COLUMN ── */
.info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prod-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 30px;
    width: fit-content;
}

.prod-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price {
    font-size: 26px;
    font-weight: 500;
}

.mrp {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
}

.disc-pill {
    font-size: 12px;
    font-weight: 500;
    background: #edf7f1;
    color: var(--green);
    padding: 3px 10px;
    border-radius: 30px;
}

/* ── SIZES ── */
.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sz {
    min-width: 48px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sz:hover {
    border-color: var(--black);
}

.sz.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.sz.oos {
    opacity: .35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.size-guide {
    font-size: 12px;
    color: var(--muted);
    text-decoration: underline;
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
}

/* ── ACTION BUTTONS ── */
.action-row {
    display: flex;
    gap: 10px;
}

.btn-wa,
.btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
}

.btn-wa:active,
.btn-call:active {
    transform: scale(.98);
}

.btn-wa {
    background: var(--wa);
    color: #fff;
}

.btn-wa:hover {
    background: var(--wa-dark);
}

.btn-wa svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

.btn-call {
    background: var(--black);
    color: #fff;
    flex: 0 0 auto;
    padding: 15px 20px;
    border-radius: 8px;
}

.btn-call:hover {
    background: #333;
}

.btn-call svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ── DELIVERY BOX ── */
.delivery-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    background: var(--white);
}

.pin-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.pin-row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 13px;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    outline: none;
    transition: border-color .2s;
}

.pin-row input:focus {
    border-color: var(--black);
}

.pin-row input::placeholder {
    color: var(--muted);
}

.pin-row button {
    padding: 10px 18px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background .2s;
}

.pin-row button:hover {
    background: #333;
}

.pin-result {
    font-size: 12px;
    margin-top: 8px;
    color: var(--green);
    display: none;
}

.perks {
    display: flex;
    gap: 0;
    margin-top: 14px;
    flex-wrap: wrap;
}

.perk {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--muted);
    padding: 0 16px 0 0;
    margin-right: 16px;
    border-right: 1px solid var(--border);
}

.perk:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.perk svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
}

/* ── ACCORDION ── */
.accordion {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-item:last-child {
    border-bottom: none;
}

.acc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    user-select: none;
    background: var(--white);
    transition: background .15s;
}

.acc-head:hover {
    background: var(--cream);
}

.acc-head-left span {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    display: block;
}

.acc-head-left small {
    font-size: 12px;
    color: var(--muted);
}

.acc-arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--muted);
    stroke-width: 2;
    transition: transform .25s;
    flex-shrink: 0;
}

.acc-body {
    display: none;
    padding: 0 18px 18px;
    background: var(--white);
}

.acc-body.open {
    display: block;
    animation: fadeDown .2s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-top: 4px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    margin-bottom: 3px;
}

.spec-val {
    font-size: 13px;
    color: var(--black);
}

.desc-text {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
}

/* ── TRUST STRIP ── */
.trust-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    text-align: center;
    border-right: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--black);
    fill: none;
    stroke-width: 1.5;
}

.trust-item strong {
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery {
        position: static;
    }

    .nav {
        padding: 14px 20px;
    }

    .page {
        padding: 24px 16px 60px;
    }

    .prod-title {
        font-size: 22px;
    }
}

@media (max-width: 520px) {
    .thumbs {
        width: 58px;
    }

    .thumb {
        width: 58px;
        height: 74px;
    }

    .perks {
        gap: 8px;
    }

    .perk {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .trust-strip {
        flex-wrap: wrap;
    }

    .trust-item {
        min-width: 50%;
        border-bottom: 1px solid var(--border);
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}
.action-row {
    display: flex;
    gap: 10px;
}

.btn-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 10px;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: .06em;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.btn-cart:hover { background: #333; }
.btn-cart:active { transform: scale(.98); }
.btn-cart svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    flex-shrink: 0;
}

.btn-buynow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 8px;
    background: #FFD600;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: .06em;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.btn-buynow:hover { background: #f5c800; }
.btn-buynow:active { transform: scale(.98); }



































/* ===== FOOTER ===== */
.site-footer {
    background: #000;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

/* ===== TOP GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

/* Column heading */
.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

/* Links */
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* ===== EMAIL SUBSCRIBE ===== */
.subscribe-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #555;
    margin-bottom: 1rem;
    padding-bottom: 6px;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    padding: 4px 0;
}

.subscribe-form input::placeholder {
    color: #777;
}

.subscribe-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 0 4px;
    line-height: 1;
    transition: opacity 0.2s;
}

.subscribe-form button:hover {
    opacity: 0.7;
}

.subscribe-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* ===== SOCIAL ICONS ===== */
.social-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #fff;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== DIVIDER ===== */
.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 0 0 1.75rem;
}

/* ===== APP DOWNLOAD BUTTONS ===== */
.app-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.app-btn:hover {
    border-color: #888;
    background: #111;
}

.app-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    flex-shrink: 0;
}

/* ===== COPYRIGHT ===== */
.footer-copy {
    font-size: 12px;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 2.5rem 1.25rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 1.5rem;
    }

    .app-btns {
        flex-direction: column;
    }

    .app-btn {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}