/* ═══════════════════════════════════════════
   TAYYAB JEWELLERS — Gold & Silver Only
   ═══════════════════════════════════════════ */

:root {
    /* Gold */
    --gold: #D4AF37;
    --gold-light: #F0D78C;
    --gold-pale: #FFF8E7;
    --gold-dark: #9A7B1A;
    --gold-deep: #7A6215;

    /* Silver */
    --silver: #A8A8A8;
    --silver-light: #D8D8D8;
    --silver-pale: #F0F0F0;
    --silver-dark: #6B6B6B;
    --silver-deep: #4A4A4A;

    /* Neutrals (white only for backgrounds) */
    --white: #FFFFFF;
    --text: var(--silver-deep);
    --text-light: var(--silver-dark);

    --shadow: 0 4px 20px rgba(154, 123, 26, 0.1);
    --shadow-hover: 0 8px 30px rgba(154, 123, 26, 0.18);
    --radius: 12px;
    --ease: .3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--silver-deep);
}

a { text-decoration: none; color: inherit; transition: all var(--ease); }
img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-deep), var(--gold), var(--gold-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: var(--white);
    border: 2px solid var(--silver);
    color: var(--silver-deep);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: var(--gold-pale);
}

.btn-row,
.shop-hero__btns,
.detail__actions,
.shop-visit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.shop-visit__actions {
    margin-top: 4px;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    color: var(--white);
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
}

.btn--silver {
    background: linear-gradient(135deg, var(--silver-dark), var(--silver), var(--silver-light));
    color: var(--white);
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
}

/* ─── ICONS ─── */
.ui-icon {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
}

.ui-icon path[fill="none"],
.ui-icon circle[fill="none"],
.ui-icon ellipse[fill="none"] {
    vector-effect: non-scaling-stroke;
}

.btn--icon,
.inline-link-icon,
.top-strip__link,
.footer-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--icon svg,
.inline-link-icon svg,
.top-strip__link svg,
.footer-link-icon svg,
.contact-box__link svg,
.blog-card__link svg {
    flex-shrink: 0;
}

.top-strip__link {
    color: var(--white);
    opacity: .95;
}

.top-strip__link:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-strip__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    transition: all var(--ease);
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.social-icon--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.footer-link-icon {
    font-size: 13px;
    color: var(--silver);
    margin-bottom: 8px;
}

.footer-link-icon span {
    line-height: 1.5;
}

.footer-link-icon:hover { color: var(--gold-light); }

.shop-footer__hours.footer-link-icon {
    margin-top: 4px;
}

.trust-badge__icon {
    display: block;
    margin: 0 auto 8px;
    color: var(--gold-light);
}

.home-service__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-pale), var(--silver-pale));
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    color: var(--gold-dark);
}

.shop-visit__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    color: var(--gold-dark);
}

.contact-box__meta--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.inline-link-icon {
    color: inherit;
}

.inline-link-icon:hover { color: var(--gold); }

.page-hero__sep-icon {
    opacity: .45;
    margin: 0 4px;
}

.google-reviews-actions .inline-link-icon {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
}

.gold-rates-note .btn {
    margin: 0 6px 8px;
}

.gold-rates-board__contact .inline-link-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: inherit;
}

.gold-rates-ticker__label,
.gold-rates-ticker__more {
    color: inherit;
}

/* ─── TOP STRIP ─── */
.top-strip {
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--silver), var(--gold));
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}

.top-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-strip span { opacity: .95; }

.top-strip__item { opacity: .95; }

.top-strip__tagline {
    letter-spacing: 0.5px;
    font-weight: 500;
}

.top-strip a {
    color: var(--white);
    opacity: .95;
}

.top-strip a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ─── HEADER ─── */
.shop-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--gold), var(--silver), var(--gold)) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(168, 168, 168, 0.12);
    transition: box-shadow var(--ease), padding var(--ease);
}

.shop-header--scrolled {
    box-shadow: 0 4px 24px rgba(154, 123, 26, 0.12);
}

.shop-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.shop-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 62px;
    width: auto;
    max-width: 260px;
    display: block;
    object-fit: contain;
}

.shop-header__nav { display: flex; gap: 28px; }

.shop-header__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--silver-deep);
    position: relative;
    padding: 4px 0;
}

