/* =====================================================
   GURUKRUPA SHOE PALACE
   SINGLE PAGE STATIC WEBSITE
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #151515;
    background: #ffffff;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --red: #a90f18;
    --dark-red: #7f080f;

    --black: #111111;
    --dark: #181818;

    --gold: #c99a32;

    --gray: #707070;
    --light: #f6f5f2;

    --white: #ffffff;

    --border: #e6e6e6;

    --container: 1180px;

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.09);

    --transition:
        all 0.35s ease;
}


/* =====================================================
   GLOBAL
===================================================== */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;
}

.section {
    padding: 105px 0;
}

.section-label {
    display: inline-block;
    text-align:center;
    margin-bottom: 14px;

    color: var(--red);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
}
.section-label1 {
    display: inline-block;
    text-align: center;
    margin-bottom: 14px;

    color: var(--red);

    font-size: 0.7rem;

    font-weight: 800;

    letter-spacing: 3px;
}
.section-heading {
    display: flex;

    align-items: end;

    margin-bottom: 5px;
}

.section-heading.center {
    display: block;

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.section-heading h2 {
    font-size: clamp(
        2.1rem,
        4vw,
        3.4rem
    );

    line-height: 1.08;
   
    letter-spacing: -2px;
}

.section-heading h2 span {
    color: var(--red);
}

.section-heading p {
    max-width: 470px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
 
    color: var(--gray);

    font-size: 0.88rem;
}

/* FEATURED HEADING SPACING */

.featured-heading h2 {
    margin-bottom: 0;
}

.featured-heading p {
    margin-top: -5px;
}
    


/* =====================================================
   BUTTONS
===================================================== */

.button {
    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 52px;

    padding: 0 26px;

    border-radius: 3px;

    font-size: 0.75rem;

    font-weight: 800;

    transition: var(--transition);
}

.button-primary {
    background: var(--red);

    color: var(--white);
}

.button-primary:hover {
    background: var(--dark-red);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px
        rgba(169, 15, 24, 0.22);
}

.button-outline {
    border: 1px solid #222;

    color: #222;
}

.button-outline:hover {
    background: #111;

    color: white;

    transform: translateY(-3px);
}

.button-light {
    background: white;

    color: var(--red);
}

.button-light:hover {
    background: var(--black);

    color: white;

    transform: translateY(-3px);
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);
}

.nav-container {
    min-height: 82px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 25px;
}


/* BRAND */

.brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.company-logo {
    width: 52px;
    height: 52px;

    object-fit: contain;
}

.brand-name {
    display: flex;

    flex-direction: column;

    line-height: 1.1;
}

.brand-name strong {
    font-size: 1rem;
}

.brand-name span {
    margin-top: 4px;

    color: var(--red);

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* NAVIGATION */

.navbar {
    display: flex;

    align-items: center;

    gap: 34px;
}

.navbar a {
    position: relative;

    font-size: 0.78rem;

    font-weight: 600;

    color: #333;

    transition: var(--transition);
}

.navbar a:hover {
    color: var(--red);
}

.navbar a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: var(--transition);
}

.navbar a:hover::after {
    width: 100%;
}


/* HEADER CALL */

.header-button {
    padding: 11px 20px;

    border-radius: 30px;

    background: var(--black);

    color: white;

    font-size: 0.72rem;

    font-weight: 800;

    transition: var(--transition);
}

.header-button:hover {
    background: var(--red);

    transform: translateY(-2px);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height:
        calc(100vh - 82px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #ffffff 0%,
            #fff9f6 50%,
            #f8eded 100%
        );
}

.hero-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-circle-one {
    width: 550px;
    height: 550px;

    right: -220px;
    top: -250px;

    background:
        rgba(169, 15, 24, 0.07);
}

.hero-circle-two {
    width: 280px;
    height: 280px;

    left: -170px;
    bottom: -180px;

    background:
        rgba(201, 154, 50, 0.09);
}

.hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 0.85fr;

    align-items: center;

    gap: 75px;

    padding: 85px 0;
}


/* HERO TEXT */

.small-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--red);

    font-size: 0.68rem;

    font-weight: 800;

    letter-spacing: 4px;
}

.small-label::before {
    content: "";

    width: 35px;
    height: 2px;

    background: var(--red);
}

