/* GauGrih Home Page — full mockup sections */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Noto+Serif+Devanagari:wght@600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --gg-ink: #5c2e16;
    --gg-brown: #6b3a1f;
    --gg-brown-dark: #553016;
    --gg-cream: #faf6f0;
    --gg-cream-2: #f3e8d8;
    --gg-muted: #8a5a3a;
    --gg-border: #eadfce;
    --gg-gold: #c4a484;
    --gg-font: 'Outfit', system-ui, sans-serif;
    --gg-serif: 'Cormorant Garamond', Georgia, serif;
    --gg-side: 16px;
}

.gg-home {
    font-family: var(--gg-font);
    background: #fff;
}

/* Icon fonts must keep their own family (do not inherit Outfit) */
.gg-home .fa,
.gg-home i.fa,
.gg-home [class^="fa-"],
.gg-home [class*=" fa-"] {
    font-family: FontAwesome !important;
}

.gg-home [class^="czi-"],
.gg-home [class*=" czi-"] {
    font-family: "sixvalley-icons" !important;
}

.gg-home [class^="tio-"],
.gg-home [class*=" tio-"] {
    font-family: "The-Icon-of" !important;
}

.gg-home .container {
    padding-left: var(--gg-side) !important;
    padding-right: var(--gg-side) !important;
}

@media (min-width: 576px) { :root { --gg-side: 20px; } }
@media (min-width: 992px) { :root { --gg-side: 24px; } }
@media (min-width: 1200px) { :root { --gg-side: 28px; } }

.gg-section {
    padding: 48px 0;
    background: #fff;
}

.gg-home-cat--alt {
    background: #faf6f0;
}

/* Promo / mid-page banners */
.gg-promo {
    padding: 8px 0 28px;
    background: #fff;
}

.gg-promo-link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(80, 40, 10, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gg-promo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(80, 40, 10, 0.12);
}

.gg-promo-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.gg-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

@media (max-width: 767.98px) {
    .gg-promo-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gg-promo {
        padding: 4px 0 20px;
    }

    .gg-promo-link {
        border-radius: 12px;
    }
}

.gg-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    text-align: center;
}

.gg-heading h2 {
    margin: 0;
    font-family: var(--gg-serif);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    color: var(--gg-ink);
    white-space: nowrap;
}

.gg-heading-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gg-gold), transparent);
    position: relative;
}

.gg-heading-line::after {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: var(--gg-gold);
    background: #fff;
    padding: 0 4px;
}

.gg-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.gg-section-head .gg-heading {
    margin-bottom: 0;
    flex: 1;
}

.gg-view-all {
    color: var(--gg-brown) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
}

.gg-view-all:hover {
    color: var(--gg-brown-dark) !important;
}

.gg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gg-brown);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 11px 20px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.gg-btn:hover {
    background: var(--gg-brown-dark);
    color: #fff !important;
}

/* Product card */
.gg-card {
    background: #fff;
    border: 1px solid var(--gg-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gg-card:hover {
    box-shadow: 0 10px 28px rgba(92, 46, 22, 0.1);
    transform: translateY(-2px);
}

/* Product listing grid ( /products etc. ) */
#ajax-products-view .gg-card {
    background: #fff;
}

#ajax-products-view > [class*="col-"] {
    display: flex;
}

#ajax-products-view > [class*="col-"] > .gg-card {
    width: 100%;
}

.gg-card-media {
    position: relative;
    background: var(--gg-cream);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 12px;
    box-sizing: border-box;
}

.gg-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.gg-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.gg-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--gg-brown);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.gg-card-badge--best {
    background: #b45309;
}

.gg-card-body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.gg-card-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    min-height: 38px;
}

.gg-card-title a {
    color: var(--gg-ink) !important;
    text-decoration: none !important;
}

.gg-card-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #e6a700;
    font-size: 12px;
}

.gg-card-rating span {
    color: #888;
    margin-left: 4px;
    font-size: 11px;
}