.shop-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width var(--ease);
}

.shop-header__nav a:hover,
.shop-header__nav a.active { color: var(--gold-dark); }

.shop-header__nav a:hover::after,
.shop-header__nav a.active::after { width: 100%; }

.shop-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}

.shop-header__cta:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
}

.shop-header__menu {
    display: none;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    padding: 6px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.shop-header__menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold-dark);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}

.shop-header__mobile {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--silver-light);
    padding: 12px 20px 16px;
}

.shop-header__mobile.open { display: block; }

.shop-header__mobile a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--silver-deep);
    border-bottom: 1px solid var(--silver-pale);
}

.shop-header__mobile a:hover { color: var(--gold); }

/* ─── HERO ─── */
.shop-hero { position: relative; overflow: hidden; }

.shop-hero__slide {
    position: relative;
    min-height: 480px;
    max-height: 560px;
}

.shop-hero__slide > img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.shop-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,248,231,.85) 40%, transparent 100%);
}

.shop-hero__badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid var(--gold);
}

.shop-hero__content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.shop-hero__content h1 .text-gold { color: var(--gold-dark); }
.shop-hero__content h1 .text-silver { color: var(--silver-dark); }

.shop-hero__content p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 460px;
    margin-bottom: 28px;
}

.shop-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── PROMO STRIP ─── */
.promo-strip {
    background: var(--silver-pale);
    border-top: 1px solid var(--silver-light);
    border-bottom: 1px solid var(--silver-light);
    padding: 14px 0;
}

.promo-strip__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.promo-strip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--silver-deep);
}

.promo-strip__item .ui-icon {
    color: var(--gold-dark);
}

.promo-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.promo-strip span {
    font-size: 13px;
    font-weight: 500;
    color: var(--silver-deep);
}

.promo-strip span:nth-child(odd) { color: var(--gold-dark); }

/* ─── SECTION TITLE ─── */
.section-title { text-align: center; margin-bottom: 44px; }

.section-title__sub {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.section-title__sub--pro {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.section-title__line--left {
    margin: 16px 0;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.section-title__line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--silver), var(--gold));
    margin: 0 auto 12px;
    border-radius: 3px;
}

.section-title__desc { color: var(--text-light); font-size: 14px; }

/* ─── SHOP SECTION ─── */
.shop-section {
    padding: 70px 0;
    background: var(--white);
}

.shop-section--soft { background: var(--gold-pale); }

.shop-section--silver { background: var(--silver-pale); }

.shop-section__more { text-align: center; margin-top: 40px; }

/* ─── CATEGORIES ─── */
.shop-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: stretch;
}

.shop-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    transition: all var(--ease);
}

.shop-cat:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.shop-cat__circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    background: var(--gold-pale);
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: all var(--ease);
}

.shop-cat:hover .shop-cat__circle {
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    color: var(--white);
    border-color: var(--gold);
}

.shop-cat__circle svg { width: 26px; height: 26px; }

.shop-cat h3 {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
}

.shop-cat span {
    font-size: 11px;
    color: var(--silver);
    margin-top: auto;
    padding-top: 10px;
}

.shop-cats--page {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.shop-cat--page {
    padding: 36px 24px;
}

.shop-cat--page h3 { font-size: 16px; }

.shop-cat__desc {
    font-size: 12px;
    color: var(--text-light);
    margin: 6px 0 0;
    line-height: 1.65;
    flex: 1;
}

/* ─── BANNERS ─── */
.shop-banners { padding: 0 0 70px; background: var(--white); }

.shop-banners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.shop-banner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 36px;
    border-radius: var(--radius);
    gap: 20px;
    transition: transform var(--ease), box-shadow var(--ease);
    overflow: hidden;
}

.shop-banner__text {
    flex: 1;
    min-width: 0;
    padding-right: 4px;
}

.shop-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.shop-banner--gold {
    background: linear-gradient(135deg, var(--gold-pale), #FFF3CC);
    border: 1px solid var(--gold-light);
}

.shop-banner--silver {
    background: linear-gradient(135deg, var(--silver-pale), var(--silver-light));
    border: 1px solid var(--silver);
}

.shop-banner__text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver-dark);
}