.hero-content h1 {
    max-width: 680px;

    margin-bottom: 28px;

    font-size: clamp(
        3.5rem,
        7vw,
        6.5rem
    );

    line-height: 0.9;

    letter-spacing: -5px;
}

.hero-content h1 span {
    display: block;

    color: var(--red);
}

.hero-description {
    max-width: 570px;

    margin-bottom: 18px;

    color: var(--gray);

    font-size: 1rem;
}

.ownership-line {
    max-width: 650px;

    margin-bottom: 32px;

    color: #333;

    font-size: 0.8rem;

    font-weight: 600;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* HERO IMAGE */

.hero-image-area {
    position: relative;

    display: flex;

    justify-content: center;
}

.hero-image-frame {
    width: min(
        470px,
        100%
    );

    aspect-ratio: 0.86;

    overflow: hidden;

    border-radius:
        45% 45% 5% 45%;

    background: #ddd;

    box-shadow:
        25px 30px 65px
        rgba(0, 0, 0, 0.18);

    transform: rotate(3deg);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.05);
}

.hero-image-label {
    position: absolute;

    left: 0;
    bottom: 35px;

    padding: 17px 22px;

    background: var(--red);

    color: white;

    box-shadow:
        0 12px 25px
        rgba(169, 15, 24, 0.25);

    transform: rotate(-3deg);
}

.hero-image-label span {
    display: block;

    font-size: 0.6rem;

    letter-spacing: 3px;

    opacity: 0.75;
}

.hero-image-label strong {
    font-size: 0.85rem;

    letter-spacing: 1px;
}


/* =====================================================
   QUICK INFO
===================================================== */

.quick-info {
    background: var(--black);

    color: white;
}

.quick-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}

.quick-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 30px;

    border-right:
        1px solid
        rgba(255,255,255,0.1);
}

.quick-item:last-child {
    border-right: none;
}

.quick-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 50%;
}


/* CSS ICONS */

.icon-location {
    width: 12px;
    height: 16px;

    display: block;

    border: 2px solid white;

    border-radius:
        8px 8px 8px 8px;

    position: relative;
}

.icon-location::after {
    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    top: 4px;
    left: 2px;

    border: 1px solid white;

    border-radius: 50%;
}

.icon-phone {
    width: 15px;
    height: 15px;

    display: block;

    border-left: 3px solid white;
    border-bottom: 3px solid white;

    border-radius: 2px 0 0 8px;

    transform: rotate(-35deg);
}

.icon-check::before {
    content: "?";

    color: white;

    font-size: 1rem;

    font-weight: 800;
}

.quick-item strong {
    display: block;

    margin-bottom: 2px;

    font-size: 0.75rem;
}

.quick-item span:last-child {
    color: #999;

    font-size: 0.68rem;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 570px;

    object-fit: cover;

    border-radius:
        5px 80px 5px 5px;
}

.image-badge {
    position: absolute;

    right: -25px;
    bottom: 35px;

    width: 180px;

    padding: 22px;

    background: var(--black);

    color: white;

    box-shadow: var(--shadow);
}

.image-badge strong {
    display: block;

    margin-bottom: 4px;

    color: #e4bc5c;

    font-size: 1.5rem;
}

.image-badge span {
    color: #aaa;

    font-size: 0.6rem;

    line-height: 1.4;
}

.about-content h2 {
    margin-bottom: 25px;

    font-size: clamp(
        2.3rem,
        4vw,
        4rem
    );

    line-height: 1.05;

    letter-spacing: -2px;
}

.about-content h2 span {
    display: block;

    color: var(--red);
}

.about-content > p {
    margin-bottom: 15px;

    color: var(--gray);

    font-size: 0.9rem;
}


/* OWNER BOX */

.owner-box {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 30px;

    padding: 20px;

    border-left:
        3px solid var(--red);

    background: var(--light);
}

.owner-mark {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    background: var(--red);

    color: white;

    font-size: 0.8rem;

    font-weight: 800;
}

.owner-box span {
    display: block;

    margin-bottom: 4px;

    color: var(--red);

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 2px;
}

.owner-box strong {
    display: block;

    color: #222;

    font-size: 0.75rem;

    line-height: 1.6;
}


/* =====================================================
   FEATURED
===================================================== */

.featured {
    background: var(--light);
}

.featured-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.8fr;

    gap: 15px;
}

.featured-card {
    position: relative;

    min-height: 420px;

    overflow: hidden;

    background: #ddd;
}

