* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
}

/* ===================== HEADER ===================== */
header {
    background: linear-gradient(135deg, #710328 0%, #710328 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.logo img {
    width: 260px;
    height: 70px;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover,
.nav-links a.active {
    background: linear-gradient(45deg, #d4b37e, #916331);
    color: #710328;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d4b37e;
}

/* ===================== PAGE CONTAINER ===================== */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #710328;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

a {
    color: #b98c7a;
}

/* ===================== CTA BUTTON ===================== */
.cta-button {
    background: linear-gradient(45deg, #d4b37e, #916331);
    color: #710328;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ===================== BANNER CAROUSEL ===================== */
.carousel {
    margin-top: 30px;
}

.slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
}

.slide {
    width: 100%;
    display: none;
    height: 90vh;
    object-fit: cover;
}

.slide.active {
    display: block;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 5px;
    background-color: #bbb;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #d4b37e;
}

/* ===================== BESTSELLER SECTION ===================== */
.bestseller {
    background: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.bestseller-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bestseller-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.bestseller-item img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    padding: 10px;
}

.bestseller-item p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

.bestseller-item:hover {
    transform: translateY(-8px);
}

/* ===================== ABOUT US SNIPPET (HOME) ===================== */
.about-us {
    background: #fff8f0;
    padding: 60px 20px;
    text-align: center;
}

.about-us .about-content {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    color: #555;
}

/* ===================== NEW ARRIVAL SECTION ===================== */
.new-arrival {
    padding: 100px 20px;
}

.new-arrival .section-title {
    margin-bottom: 50px;
}

.arrival-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.arrival-wrapper {
    overflow: hidden;
    max-width: 1100px;
    flex: 1;
}

.arrival-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.arrival-item {
    flex: 0 0 calc(33.333% - 20px);
}

.arrival-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0px;
}

.arrival-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ===================== POPULAR COLLECTIONS (HOME) ===================== */
.collections {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.collections .collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding: 0;
    background: none;
}

.collection-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.collection-card h3 {
    padding: 15px;
    font-size: 1.1rem;
    color: #333;
}

.collection-card:hover {
    transform: translateY(-5px);
}

/* ===================== VISIT STORE CTA ===================== */
.visit-store {
    background: linear-gradient(135deg, #d9a7c7 0%, #fffcdc 100%);
    padding: 60px 20px;
    text-align: center;
    color: #333;
}

.visit-store h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.visit-store p {
    margin-bottom: 20px;
}

.visit-store .cta-button {
    background-color: #b98c7a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.visit-store .cta-button:hover {
    background-color: #9e7561;
    transform: translateY(-3px);
}

/* ===================== ABOUT PAGE HERO ===================== */
.about-hero {
    background: linear-gradient(135deg, #710328 0%, #710328 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #d4b37e, #916331);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override default section-subtitle inside about-hero to be lighter */
.about-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
}

/* ===================== COLLECTION PAGE ===================== */
.collection-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.collection-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.collection-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 20px;
    background: #f8f9fa;
}

.collection-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.collection-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collection-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(184, 134, 11, 0.08));
    pointer-events: none;
}

/* ===================== CONTACT PAGE ===================== */
.contact-hero {
    background: linear-gradient(135deg, #710328 0%, #710328 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #d4b37e, #916331);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-content {
    padding: 5rem 2rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #710328;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4b37e;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-info {
    padding: 1rem 0;
}

.contact-info h2 {
    color: #710328;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #d4b37e;
}

.contact-item h3 {
    color: #710328;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================== FOOTER ===================== */
footer {
    background: linear-gradient(135deg, #710328 0%, #710328 100%);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #d4b37e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4b37e;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* ===================== WHATSAPP BUTTON ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* ===================== HAMBURGER ===================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* ===================== SOCIAL ICONS ===================== */
.social-follow {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #444;
}


/* =============================================================
   ABOUT PAGE v2 — ab2- prefixed styles (no conflicts)
   ============================================================= */

/* ── SHOP SECTION ─────────────────────────────────────────── */
.ab2-shop-section {
    padding: 70px 40px;
    background: #fff;
}

.ab2-shop-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT: Info */
.ab2-shop-info {
    flex: 1.1;
}

.ab2-label {
    display: inline-block;
    background: linear-gradient(45deg, #d4b37e, #916331);
    color: #710328;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.ab2-shop-info h2 {
    font-size: 2.5rem;
    color: #710328;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ab2-shop-info p {
    font-size: 1.02rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.ab2-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #f0e0c8;
    flex-wrap: wrap;
}

.ab2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.ab2-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #710328;
    line-height: 1;
}
.ab2-masonry-overlay
.ab2-stat-label {
    font-size: 0.78rem;
    color: #888;
    margin-top: 4px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* RIGHT: Image — FIXED: single position declaration */
.ab2-shop-image {
    flex: 0.9;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(113, 3, 40, 0.15);
    max-height: 660px;
}

.ab2-shop-image img {
    width: 100%;
    height: 660px;
    object-fit: cover;
    display: block;
}

.ab2-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #d4b37e, #916331);
    color: #710328;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ── DIVIDER ───────────────────────────────────────────────── */
.ab2-divider {
    display: flex;
    align-items: center;
    gap: 0;
    text-align: center;
    padding: 0 40px;
    margin: 10px auto 0;
    max-width: 1200px;
}

.ab2-divider::before,
.ab2-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4b37e, transparent);
}

.ab2-divider span {
    padding: 0 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #916331;
    white-space: nowrap;
}

/* ── FOUNDERS SECTION ─────────────────────────────────────── */
.ab2-founders-section {
    padding: 60px 40px 80px;
    background: #fdf9f5;
}

.ab2-founders-header {
    text-align: center;
    margin-bottom: 50px;
}

.ab2-founders-header h2 {
    font-size: 2.5rem;
    color: #710328;
    margin-bottom: 10px;
}

.ab2-founders-header p {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

/* Horizontal scrollable row */
.ab2-founders-grid {
    display: flex;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d4b37e #f0e0c8;
}

.ab2-founders-grid::-webkit-scrollbar {
    height: 5px;
}
.ab2-founders-grid::-webkit-scrollbar-track {
    background: #f0e0c8;
    border-radius: 10px;
}
.ab2-founders-grid::-webkit-scrollbar-thumb {
    background: #d4b37e;
    border-radius: 10px;
}

/* Each card */
.ab2-founder-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(113, 3, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid #f5e8d8;
}

.ab2-founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(113, 3, 40, 0.15);
}

.ab2-founder-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8ece0, #fdf5ef);
}

.ab2-founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.ab2-founder-card:hover .ab2-founder-img-wrap img {
    transform: scale(1.05);
}

.ab2-founder-gen {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(113, 3, 40, 0.88);
    color: #d4b37e;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.ab2-founder-body {
    padding: 22px 20px 24px;
}

.ab2-founder-body h3 {
    font-size: 1.05rem;
    color: #710328;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ab2-founder-role {
    display: inline-block;
    font-size: 0.75rem;
    color: #916331;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0e0c8;
    padding-bottom: 10px;
    width: 100%;
}

.ab2-founder-body p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.ab2-marathi {
    font-size: 0.82rem !important;
    color: #888 !important;
    font-style: italic;
    border-top: 1px dashed #f0e0c8;
    padding-top: 8px;
    margin-top: 4px !important;
}

/* ── STORE SECTION — MASONRY ──────────────────────────────── */
.ab2-store-section {
    padding: 60px 40px 80px;
    background: #fff;
}

.ab2-store-header {
    text-align: center;
    margin-bottom: 40px;
}

.ab2-store-header h2 {
    font-size: 2.2rem;
    color: #710328;
    margin-bottom: 10px;
}

.ab2-store-header p {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

/* Masonry using CSS columns */
.ab2-masonry-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ab2-masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.ab2-masonry-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Tall items */
.ab2-masonry-item img {
    width: 100%;
    height: 250px; /* same height for all */
    object-fit: cover;
    border-radius: 14px;
}

.ab2-masonry-item:hover img {
    transform: scale(1.05);
}

/* Hover overlay */
.ab2-masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(113,3,40,0.75) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab2-masonry-item:hover .ab2-masonry-overlay {
    opacity: 1;
}

.ab2-masonry-overlay {
    display: none;
}


/* ===================== RESPONSIVE — MOBILE ===================== */
@media (max-width: 768px) {

    /* Nav */
    nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo img {
        width: 160px;
        height: auto;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        display: none;
        margin-top: 1rem;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-left: 1rem;
    }

    /* Page */
    .page {
        padding-top: 60px;
    }

    /* Banner */
    .slide {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }

    /* Bestseller */
    .bestseller {
        padding: 40px 0px;
    }

    .bestseller-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding: 10px 20px 20px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bestseller-grid::-webkit-scrollbar {
        display: none;
    }

    .bestseller-item {
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    .bestseller-item img {
        width: 120px;
        height: 120px;
    }

    .bestseller-item p {
        font-size: 12px;
    }

    /* New Arrival */
    .arrival-item {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }

    .arrival-wrapper {
        max-width: 100%;
    }

    .arrival-container {
        gap: 0px;
    }

    .arrival-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    /* Popular Collections — 1 column on mobile */
    .collections .collection-grid {
        grid-template-columns: 1fr;
    }

    /* About Hero */
    .about-hero {
        padding: 3rem 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    /* Collection Page — 1 column on mobile */
    .collection-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 15px;
    }

    .collection-image {
        height: 250px;
    }

    .collection-hero h1 {
        font-size: 2rem;
    }

    /* Contact Page — stack on mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Section title */
    .section-title {
        font-size: 1.8rem;
    }

    /* ── ab2- mobile overrides ── */

    /* Shop section — stack vertically */
    .ab2-shop-section {
        padding: 40px 20px;
    }

    .ab2-shop-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .ab2-shop-image {
        position: static;
        width: 100%;
        max-height: 260px;
    }

    .ab2-shop-image img {
        height: 260px;
    }

    .ab2-shop-info h2 {
        font-size: 1.6rem;
    }

    .ab2-stats-row {
        justify-content: space-around;
    }

    /* Divider */
    .ab2-divider {
        padding: 0 20px;
    }

    /* Founders */
    .ab2-founders-section {
        padding: 40px 20px 60px;
    }

    .ab2-founders-header h2 {
        font-size: 1.6rem;
    }

    .ab2-founders-grid {
        gap: 16px;
        padding-bottom: 16px;
    }

    .ab2-founder-card {
        flex: 0 0 260px;
    }

    .ab2-founder-img-wrap {
        height: 220px;
    }

    /* Store — 2 columns on mobile */
    .ab2-store-section {
        padding: 40px 16px 60px;
    }

    .ab2-store-header h2 {
        font-size: 1.6rem;
    }

    .ab2-masonry-grid {
        column-count: 2;
        column-gap: 10px;
    }

    .ab2-masonry-item.ab2-tall img {
        height: 260px;
    }

    .ab2-masonry-item:not(.ab2-tall) img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .ab2-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab2-masonry-item.ab2-tall img {
        height: 280px;
    }

    .ab2-masonry-item:not(.ab2-tall) img {
        height: 220px;
    }
}

/* Features Section */
        .features {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #d4b37e, #916331);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 2rem;
            color: white;
        }