.gg-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.gg-card-price strong {
    color: var(--gg-ink);
    font-size: 15px;
}

.gg-card-price del {
    color: #999;
    font-size: 12px;
}

.gg-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}

.gg-card-wish {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gg-border);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gg-brown) !important;
    text-decoration: none !important;
    flex-shrink: 0;
    background: #fff;
    cursor: pointer;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gg-card-wish:hover,
.gg-card-wish.is-wishlisted {
    border-color: var(--gg-terracotta, #c4783a);
    color: var(--gg-terracotta, #c4783a) !important;
    background: #fff7ee;
}

.gg-card-wish .fa-heart {
    color: var(--gg-terracotta, #c4783a);
}

.gg-card-cart {
    flex: 1;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gg-brown);
    color: #fff !important;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.02em;
}

.gg-card-cart:hover {
    background: var(--gg-brown-dark);
}

.gg-products-slider .owl-nav {
    display: none !important;
}

.gg-products-slider .owl-stage {
    display: flex;
}

.gg-products-slider .owl-item {
    display: flex;
}

.gg-products-slider .owl-item > div {
    width: 100%;
}

/* Why Choose */
.gg-why {
    background: #fdfcf8;
    padding: 16px 0 12px;
}

.gg-why-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr 0.95fr;
    gap: 28px 28px;
    align-items: center;
}

.gg-why-photo {
    position: relative;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
    min-height: 380px;
    height: 100%;
    background: #efe4d4;
}

.gg-why-photo img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: 35% center;
    display: block;
}

.gg-why-photo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 12%;
    background: linear-gradient(90deg, rgba(253, 252, 248, 0), #fdfcf8);
    pointer-events: none;
    z-index: 1;
}

.gg-why-copy {
    max-width: 420px;
}

.gg-why-title {
    font-family: var(--gg-serif);
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 700;
    color: #3a1a12;
    margin: 0 0 10px;
    line-height: 1.2;
}

.gg-why-ornament {
    width: 80px;
    height: 12px;
    margin: 0 0 16px;
    position: relative;
}

.gg-why-ornament::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #d48847;
    transform: translateY(-50%);
}

.gg-why-ornament::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid #d48847;
    background: #fdfcf8;
    transform: translate(-50%, -50%) rotate(45deg);
}

.gg-why-text {
    color: #5c4a3d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.gg-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.gg-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4a372c;
    margin-bottom: 14px;
    line-height: 1.4;
}

.gg-why-ico {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #d48847;
    color: #d48847;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gg-why-ico svg {
    width: 15px;
    height: 15px;
}

.gg-why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6e2a16;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.gg-why-btn:hover {
    background: #551f10;
    color: #fff !important;
}

.gg-why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.gg-stat {
    background: #fff;
    border: 1px solid #efe6da;
    border-radius: 12px;
    padding: 22px 14px 18px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(80, 40, 10, 0.06);
}

.gg-stat-ico {
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    color: #d48847;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gg-stat-ico svg {
    width: 26px;
    height: 26px;
}

.gg-stat strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 24px;
    font-weight: 700;
    color: #3a1a12;
    margin-bottom: 4px;
    line-height: 1.1;
}

.gg-stat-star {
    color: #e6a700 !important;
    font-size: 16px;
}

.gg-stat span {
    font-size: 12px;
    color: #7a6a5c;
}

/* Ritual */
.gg-ritual {
    background: #fdfcf8;
    padding: 8px 0 28px;
}

.gg-ritual-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.gg-ritual-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #efe6da;
    text-decoration: none !important;
    color: #3a1a12 !important;
    box-shadow: 0 4px 14px rgba(80, 40, 10, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gg-ritual-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(80, 40, 10, 0.1);
    color: #3a1a12 !important;
}

.gg-ritual-media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3.4;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 220, 160, 0.45), transparent 55%),
        linear-gradient(160deg, #e8d2b0 0%, #c49a6c 45%, #8a5a3a 100%);
    overflow: hidden;
    position: relative;
}