.shop-banner--gold h3 {
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin: 6px 0 4px;
}

.shop-banner--silver h3 {
    font-size: 1.6rem;
    color: var(--silver-deep);
    margin: 6px 0 4px;
}

.shop-banner__text p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.shop-banner--gold em {
    display: inline-flex;
    align-items: center;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    padding: 10px 18px;
    border-radius: 50px;
    margin-top: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.shop-banner--silver em {
    display: inline-flex;
    align-items: center;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--silver-dark), var(--silver));
    padding: 10px 18px;
    border-radius: 50px;
    margin-top: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(74, 74, 74, 0.2);
}

.shop-banner__img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.shop-banner--gold .shop-banner__img { border: 3px solid var(--gold-light); }
.shop-banner--silver .shop-banner__img { border: 3px solid var(--silver); }

.shop-banner__img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── PRODUCTS ─── */
.shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.shop-products--4 {
    grid-template-columns: repeat(4, 1fr);
}

.shop-product {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--silver-light);
    transition: all var(--ease);
    display: block;
}

.shop-product:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.shop-product__img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--silver-pale);
}

.shop-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.shop-product:hover .shop-product__img img { transform: scale(1.06); }

.shop-product__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.shop-product__tag--gold {
    background: var(--gold);
    color: var(--white);
}

.shop-product__tag--silver {
    background: var(--silver);
    color: var(--white);
}

.shop-product__hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(154,123,26,.82), rgba(107,107,107,.82));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity var(--ease);
}

.shop-product:hover .shop-product__hover { opacity: 1; }

.shop-product__info { padding: 18px 16px 20px; text-align: center; }

.shop-product__cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600;
}

.shop-product__info h3 {
    font-size: 15px;
    font-family: 'Playfair Display', serif;
    margin: 6px 0 8px;
    line-height: 1.35;
}

.shop-product__price {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold-dark);
}

.shop-product__weight {
    font-size: 11px;
    color: var(--silver);
    margin-top: 2px;
}

/* ─── FEATURES ─── */
.shop-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shop-feature {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    transition: all var(--ease);
    height: 100%;
}

.shop-feature:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow);
}

.shop-feature__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--gold-pale), var(--silver-pale));
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.shop-feature__icon svg {
    display: block;
}

.shop-feature__icon--pro {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-dark);
}

.shop-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gold-dark);
}

.shop-feature p {
    font-size: 13px;
    color: var(--silver-dark);
    line-height: 1.65;
}

/* ─── VISIT ─── */
.shop-visit {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--silver-pale) 50%, var(--gold-pale) 100%);
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--silver-light);
}

.shop-visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.shop-visit__text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold-dark);
    margin: 8px 0 14px;
}

.shop-visit__text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.shop-visit__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--silver-light);
    box-shadow: var(--shadow);
}

.shop-visit__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--silver-pale);
}

.shop-visit__item:last-child { border-bottom: none; }

.shop-visit__item strong { font-size: 22px; }

.shop-visit__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    flex-shrink: 0;
    margin-top: 5px;
}

.home-about__btn { margin-top: 8px; }

.shop-visit__item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 2px;
}

.shop-visit__item p { font-size: 13px; color: var(--silver-dark); }

/* ─── HOME: About Intro ─── */
.home-about {
    padding: 70px 0;
    background: var(--white);
    border-bottom: 1px solid var(--silver-light);
}

.home-about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.home-about__text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
}

.home-about__text p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.home-about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 28px 16px;
    border-radius: var(--radius);
    border: 1px solid;
}

.stat-box--gold {
    background: var(--gold-pale);
    border-color: var(--gold-light);
}

.stat-box--silver {
    background: var(--silver-pale);
    border-color: var(--silver-light);
}

.stat-box strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 4px;
}

.stat-box--gold strong { color: var(--gold-dark); }
.stat-box--silver strong { color: var(--silver-deep); }

.stat-box span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

/* ─── HOME: Services ─── */
.home-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-service {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    transition: all var(--ease);
}

.home-service:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow);
}

.home-service h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.home-service p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.75;
}

/* ─── HOME: Testimonials ─── */
.home-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    border-top: 3px solid var(--gold);
}

.testimonial p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial footer {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
}

