
        :root {
            --clr-bg: #f5f4f0;
            --clr-card: #ffffff;
            --clr-border: #e8e4dc;
            --clr-gold: #e6a817;
            --clr-text: #1a1612;
            --clr-muted: #7a736a;
            --clr-accent: #c9882a;
            --card-w: 300px;
            --card-gap: 20px;
            --anim-speed: 35s;
              --sib-gold: #c9a96e;
            --sib-gold-light: #e8cc9a;
            --sib-dark: #14120f;
            --sib-mid: #2a2520;
            --sib-cream: #f5f0e8;
            --sib-warm: #ede6d9;
            --sib-border: rgba(201, 169, 110, 0.2);
            --sib-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
            --sib-radius: 16px;
            --sib-ease: cubic-bezier(.4, 0, .2, 1);
        }

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease-in-out;
}

/* Stack images */
.img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Hover Effect */
.product-image:hover .img-secondary {
    opacity: 1;
}

.product-image:hover .img-primary {
    opacity: 0;
}

        /* HEADING */
        .sbr-heading {
            text-align: center;
            padding: 0 20px;
            margin-top: 55px;
        }

        .sbr-heading h2 {
       
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1.1;
        }

        .sbr-heading h2 span {
            color: var(--clr-accent);
        }

        .sbr-heading p {
            margin-top: 8px;
      font-size: 30px;
            color:black;
            font-weight: 300;
        }

        /* CAROUSEL */
        .sbr-overflow {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .sbr-overflow::before,
        .sbr-overflow::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 110px;
            z-index: 2;
            pointer-events: none;
        }

        .sbr-overflow::before {
            left: 0;
            background: linear-gradient(to right, var(--clr-bg), transparent);
        }

        .sbr-overflow::after {
            right: 0;
            background: linear-gradient(to left, var(--clr-bg), transparent);
        }

        .sbr-track {
            display: flex;
            gap: var(--card-gap);
            width: max-content;
            animation: sbr-rtl var(--anim-speed) linear infinite;
            will-change: transform;
        }

        .sbr-track:hover {
            animation-play-state: paused;
        }

        @keyframes sbr-rtl {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* CARD */
        .sbr-card {
            width: var(--card-w);
            flex-shrink: 0;
            background: var(--clr-card);
            border: 1px solid var(--clr-border);
            border-radius: 18px;
            padding: 22px 20px 20px;
            box-shadow: 0 2px 18px rgba(0, 0, 0, .07);
            display: flex;
            flex-direction: column;
            gap: 13px;
            transition: box-shadow .25s, transform .25s;
            cursor: default;
        }

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

        .sbr-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sbr-reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sbr-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
          
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            flex-shrink: 0;
        }

        .sbr-meta {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .sbr-name {
            font-size: .88rem;
            font-weight: 500;
        }

        .sbr-date {
            font-size: .74rem;
            color: var(--clr-muted);
            font-weight: 300;
        }

        .sbr-g {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        .sbr-stars-row {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .sbr-stars {
            display: flex;
            gap: 2px;
        }

        .sbr-stars i {
            font-style: normal;
            font-size: 1rem;
            color: var(--clr-gold);
        }

        .sbr-stars i.sbr-empty {
            color: #d5cfc5;
        }

        .sbr-check {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #4285f4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sbr-check svg {
            width: 9px;
            height: 9px;
        }

        .sbr-body {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .sbr-text {
            font-size: .82rem;
            line-height: 1.55;
            color: #3d3830;
            flex: 1;
        }

        .sbr-thumb {
            width: 58px;
            height: 58px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid var(--clr-border);
        }

        .sbr-more {
            font-size: .77rem;
            color: var(--clr-accent);
            font-weight: 500;
            display: inline-block;
            margin-top: 3px;
            cursor: pointer;
        }

        /* CTA */
        .sbr-cta-wrap {
            text-align: center;
            margin-top: 55px;
        }

        .sbr-cta {
            display: inline-block;
            padding: 13px 36px;
            border: 1.5px solid var(--clr-border);
            border-radius: 100px;
            background: #fff;
      
            font-size: .9rem;
            font-weight: 500;
            color: var(--clr-text);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
            transition: background .2s, color .2s, box-shadow .2s, transform .15s;
            text-decoration: none;
        }

        .sbr-cta:hover {
            background: var(--clr-text);
            color: #fff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, .14);
            transform: translateY(-2px);
        }
  

        /* instagrm starts  */

         /* ── Section ── */
        .sib-section {
            padding: 72px 24px 96px;
        
            position: relative;
            overflow: hidden;
        }

        /* Subtle background texture */
        .sib-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        /* ── Header ── */
        .sib-header {
            text-align: center;
            margin-bottom: 52px;
            position: relative;
        }

        .sib-header__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--sib-gold);
            margin-bottom: 14px;
        }

        .sib-header__eyebrow::before,
        .sib-header__eyebrow::after {
            content: '';
            display: block;
            width: 32px;
            height: 1px;
            background: var(--sib-gold);
            opacity: 0.5;
        }

        .sib-header h2 {
           
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 600;
            color: var(--sib-dark);
            letter-spacing: 0.01em;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .sib-header__sub {
            font-size: 0.82rem;
            font-weight: 300;
            color: #999;
            letter-spacing: 0.08em;
        }

        .sib-header__sub a {
            color: var(--sib-gold);
            text-decoration: none;
            font-weight: 400;
            transition: opacity 0.2s;
        }

        .sib-header__sub a:hover {
            opacity: 0.7;
        }

        /* ── DB Error notice ── */
        .sib-db-error {
            text-align: center;
            padding: 20px;
            background: #fff3f3;
            border: 1px solid #ffcccc;
            border-radius: 10px;
            color: #cc4444;
            font-size: 0.85rem;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        /* ── Grid ── */
        .sib-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
        }
         .top-announcment{
               font-size: 26px;


            }

        @media (max-width: 1100px) {
            .sib-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 760px) {
            .sib-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
            .top-announcment{
                font-size: 0.6rem;

            }
             .buttom-announcment{
                font-size: 0.5rem;

            }
        }

        @media (max-width: 500px) {
            .sib-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .buttom-announcment-item {
 
    font-size: 0.6rem;
            }
        }

        /* ── Card ── */
        .sib-card {
            position: relative;
            border-radius: var(--sib-radius);
            overflow: hidden;
            aspect-ratio: 9 / 16;
            cursor: pointer;
            background: var(--sib-warm);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
            transition: transform 0.38s var(--sib-ease), box-shadow 0.38s var(--sib-ease);
            animation: sib-card-in 0.55s var(--sib-ease) both;
            outline: none;
        }

        .sib-card:focus-visible {
            box-shadow: 0 0 0 3px var(--sib-gold), 0 2px 16px rgba(0, 0, 0, 0.1);
        }

        .sib-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
            z-index: 2;
        }

        @keyframes sib-card-in {
            from {
                opacity: 0;
                transform: translateY(22px) scale(0.96);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Thumbnail */
        .sib-card__thumb {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.45s ease;
        }

        /* Hover iframe container */
        .sib-card__video-wrap {
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            background: #000;
            border-radius: var(--sib-radius);
            overflow: hidden;
        }

        .sib-card__video-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            transform: scale(1.01);
            /* hide iframe hairline border */
        }

        /* Activate on hover */
        .sib-card:hover .sib-card__video-wrap {
            opacity: 1;
            pointer-events: auto;
        }

        .sib-card:hover .sib-card__thumb {
            opacity: 0;
        }

        /* Dark gradient overlay */
        .sib-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.72) 0%,
                    rgba(0, 0, 0, 0.18) 45%,
                    transparent 70%);
            z-index: 3;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .sib-card:hover .sib-card__overlay {
            opacity: 0.6;
        }

        /* Username badge top-left */
        .sib-card__badge {
            position: absolute;
            top: 10px;
            left: 10px;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            border-radius: 20px;
            padding: 4px 10px 4px 5px;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .sib-card__badge-ring {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: conic-gradient(#f9ce34, #ee2a7b, #6228d7, #f9ce34);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sib-card__badge-ring::after {
            content: '';
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #000;
            display: block;
        }

        .sib-card__badge-name {
            font-size: 0.6rem;
            font-weight: 500;
            color: #fff;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        /* Play icon + views bottom-left */
        .sib-card__meta {
            position: absolute;
            bottom: 10px;
            left: 12px;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 5px;
            color: #fff;
            font-size: 0.72rem;
            font-weight: 500;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        }

        .sib-card__meta svg {
            width: 13px;
            height: 13px;
            flex-shrink: 0;
        }

        /* Open in IG – bottom-right, appears on hover */
        .sib-card__ig-btn {
            position: absolute;
            bottom: 10px;
            right: 10px;
            z-index: 5;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 20px;
            padding: 4px 10px;
            font-size: 0.58rem;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.06em;
            backdrop-filter: blur(6px);
            opacity: 0;
            transform: translateY(5px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .sib-card:hover .sib-card__ig-btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Skeleton loaders ── */
        .sib-skeleton {
            border-radius: var(--sib-radius);
            aspect-ratio: 9/16;
            background: linear-gradient(90deg, #ece7df 25%, #ddd6ca 50%, #ece7df 75%);
            background-size: 200% 100%;
            animation: sib-shimmer 1.5s infinite;
        }

        @keyframes sib-shimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* ── Fallback ── */
        .sib-fallback {
            grid-column: 1 / -1;
            text-align: center;
            padding: 64px 20px;
            color: #bbb;
        }

        .sib-fallback__icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 16px;
            opacity: 0.35;
        }

        .sib-fallback p {
            font-size: 0.88rem;
            margin-bottom: 12px;
            color: #aaa;
        }

        .sib-fallback a {
            color: var(--sib-gold);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            border-bottom: 1px solid rgba(201, 169, 110, 0.3);
            padding-bottom: 2px;
            transition: border-color 0.2s;
        }

        .sib-fallback a:hover {
            border-color: var(--sib-gold);
        }

        /* ── Empty-seed notice ── */
        .sib-seed-notice {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #fff8ee, #fdf3e3);
            border: 1px dashed var(--sib-gold);
            border-radius: 14px;
            padding: 32px 24px;
            text-align: center;
        }

        .sib-seed-notice h3 {
      
            font-size: 1.4rem;
            color: var(--sib-dark);
            margin-bottom: 8px;
        }

        .sib-seed-notice p {
            font-size: 0.82rem;
            color: #888;
            line-height: 1.6;
        }

        .sib-seed-notice code {
            background: rgba(201, 169, 110, 0.12);
            border-radius: 4px;
            padding: 1px 6px;
            font-size: 0.78rem;
            color: var(--sib-gold);
        }

        /* ═══════════════════════════════════════
   POPUP MODAL
   ═══════════════════════════════════════ */
        .sib-modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(10, 8, 6, 0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .sib-modal-backdrop.sib-open {
            opacity: 1;
            visibility: visible;
        }

        .sib-modal-box {
            position: relative;
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            overflow: hidden;
            background: #111;
            box-shadow: 0 32px 100px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.06);
            transform: scale(0.88) translateY(20px);
            transition: transform 0.38s cubic-bezier(.34, 1.56, .64, 1);
        }

        .sib-modal-backdrop.sib-open .sib-modal-box {
            transform: scale(1) translateY(0);
        }

        /* Modal top bar */
        .sib-modal-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
        }

        .sib-modal-topbar-left {
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .sib-modal-ig-ring {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: conic-gradient(#f9ce34, #ee2a7b, #6228d7, #f9ce34);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .sib-modal-ig-ring::after {
            content: '';
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #111;
            display: block;
        }

        .sib-modal-uname {
            font-size: 0.88rem;
            font-weight: 500;
            color: #fff;
        }

        .sib-modal-close {
            background: rgba(255, 255, 255, 0.08);
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .sib-modal-close:hover {
            background: rgba(255, 255, 255, 0.16);
        }

        .sib-modal-close svg {
            width: 16px;
            height: 16px;
        }

        /* Embed area */
        .sib-modal-embed {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            background: #0a0a0a;
            overflow: hidden;
        }

        .sib-modal-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .sib-modal-embed iframe.sib-loaded {
            opacity: 1;
        }

        /* Loading spinner */
        .sib-modal-spinner-wrap {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
            z-index: 2;
            transition: opacity 0.4s ease;
        }

        .sib-modal-spinner-wrap.sib-hide {
            opacity: 0;
            pointer-events: none;
        }

        .sib-modal-spinner {
            width: 40px;
            height: 40px;
            border: 2px solid rgba(201, 169, 110, 0.15);
            border-top-color: var(--sib-gold);
            border-radius: 50%;
            animation: sib-spin 0.75s linear infinite;
        }

        @keyframes sib-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .sib-modal-spinner-txt {
            font-size: 0.75rem;
            color: #555;
            letter-spacing: 0.05em;
        }

        /* Footer */
        .sib-modal-footer {
            padding: 10px 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            justify-content: center;
        }

        .sib-modal-open-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .sib-modal-open-link:hover {
            color: #fff;
        }

        .sib-modal-open-link svg {
            width: 16px;
            height: 16px;
        }