.featured-card.large {
    min-height: 570px;
}

.featured-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.featured-card:hover img {
    transform: scale(1.06);
}

.featured-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.82)
        );

    color: white;
}

.featured-overlay span {
    display: block;

    margin-bottom: 5px;

    color: #e2bd65;

    font-size: 0.65rem;

    font-weight: 800;
}

.featured-overlay strong {
    font-size: 1rem;
}


/* =====================================================
   COLLECTION
===================================================== */

.collection {
    background: white;
}

.collection-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 300px;

    gap: 15px;
}

.collection-item {
    position: relative;

    overflow: hidden;

    background: #ddd;
}

.collection-item.item-large {
    grid-row:
        span 2;
}

.collection-item.item-wide {
    grid-column:
        span 2;
}

.collection-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.collection-item:hover img {
    transform: scale(1.07);
}

.collection-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 20px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.8)
        );
}

.collection-caption span {
    display: block;

    margin-bottom: 3px;

    color: #e4bd62;

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 2px;
}

.collection-caption strong {
    font-size: 0.85rem;
}


/* =====================================================
   VISUAL BANNER
===================================================== */

.visual-banner {
    position: relative;

    height: 520px;

    overflow: hidden;
}

.visual-banner > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.visual-banner-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    padding: 30px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.55)
        );

    color: white;
}

.visual-banner-overlay span {
    margin-bottom: 12px;

    color: #e4bd62;

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 4px;
}

.visual-banner-overlay h2 {
    max-width: 700px;

    margin-bottom: 28px;

    font-size: clamp(
        2.3rem,
        5vw,
        4.5rem
    );

    line-height: 1;

    letter-spacing: -2px;
}


/* =====================================================
   VISIT
===================================================== */

.visit {
    background: var(--light);
}

.visit-grid {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    align-items: center;

    gap: 80px;
}

.visit-content h2 {
    margin-bottom: 20px;

    font-size: clamp(
        2.3rem,
        4vw,
        4rem
    );

    line-height: 1.05;

    letter-spacing: -2px;
}

.visit-content h2 span {
    display: block;

    color: var(--red);
}

.visit-content > p {
    max-width: 560px;

    margin-bottom: 25px;

    color: var(--gray);

    font-size: 0.9rem;
}

.address-box {
    margin-bottom: 25px;

    padding: 22px;

    border-left:
        3px solid var(--red);

    background: white;
}

.address-box strong {
    display: block;

    margin-bottom: 7px;

    font-size: 0.85rem;
}

.address-box p {
    color: var(--gray);

    font-size: 0.75rem;

    line-height: 1.8;
}

.visit-image {
    position: relative;

    height: 550px;
}

.visit-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius:
        80px 5px 5px 5px;
}

.visit-image-tag {
    position: absolute;

    left: -25px;
    bottom: 35px;

    padding: 16px 22px;

    background: var(--red);

    color: white;

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.contact-card {
    min-height: 270px;

    padding: 30px 25px;

    border:
        1px solid var(--border);

    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);

    border-color:
        rgba(169,15,24,0.2);
}

.contact-symbol {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 50%;

    font-size: 0.58rem;

    font-weight: 800;

    letter-spacing: 1px;
}

.phone-symbol {
    background: #fbecee;
    color: var(--red);
}

.whatsapp-symbol {
    background: #e8f8ee;
    color: #149447;
}

.instagram-symbol {
    background: #f4e9f7;
    color: #a334b5;
}

.facebook-symbol {
    background: #e7f0ff;
    color: #1877f2;
}

.contact-card h3 {
    margin-bottom: 10px;

    font-size: 0.95rem;
}

.contact-card p {
    min-height: 75px;

    color: var(--gray);

    font-size: 0.76rem;
}

.contact-card > a {
    color: var(--red);

    font-size: 0.7rem;

    font-weight: 800;
}

.facebook-placeholder {
    
}


/* SOCIAL */

.social-row {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 45px;
}

.social-button {
    min-width: 125px;

    padding: 12px 20px;

    border-radius: 3px;

    color: white;

    text-align: center;

    font-size: 0.7rem;

    font-weight: 800;

    transition: var(--transition);
}

.social-button:hover {
    transform: translateY(-3px);
}

.instagram-social {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
}

.whatsapp-social {
    background: #16a34a;
}

.facebook-social {
    background: #1877f2;
}