/* ─── HOME: FAQ ─── */
.home-faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--silver-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--silver-deep);
    cursor: pointer;
    list-style: none;
    transition: color var(--ease);
}

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

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--gold);
    font-size: 18px;
    font-weight: 400;
}

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

.faq-item[open] summary { color: var(--gold-dark); }

.faq-item p {
    padding: 0 22px 18px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ─── FOOTER ─── */
.shop-footer {
    background: linear-gradient(180deg, var(--silver-deep) 0%, #3A3A3A 100%);
    color: var(--silver-light);
    padding-top: 0;
    border-top: 3px solid var(--gold);
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.shop-footer__trust {
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 24px 0;
}

.shop-footer__trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-badge {
    text-align: center;
    padding: 8px 12px;
}

.trust-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.trust-badge span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--silver);
}

.shop-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.shop-footer__hours {
    font-size: 12px;
    color: var(--silver);
    margin-top: 8px;
    line-height: 1.5;
}

.shop-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 36px;
    padding: 48px 0 40px;
    align-items: start;
}

.shop-footer__links {
    display: contents;
}

.shop-footer__logo-link {
    display: inline-block;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.94);
    padding: 8px 14px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.shop-footer__logo-link .brand-logo {
    height: 50px;
    width: auto;
    max-width: 220px;
}

.shop-footer__brand p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--silver);
    max-width: 320px;
}

.shop-footer__col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.shop-footer__col a {
    display: block;
    font-size: 13px;
    color: var(--silver);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.shop-footer__col a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.shop-footer__col--contact .footer-link-icon span {
    word-break: break-word;
}

.shop-footer__bottom {
    border-top: 1px solid rgba(168, 168, 168, 0.2);
    padding: 18px 0;
}

.shop-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-footer__bottom p {
    font-size: 12px;
    color: var(--silver);
}

.shop-footer__domain {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── INNER PAGES ─── */
.page-hero {
    background: linear-gradient(135deg, var(--gold-pale), var(--silver-pale));
    padding: 48px 0 52px;
    text-align: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--gold-light), var(--silver), var(--gold-light)) 1;
}

.page-hero__inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-hero__breadcrumb {
    font-size: 12px;
    color: var(--silver);
    margin-bottom: 16px;
}

.page-hero__breadcrumb a {
    color: var(--gold-dark);
    font-weight: 500;
}

.page-hero__breadcrumb a:hover { color: var(--gold); }

.page-hero__sep {
    margin: 0 8px;
    color: var(--silver-light);
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.page-hero p { color: var(--silver-dark); font-size: 14px; }

.page-body {
    padding: 56px 0;
    background: var(--white);
}

.page-body--compact { padding: 48px 0; }

.page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--silver-pale);
}

.page-toolbar p {
    font-size: 13px;
    color: var(--text-light);
}

.page-toolbar__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
}

.page-toolbar__link:hover { color: var(--gold); }

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    border: 1px dashed var(--gold-light);
}

.empty-state h3 {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    font-size: 13px;
    color: var(--silver);
    margin-bottom: 28px;
}

.breadcrumb a { color: var(--gold-dark); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }

.detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    box-shadow: var(--shadow);
}

.detail__img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    border: 2px solid var(--gold-light);
    position: relative;
}

.detail__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.detail__badge--gold {
    background: var(--gold);
    color: var(--white);
}

.detail__badge--silver {
    background: var(--silver);
    color: var(--white);
}

.detail__trust {
    list-style: none;
    margin-bottom: 24px;
}

.detail__trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.detail__trust li svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.detail__img img { width: 100%; height: 100%; object-fit: cover; }

.detail__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

.detail h1 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin: 8px 0 16px;
    color: var(--gold-dark);
}

.detail__meta {
    display: flex;
    gap: 28px;
    padding: 16px 0;
    border-top: 1px dashed var(--silver-light);
    border-bottom: 1px dashed var(--silver-light);
    margin-bottom: 16px;
}

.detail__meta label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver);
}

.detail__meta span {
    font-weight: 600;
    color: var(--gold-dark);
}

.detail__price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.detail__desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.detail__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.prose {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    box-shadow: var(--shadow);
}

.prose h2 {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-light);
}

.prose h2:first-child { margin-top: 0; }