.gg-ritual-card--daily .gg-ritual-media { background: linear-gradient(160deg, #f0d9b0, #b07a45); }
.gg-ritual-card--hawan .gg-ritual-media { background: linear-gradient(160deg, #f2c48a, #a15c28); }
.gg-ritual-card--aarti .gg-ritual-media { background: linear-gradient(160deg, #edd4a8, #8f5a2c); }
.gg-ritual-card--festival .gg-ritual-media { background: linear-gradient(160deg, #f0c9a0, #9a4d2a); }
.gg-ritual-card--vastu .gg-ritual-media { background: linear-gradient(160deg, #e6d0a8, #7d5a32); }
.gg-ritual-card--meditation .gg-ritual-media { background: linear-gradient(160deg, #e8c9a0, #8a4f28); }

.gg-ritual-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gg-ritual-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 8px;
    background: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #5c2e16;
    line-height: 1.25;
    border-top: 1px solid #f3ebe1;
}

/* Festival */
.gg-festival {
    background: #fff;
    padding: 28px 0 36px;
}

.gg-fest-head {
    position: relative;
    margin-bottom: 22px;
}

.gg-fest-head .gg-heading {
    margin-bottom: 0;
    width: 100%;
}

.gg-fest-view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border: 1px solid #d4b896;
    border-radius: 6px;
    color: #6b3a1f !important;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    background: #fff;
    white-space: nowrap;
}

.gg-fest-view-all:hover {
    background: #faf6f0;
    color: #553016 !important;
}

.gg-fest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gg-fest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 150px;
    text-decoration: none !important;
    display: block;
    border: 1px solid #efe6da;
    box-shadow: 0 4px 14px rgba(80, 40, 10, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gg-fest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(80, 40, 10, 0.1);
}

.gg-fest-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #e8d4b8, #c4a078);
}

.gg-fest-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gg-fest-card--image-only {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border: 0;
}

.gg-fest-card--image-only .gg-fest-bg {
    background: #f3e8d8;
}

.gg-fest-card--rakhi .gg-fest-bg,
.gg-fest-card--ganesh .gg-fest-bg,
.gg-fest-card--diwali .gg-fest-bg,
.gg-fest-card--navratri .gg-fest-bg {
    background: #f3e8d8;
}

.gg-fest-content,
.gg-fest-title,
.gg-fest-sub,
.gg-fest-btn {
    display: none !important;
}

/* Video + testimonial */
.gg-stories {
    background: #fdfcf8;
    padding: 28px 0 36px;
}

.gg-stories-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 20px;
    align-items: end;
}

.gg-video-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    color: #fff !important;
    background: #efe4d4;
    align-self: end;
    height: calc(100% - 48px);
    min-height: 220px;
}

.gg-video-card--image-only {
    border: 0;
    box-shadow: 0 4px 14px rgba(80, 40, 10, 0.06);
}

.gg-video-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gg-video-shade,
.gg-video-content,
.gg-video-eyebrow,
.gg-video-title,
.gg-video-watch,
.gg-play,
.gg-video-watch-text {
    display: none !important;
}

.gg-testimonial-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gg-testimonial-heading {
    margin-bottom: 12px;
}

.gg-testimonial-heading h2 {
    font-size: clamp(18px, 1.7vw, 22px);
}

.gg-testimonial-panel {
    position: relative;
    background: #fff;
    border: 1px solid #efe6da;
    border-radius: 14px;
    padding: 22px 46px 14px 22px;
    box-shadow: 0 4px 14px rgba(80, 40, 10, 0.05);
    min-height: 200px;
}

.gg-testimonial-slider {
    width: 100%;
}

.gg-testimonial-slider .owl-stage-outer {
    overflow: hidden;
}

.gg-quote-layout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.gg-quote-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e0b888, #9a6b45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.gg-quote-body {
    min-width: 0;
    flex: 1;
}

.gg-quote-stars {
    color: #e6a700;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1;
}

.gg-quote-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #5c4a3d;
    margin: 0 0 12px;
}

.gg-quote-meta strong {
    display: block;
    color: #3a1a12;
    font-size: 13px;
    margin-bottom: 2px;
}

.gg-quote-meta small {
    display: inline-block;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
}

.gg-testimonial-next {
    position: absolute;
    right: 10px;
    top: 46%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e8d9c8;
    background: #fff;
    color: #6e2a16;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(80, 40, 10, 0.08);
    cursor: pointer;
    z-index: 5;
    padding: 0;
}

.gg-testimonial-next:hover {
    background: #6e2a16;
    color: #fff;
    border-color: #6e2a16;
}

.gg-testimonial-slider .owl-nav {
    display: none !important;
}

.gg-testimonial-slider .owl-dots {
    margin: 10px 0 0 !important;
    text-align: center;
    line-height: 1;
}

.gg-testimonial-slider .owl-dot {
    display: inline-block;
}

.gg-testimonial-slider .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 3px !important;
    background: #e0cbb0 !important;
    opacity: 1 !important;
    border-radius: 50%;
}

.gg-testimonial-slider .owl-dot.active span {
    background: #d48847 !important;
}

/* Instagram */
.gg-ig-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.gg-ig-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    background: var(--gg-cream);
}

.gg-ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gg-ig-item:hover img {
    transform: scale(1.05);
}

.gg-ig-more {
    background: var(--gg-brown);
    color: #fff !important;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 12px;
}

.gg-ig-more i {
    font-size: 28px;
}

.gg-ig-more span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

/* Trust bar */
.gg-trust-bar {
    background: var(--gg-cream-2);
    border-top: 1px solid var(--gg-border);
    border-bottom: 1px solid var(--gg-border);
    padding: 22px 0;
}

.gg-trust-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.gg-trust-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gg-trust-col i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--gg-brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gg-border);
}

.gg-trust-col strong {
    display: block;
    font-size: 13px;
    color: var(--gg-ink);
}

.gg-trust-col span {
    font-size: 11px;
    color: #777;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .gg-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .gg-why-photo {
        grid-column: 1 / -1;
        min-height: 320px;
        max-height: none;
        border-radius: 14px 14px 0 0;
    }

    .gg-why-photo img {
        min-height: 320px;
        max-height: none;
        object-position: center 30%;
    }

    .gg-why-photo::after {
        width: 100%;
        height: 18%;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(253, 252, 248, 0), #fdfcf8);
    }

    .gg-why-copy {
        max-width: none;
    }

    .gg-ritual-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gg-fest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gg-fest-view-all {
        position: static;
        transform: none;
        margin: 10px auto 0;
        display: table;
    }

    .gg-fest-head {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gg-ig-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gg-trust-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .gg-stories-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: stretch;
    }

    .gg-video-card {
        height: auto;
        min-height: 240px;
    }

    .gg-testimonial-next {
        right: 10px;
    }

    .gg-section {
        padding: 36px 0;
    }

    .gg-why {
        padding: 12px 0 8px;
    }

    .gg-ritual {
        padding: 6px 0 22px;
    }
}

@media (max-width: 767.98px) {
    .gg-why-grid {
        grid-template-columns: 1fr;
    }

    .gg-why-photo {
        min-height: 280px;
        max-height: none;
    }

    .gg-why-photo img {
        min-height: 280px;
        max-height: none;
    }

    .gg-stat {
        padding: 18px 12px 14px;
    }

    .gg-stat strong {
        font-size: 20px;
    }

    .gg-ritual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gg-fest-grid {
        grid-template-columns: 1fr;
    }

    .gg-fest-card,
    .gg-fest-content {
        min-height: 140px;
    }

    .gg-fest-title {
        font-size: 16px;
    }

    .gg-ig-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gg-trust-row {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .gg-section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .gg-heading-line {
        max-width: 48px;
    }

    .gg-card-title {
        min-height: 0;
    }
}

@media (max-width: 479.98px) {
    .gg-trust-row {
        grid-template-columns: 1fr;
    }
}