.email-symbol {
    background: #e63946;
    color: #ffffff;
}

.contact-card a[href="mailto:gurukrupashoepalace02@gmail.com"] {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.contact-card a[href="mailto:gurukrupashoepalace02@gmail.com"]:hover {
    text-decoration: underline;
}
/* =====================================================
   IMAGE STRIP
===================================================== */

.image-strip {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    min-height: 420px;

    background: var(--red);

    color: white;
}

.strip-image {
    overflow: hidden;
}

.strip-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.strip-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    padding: 70px;
}

.strip-content > span {
    margin-bottom: 15px;

    color: #efc969;

    font-size: 0.65rem;

    font-weight: 800;

    letter-spacing: 3px;
}

.strip-content h2 {
    max-width: 500px;

    margin-bottom: 28px;

    font-size: clamp(
        2.4rem,
        5vw,
        4.5rem
    );

    line-height: 0.98;

    letter-spacing: -3px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: var(--black);

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 0.8fr;

    gap: 50px;

    padding-top: 65px;

    padding-bottom: 55px;
}

.footer-logo {
    width: 60px;
    height: 60px;

    margin-bottom: 18px;

    object-fit: contain;
}

.footer-brand h3 {
    margin-bottom: 6px;

    font-size: 1rem;
}

.footer-brand p {
    color: #888;

    font-size: 0.7rem;
}

.footer-address span,
.footer-contact span {
    display: block;

    margin-bottom: 14px;

    color: #d2aa55;

    font-size: 0.62rem;

    font-weight: 800;

    letter-spacing: 2px;
}

.footer-address p {
    color: #999;

    font-size: 0.72rem;

    line-height: 1.9;
}

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-contact a {
    margin-bottom: 7px;

    color: #aaa;

    font-size: 0.72rem;

    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,0.08);

    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #666;

    font-size: 0.62rem;
}




/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .navbar {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns:
            1fr 0.8fr;

        gap: 35px;
    }

    .hero-content h1 {
        font-size: 4.6rem;
    }

    .about-grid,
    .visit-grid {
        gap: 45px;
    }

    .contact-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .featured-card.large {
        grid-column:
            span 2;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .container {
        width:
            calc(100% - 30px);
    }

    .section {
        padding: 75px 0;
    }


    /* HEADER */

    .nav-container {
        min-height: 70px;
    }

    .navbar {
        display: none;
    }

    .company-logo {
        width: 43px;
        height: 43px;
    }

    .brand-name strong {
        font-size: 0.9rem;
    }

    .brand-name span {
        font-size: 0.55rem;
    }

    .header-button {
        padding:
            9px 14px;

        font-size: 0.65rem;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        padding: 70px 0;

        gap: 50px;
    }

    .hero-content h1 {
        font-size:
            clamp(
                3.2rem,
                15vw,
                4.6rem
            );

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .ownership-line {
        font-size: 0.72rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-image-area {
        padding: 0 20px;
    }

    .hero-image-label {
        left: 5px;
    }


    /* QUICK INFO */

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .quick-item {
        border-right: none;

        border-bottom:
            1px solid
            rgba(255,255,255,0.1);
    }

    .quick-item:last-child {
        border-bottom: none;
    }


    /* ABOUT */

    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image img {
        height: 450px;
    }

    .image-badge {
        right: 10px;
    }


    /* HEADINGS */

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }


    /* FEATURED */

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-card,
    .featured-card.large {
        grid-column: auto;

        min-height: 400px;
    }


    /* COLLECTION */

    .collection-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows:
            230px;
    }

    .collection-item.item-large {
        grid-row: auto;
    }

    .collection-item.item-wide {
        grid-column:
            span 2;
    }


    /* BANNER */

    .visual-banner {
        height: 450px;
    }


    /* VISIT */

    .visit-image {
        height: 450px;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-card p {
        min-height: auto;

        margin-bottom: 15px;
    }


    /* IMAGE STRIP */

    .image-strip {
        grid-template-columns: 1fr;
    }

    .strip-image {
        height: 320px;
    }

    .strip-content {
        padding: 60px 30px;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom .container {
        flex-direction: column;

        text-align: center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero-content h1 {
        font-size: 3rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-item.item-wide {
        grid-column: auto;
    }

    .collection-item {
        min-height: 300px;
    }

    .social-button {
        width: 100%;
    }

    

}