.prose--wide { max-width: 760px; }

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
}

.about-intro p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gold-light);
    box-shadow: var(--shadow);
}

.about-image__badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold-dark);
}

.about-image__badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

.prose p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    box-shadow: var(--shadow);
}

.contact-form-card h2 {
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.contact-form-card__lead {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--silver-deep);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border: 1px solid var(--silver-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-box {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--silver-light);
    transition: all var(--ease);
}

.contact-box--highlight {
    background: linear-gradient(135deg, var(--gold-pale), var(--silver-pale));
    border-color: var(--gold-light);
}

.contact-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--gold-pale), var(--silver-pale));
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    color: var(--gold-dark);
}

.contact-box__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
}

.contact-box__meta {
    font-size: 11px;
    color: var(--silver);
    margin-top: 4px;
}

.contact-box:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.contact-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.contact-box p, .contact-box a {
    font-size: 13px;
    color: var(--silver-dark);
}

.contact-box a:hover { color: var(--gold); }

/* WhatsApp float & scroll top */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.scroll-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
}
    z-index: 998;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold-dark);
}

/* ─── GOLD RATES ─── */
.gold-rates-ticker {
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-dark), var(--gold-deep));
    color: var(--white);
    padding: 12px 0;
    overflow-x: clip;
}

.gold-rates-ticker__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gold-rates-ticker__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.gold-rates-ticker__items {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.gold-rates-ticker__item {
    font-size: 12px;
    white-space: nowrap;
}

.gold-rates-ticker__item em {
    font-style: normal;
    opacity: 0.85;
    margin-right: 6px;
}

.gold-rates-ticker__item strong {
    font-weight: 700;
    color: var(--white);
}

.gold-rates-ticker__more {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.gold-rates-ticker__more:hover {
    color: var(--white);
    text-decoration: underline;
}

.gold-rates-board {
    background: var(--white);
    border: 2px solid var(--silver-deep);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.gold-rates-board__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: var(--silver-deep);
    color: var(--white);
    padding: 20px 24px;
    border-bottom: 3px solid var(--gold);
}

.gold-rates-board__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gold-rates-board__brand .brand-logo {
    height: 44px;
    background: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
}

.gold-rates-board__brand strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
}

.gold-rates-board__brand span {
    font-size: 12px;
    color: var(--silver-light);
}

.gold-rates-board__update {
    text-align: right;
}

.gold-rates-board__update span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--silver-light);
}

.gold-rates-board__update strong {
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: 700;
}

.gold-rates-board__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gold-rates-panel {
    padding: 0;
    border-right: 1px solid var(--silver-light);
}

.gold-rates-panel:last-child {
    border-right: none;
}

.gold-rates-panel h3 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 16px;
    background: var(--silver-pale);
    border-bottom: 2px solid var(--silver-deep);
    color: var(--silver-deep);
}

.gold-rates-panel--local h3 {
    background: var(--gold-pale);
    color: var(--gold-dark);
}

.gold-rates-panel__sub {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-dark);
    padding: 8px 16px;
    background: var(--gold-pale);
    border-bottom: 1px solid var(--gold-light);
}

.gold-rates-table {
    width: 100%;
    border-collapse: collapse;
}

.gold-rates-table td {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--silver-pale);
}

.gold-rates-table td:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.gold-rates-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--silver-deep);
}

.gold-rates-panel--local .gold-rates-table td:last-child {
    color: var(--gold-dark);
}

.gold-rates-table tr:last-child td {
    border-bottom: none;
}

.gold-rates-board__footer {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    padding: 20px 24px;
    background: var(--silver-pale);
    border-top: 1px solid var(--silver-light);
}

.gold-rates-board__contact strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.gold-rates-board__contact strong a {
    color: var(--silver-deep);
}

.gold-rates-board__contact a {
    font-size: 13px;
    color: var(--gold-dark);
}

.gold-rates-board__warn {
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.gold-rates-board__urdu {
    font-size: 14px;
    color: var(--silver-deep);
    margin-bottom: 6px;
    direction: rtl;
}

.gold-rates-board__source {
    font-size: 11px;
    color: var(--silver);
}

.gold-rates-note {
    text-align: center;
    margin-top: 32px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.gold-rates-note p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .gold-rates-board__grid { grid-template-columns: 1fr; }
    .gold-rates-panel { border-right: none; border-bottom: 1px solid var(--silver-light); }
    .gold-rates-board__footer { grid-template-columns: 1fr; }

    .promo-strip {
        padding: 16px 0;
    }

    .promo-strip__inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 16px;
        justify-items: stretch;
    }

    .promo-strip__item {
        justify-content: flex-start;
        padding: 8px 10px;
        background: var(--white);
        border: 1px solid var(--silver-light);
        border-radius: 10px;
        font-size: 12px;
    }

    .gold-rates-ticker {
        padding: 14px 0 16px;
    }

    .gold-rates-ticker__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .gold-rates-ticker__label {
        justify-content: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .gold-rates-ticker__items {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .gold-rates-ticker__item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 10px 12px;
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        white-space: normal;
        font-size: 11px;
        line-height: 1.35;
    }

    .gold-rates-ticker__item em {
        display: block;
        margin-right: 0;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        line-height: 1.3;
    }

    .gold-rates-ticker__item strong {
        font-size: 13px;
        letter-spacing: 0.3px;
    }

    .gold-rates-ticker__more {
        justify-content: center;
        align-self: center;
        min-width: 140px;
        padding: 10px 18px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 50px;
        background: rgba(0, 0, 0, 0.12);
    }
}

/* ─── GOOGLE REVIEWS ─── */
.google-rating-stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.google-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.google-review {
    background: var(--white);
    padding: 24px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    border-top: 3px solid var(--gold);
}

.google-review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-review__head strong {
    font-size: 14px;
    color: var(--gold-dark);
}

.google-review__stars {
    color: var(--gold);
    font-size: 14px;
}

.google-review p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

.google-review footer {
    font-size: 12px;
    color: var(--silver);
}

.google-reviews-fallback {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.google-reviews-map iframe,
.contact-map-wrap iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
    box-shadow: var(--shadow);
}

.google-reviews-cta {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--silver-light);
}

.google-reviews-cta h3 {
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.google-reviews-cta p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 18px;
}

.google-reviews-cta .btn-row {
    margin-bottom: 14px;
}

.google-reviews-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.google-reviews-note {
    font-size: 12px;
    color: var(--silver);
    margin-top: 16px;
}

.google-reviews-actions {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
}

.google-reviews-actions a {
    color: var(--gold-dark);
    font-weight: 600;
}

.google-reviews-actions a:hover {
    color: var(--gold);
}

.google-reviews-actions span {
    margin: 0 10px;
    color: var(--silver);
}

.contact-map-wrap {
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .google-reviews { grid-template-columns: 1fr; }
    .google-reviews-fallback { grid-template-columns: 1fr; }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid var(--silver-light);
    color: var(--text);
    background: var(--white);
}

.pagination a:hover { border-color: var(--gold); color: var(--gold-dark); }

.pagination .active span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    font-weight: 600;
}

/* ─── BLOG ─── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }

.blog-card {
    background: var(--white);
    border: 1px solid var(--silver-light);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(184, 134, 11, .12);
    transform: translateY(-3px);
}

.blog-card__img {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__body {
    padding: 20px 22px 24px;
}

.blog-card__body time {
    display: block;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-card__body h3 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card__body h3 a {
    color: var(--text);
    transition: color .2s;
}

.blog-card__body h3 a:hover { color: var(--gold-dark); }

.blog-card__body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: .02em;
}

.blog-card__link:hover { color: var(--gold); }

.blog-article {
    max-width: 820px;
}

.blog-article__featured {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--silver-light);
}

.blog-article__featured img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.blog-article__content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
}

.blog-article__content p { margin-bottom: 1.25em; }

.blog-article__content p:last-child { margin-bottom: 0; }

.blog-article__cta {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--cream);
    border: 1px solid var(--silver-light);
    border-radius: 12px;
    text-align: center;
}

.blog-article__cta p {
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Legacy */
.products, .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .shop-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .shop-products, .products, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-products--4 { grid-template-columns: repeat(2, 1fr); }
    .shop-features { grid-template-columns: repeat(2, 1fr); }
    .home-about__grid { grid-template-columns: 1fr; }
    .home-services { grid-template-columns: repeat(2, 1fr); }
    .home-testimonials { grid-template-columns: 1fr; }
    .shop-footer__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 28px 32px;
    }

    .shop-footer__brand {
        grid-column: 1 / -1;
    }

    .shop-footer__col--contact {
        grid-column: 1 / -1;
    }

    .shop-footer__trust-inner { grid-template-columns: repeat(2, 1fr); }
    .shop-banners__grid { grid-template-columns: 1fr; gap: 16px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .blog-grid, .blog-grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-strip__inner { justify-content: center; text-align: center; }
    .top-strip__tagline { display: none; }
    .shop-header__nav, .shop-header__cta { display: none; }
    .shop-header__menu { display: flex; }
    .shop-hero__slide > img { height: 400px; }
    .shop-hero__content {
        background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,248,231,.88) 100%);
        align-items: flex-end;
        padding-bottom: 36px;
    }

    .shop-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 18px;
    }

    .shop-banner__text {
        padding-right: 0;
        order: 2;
    }

    .shop-banner__img {
        width: 96px;
        height: 96px;
        align-self: center;
        order: 1;
    }

    .shop-banner--gold h3,
    .shop-banner--silver h3 {
        font-size: 1.4rem;
    }

    .shop-banner--gold em,
    .shop-banner--silver em {
        align-self: flex-start;
    }
    .shop-cats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .shop-cat,
    .shop-cat--page {
        padding: 28px 22px;
    }

    .shop-cat__desc {
        max-width: 360px;
    }
    .shop-products, .products, .products-grid { grid-template-columns: 1fr; }
    .shop-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shop-feature {
        display: block;
        text-align: center;
        padding: 28px 22px;
    }

    .shop-feature__icon {
        margin: 0 auto 14px;
        width: 56px;
        height: 56px;
    }

    .shop-feature h4 {
        margin-bottom: 8px;
    }

    .shop-feature p {
        max-width: 340px;
        margin: 0 auto;
    }

    .home-services { grid-template-columns: 1fr; }
    .home-about__stats { grid-template-columns: 1fr 1fr; }
    .shop-visit__inner { grid-template-columns: 1fr; }

    .btn-row,
    .shop-hero__btns,
    .detail__actions,
    .shop-visit__actions,
    .blog-article__cta .btn-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-row .btn,
    .shop-hero__btns .btn,
    .detail__actions .btn,
    .shop-visit__actions .btn,
    .blog-article__cta .btn-row .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 12px 22px;
    }
    .shop-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 0 32px;
    }

    .shop-footer__brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shop-footer__brand p {
        max-width: 100%;
    }

    .shop-footer__social {
        justify-content: center;
    }

    .shop-footer__links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }

    .shop-footer__col--contact {
        padding-top: 4px;
        border-top: 1px solid rgba(168, 168, 168, 0.2);
    }

    .shop-footer__trust {
        padding: 20px 0;
    }

    .shop-footer__trust-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .shop-footer__bottom-inner { justify-content: center; text-align: center; }
    .detail { grid-template-columns: 1fr; padding: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        right: max(16px, env(safe-area-inset-right, 0px));
    }

    .scroll-top {
        bottom: 78px;
        right: max(16px, env(safe-area-inset-right, 0px));
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
    }

    .brand-logo {
        height: 48px;
        max-width: 200px;
    }

    .promo-strip__inner {
        grid-template-columns: 1fr;
    }

    .promo-strip__item {
        justify-content: center;
    }

    .gold-rates-ticker__items {
        grid-template-columns: 1fr;
    }

    .shop-footer__trust-inner {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trust-badge {
        padding: 6px 8px;
    }

    .trust-badge strong {
        font-size: 1.2rem;
    }

    .trust-badge span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .shop-footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .shop-footer__col h4 {
        margin-bottom: 12px;
    }

    .shop-footer__bottom-inner {
        flex-direction: column;
        gap: 4px;
    }

    .shop-footer__logo-link .brand-logo {
        height: 44px;
        max-width: 190px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        right: max(16px, env(safe-area-inset-right, 0px));
    }

    .scroll-top {
        bottom: 78px;
        right: max(16px, env(safe-area-inset-right, 0px));
    }
}
