/* ==========================================================================
   Gujarat Gold Centre — responsive.css
   Full cross-device responsive layer (4K → 320 px)
   Breakpoint map:
     2560 px+  : 4K / Ultra-wide
     1600 px   : Large desktop
     1400 px   : Standard desktop cap
     1200 px   : Small desktop / large laptop
     1024 px   : Landscape tablet / small laptop
      992 px   : Tablet landscape (Bootstrap md)
      768 px   : Tablet portrait (Bootstrap sm)
      600 px   : Large phone landscape
      480 px   : Typical phone
      400 px   : Small phone (SE, Galaxy A)
      320 px   : Minimum supported width
   ========================================================================== */


/* ==========================================================================
   1.  GLOBAL — CSS VARIABLES & BASE
   ========================================================================== */

/* --- 4K / Ultra-wide (2560 px+) ----------------------------------------- */
@media (min-width: 2560px) {
    :root {
        --container-width: 1800px;
        --header-height: 90px;
    }

    html {
        font-size: 18px;
    }

    .section-title {
        font-size: 3.2rem;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 5rem;
    }
}

/* --- Large Desktop (1600 px) -------------------------------------------- */
@media (max-width: 1600px) {
    :root {
        --container-width: 1360px;
    }
}

/* --- Standard Desktop cap (1400 px) ------------------------------------- */
@media (max-width: 1400px) {
    :root {
        --container-width: 1200px;
    }

    .nav-list {
        gap: 24px;
    }

    .header-search-box {
        width: 240px;
    }
}

/* --- Small Desktop / Large Laptop (1200 px) ------------------------------ */
@media (max-width: 1200px) {
    :root {
        --container-width: 100%;
    }

    .container {
        padding: 0 32px;
    }

    /* Header search tighter */
    .header-search-box {
        width: 200px;
    }

    .header-search-box:focus-within {
        width: 240px;
    }

    .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    /* Hero carousel */
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 3.2rem;
    }

    /* Live rate */
    .live-rate-container {
        gap: 40px;
    }

    /* Products: 4 → keep 4 visible, just tighter padding */
    .products-grid {
        gap: 20px;
    }

    .product-card {
        flex: 0 0 calc((100% - 60px) / 4);
        max-width: calc((100% - 60px) / 4);
    }

    .products-slider-prev {
        left: -18px;
    }

    .products-slider-next {
        right: -18px;
    }

    /* Services: 3 cols → keep 3 */
    .services-grid {
        gap: 24px;
    }

    /* Promo banners */
    .promo-banner-card {
        padding: 36px 40px;
    }

    /* Footer */
    .footer-grid {
        gap: 28px;
    }
}

/* --- Landscape tablet / small laptop (1024 px) --------------------------- */
@media (max-width: 1024px) {
    /* Header search hidden at this breakpoint */
    .header-search-box {
        width: 180px;
    }

    /* Products: 4 visible → 3 visible */
    .products-grid {
        gap: 18px;
    }

    .product-card {
        flex: 0 0 calc((100% - 36px) / 3);
        max-width: calc((100% - 36px) / 3);
    }

    /* Why grid 4 → 2 */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Category slider card width */
    .category-slider-track .category-card {
        flex: 0 0 150px;
        max-width: 150px;
        min-width: 150px;
    }

    /* Corporate / investment */
    .corporate-grid {
        gap: 40px;
    }

    .investment-grid {
        gap: 40px;
    }

    /* Contact */
    .contact-grid {
        gap: 40px;
    }

    /* Reels */
    .reels-scroll-outer {
        max-width: 940px;
    }

    .reel-card {
        flex: 0 0 220px;
        width: 220px;
        height: 391px;
    }
}


/* ==========================================================================
   2.  TABLET LANDSCAPE — 992 px
   ========================================================================== */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
        --announcement-height: 40px;
    }

    /* ----- Body / Global ----- */
    body {
        padding-top: calc(var(--header-height) + var(--announcement-height)) !important;
    }

    .container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* ----- Trust Badges ----- */
    .trust-badges-wrapper {
        justify-content: center;
        gap: 20px;
    }

    .trust-badge-item {
        flex: 0 1 calc(50% - 20px);
        min-width: 180px;
    }

    /* ----- Shop by Category ----- */
    .shop-by-category-section {
        padding: 48px 0;
    }

    .category-section-header {
        margin-bottom: 36px;
    }

    .category-card {
        flex: 0 0 calc((100% - 72px) / 4);
        max-width: 150px;
    }

    /* ----- Products ----- */
    .products-section {
        padding: 48px 0;
    }

    .products-grid {
        gap: 20px;
    }

    .product-card {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }

    .products-slider-nav {
        display: none;
    }

    /* ----- Why GGC ----- */
    .why-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* ----- Live Rate ----- */
    .live-rate-section {
        padding: 60px 0;
    }

    .live-rate-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .live-rate-widget {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ----- Investment ----- */
    .investment-section {
        padding: 48px 0;
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .investment-image-area {
        order: -1;
    }

    .investment-img {
        max-height: 360px;
        object-fit: cover;
    }

    /* ----- Corporate ----- */
    .corporate-section {
        padding: 48px 0;
    }

    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .corporate-grid .corporate-image {
        order: -1;
    }

    .corporate-img {
        max-height: 320px;
        width: 100%;
        object-fit: cover;
    }

    /* ----- Promo Banners ----- */
    .promo-banners-section {
        padding: 24px 0 48px;
    }

    .promo-banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-banner-card {
        padding: 32px 36px;
    }

    .promo-card-title {
        font-size: 1.6rem;
    }

    /* ----- Trust Us ----- */
    .trust-us-section {
        padding: 48px 0;
    }

    .trust-us-logos {
        gap: 60px;
    }

    .trust-logo-img {
        height: 95px;
    }

    /* ----- Services ----- */
    .services-section {
        padding: 48px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* ----- Testimonials ----- */
    .testimonials-section {
        padding: 48px 0;
    }

    .testimonials-header .section-title {
        font-size: 2.2rem;
    }

    /* ----- FAQ ----- */
    .faq-section {
        padding: 48px 0;
    }

    .faq-accordion-wrap {
        margin-top: 32px;
    }

    /* ----- Newsletter ----- */
    .newsletter-section {
        padding: 56px 0;
    }

    .newsletter-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    /* ----- Contact ----- */
    .contact-section {
        padding: 48px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-detail-row {
        flex-direction: column;
    }

    .contact-detail-row .contact-detail-item {
        flex: unset;
        width: 100%;
        min-width: unset;
    }

    /* ----- Footer ----- */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-col.footer-about {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}


/* ==========================================================================
   3.  TABLET PORTRAIT — 768 px
   ========================================================================== */
@media (max-width: 768px) {
    /* ----- Typography ----- */
    .section-title {
        font-size: 1.8rem;
    }

    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    /* Hide carousel arrows on small tablets */
    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    /* ----- Trust Badges ----- */
    .trust-badges-section {
        padding: 20px 0;
    }

    .trust-badge-text {
        font-size: 0.88rem;
    }

    /* ----- Live Rate ----- */
    .live-rate-widget {
        grid-template-columns: 1fr;
    }

    .rate-card {
        padding: 24px;
    }

    /* ----- Investment ----- */
    .investment-img {
        max-height: 280px;
    }

    .investment-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ----- Corporate ----- */
    .corporate-content {
        text-align: left;
    }

    .corporate-actions {
        flex-direction: column;
        gap: 12px;
    }

    .corporate-actions .btn {
        width: 100%;
    }

    /* ----- Trust Us ----- */
    .trust-us-section {
        padding: 36px 0;
    }

    .trust-us-logos {
        gap: 40px;
    }

    .trust-logo-img {
        height: 80px;
    }

    /* ----- Services — horizontal scroll on tablet portrait ----- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ----- Reels ----- */
    .reels-section {
        padding: 40px 0;
    }

    .reels-section-title {
        font-size: 1.75rem;
    }

    .reels-scroll-outer {
        max-width: 100%;
    }

    .reel-card {
        flex: 0 0 200px;
        width: 200px;
        height: 356px;
    }

    .reels-scroll-track {
        padding: 8px 16px 16px;
        gap: 14px;
    }

    /* ----- Promo Banners ----- */
    .promo-banner-card {
        padding: 28px 24px;
    }

    .promo-card-title {
        font-size: 1.4rem;
    }

    /* ----- Testimonials ----- */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-header .section-title {
        font-size: 2rem;
    }

    /* ----- Footer ----- */
    .main-footer {
        padding: 36px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding-bottom: 96px;
        position: relative;
    }

    .footer-social-links {
        position: absolute;
        bottom: 24px;
        left: 0;
        right: 0;
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 0;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .copyright {
        order: 2;
    }

    .footer-bottom-right {
        order: 1;
        justify-content: center;
    }
}


/* ==========================================================================
   4.  LARGE PHONE LANDSCAPE — 600 px
   ========================================================================== */
@media (max-width: 600px) {
    :root {
        --header-height: 60px;
        --announcement-height: 36px;
    }

    html {
        font-size: 15px;
    }

    /* ----- Global ----- */
    .container {
        padding: 0 14px;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-tagline {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .btn {
        padding: 11px 22px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    /* ----- Announcement bar ----- */
    .announcement-bar {
        font-size: 0.7rem;
    }

    .marquee-track {
        animation-duration: 12s;
    }

    .marquee-dot {
        margin: 0 14px;
    }

    /* ----- Trust Badges ----- */
    .trust-badges-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 10px;
        justify-items: center;
    }

    .trust-badge-item {
        width: 100%;
        flex: unset;
        min-width: unset;
        justify-content: flex-start;
    }

    /* ----- Shop by Category ----- */
    .shop-by-category-section {
        padding: 36px 0;
    }

    .category-section-header {
        margin-bottom: 28px;
    }

    .category-section-title {
        font-size: 1.6rem;
    }

    /* ----- Products — horizontal scroll ----- */
    .products-section {
        padding: 36px 0;
    }

    .products-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        min-width: calc((100% - 12px) / 2);
        scroll-snap-align: start;
        border-radius: var(--radius-md);
    }

    .product-image-area {
        aspect-ratio: 1.05;
    }

    .product-details {
        padding: 12px;
    }

    .product-name {
        font-size: 0.82rem;
        height: 36px;
        margin-bottom: 8px;
    }

    .current-price {
        font-size: 0.95rem;
    }

    .purity-badge {
        top: 8px;
        left: 8px;
        font-size: 0.58rem;
        padding: 2px 6px;
    }

    .add-to-cart-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        border-radius: 20px;
    }

    .quickview-btn {
        display: none;
    }

    /* ----- Why GGC ----- */
    .why-section {
        padding: 36px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 20px;
    }

    /* ----- Live Rate ----- */
    .live-rate-section {
        padding: 48px 0;
    }

    /* ----- Investment ----- */
    .investment-section {
        padding: 36px 0;
    }

    .investment-stat-item {
        padding: 12px 8px;
    }

    .investment-stat-number {
        font-size: 1.6rem;
    }

    .investment-stat-number .stat-static {
        font-size: 1.1rem;
    }

    .investment-stat-label {
        font-size: 0.78rem;
        margin-top: 4px;
    }

    /* ----- Corporate ----- */
    .corporate-section {
        padding: 36px 0;
    }

    /* ----- Promo banners ----- */
    .promo-banner-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 20px;
    }

    .promo-card-right {
        width: 100%;
    }

    .promo-btn {
        width: 100%;
        justify-content: center;
    }

    .promo-card-title {
        font-size: 1.25rem;
    }

    /* ----- Trust Us ----- */
    .trust-us-section {
        padding: 28px 0;
    }

    .trust-us-logos {
        gap: 30px;
    }

    .trust-logo-img {
        height: 70px;
    }

    /* ----- Services — single column ----- */
    .services-section {
        padding: 36px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 1.15rem;
    }

    /* ----- Reels ----- */
    .reels-section {
        padding: 32px 0;
    }

    .reels-section-title {
        font-size: 1.55rem;
    }

    .reels-section-header {
        margin-bottom: 32px;
    }

    /* ----- FAQ ----- */
    .faq-section {
        padding: 36px 0;
    }

    .faq-summary {
        font-size: 1rem;
    }

    .faq-accordion-wrap {
        margin-top: 24px;
    }

    /* ----- Newsletter ----- */
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-content h2 {
        font-size: 1.55rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form .btn {
        width: 100%;
        padding: 14px;
    }

    /* ----- Contact ----- */
    .contact-section {
        padding: 36px 0;
    }

    .contact-info h2 {
        font-size: 1.7rem;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-detail-item {
        padding: 14px 16px;
        gap: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* ----- Footer ----- */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-bottom: 96px;
        position: relative;
    }

    .footer-col.footer-about {
        grid-column: span 2;
        text-align: center;
    }

    .footer-col:last-child {
        text-align: left;
    }

    .footer-social-links {
        position: absolute;
        bottom: 24px;
        left: 0;
        right: 0;
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 20px;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .payment-methods {
        justify-content: center;
    }
}


/* ==========================================================================
   5.  TYPICAL PHONE — 480 px
   ========================================================================== */
@media (max-width: 480px) {
    /* ----- Typography ----- */
    .section-title {
        font-size: 1.5rem;
    }

    /* ----- Hero carousel ----- */
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .carousel-caption p {
        font-size: 0.88rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: 16px;
    }

    /* ----- Trust Badges ----- */
    .trust-badge-icon {
        width: 20px;
        height: 20px;
    }

    .trust-badge-text {
        font-size: 0.82rem;
    }

    /* ----- Category slider card ----- */
    .category-slider-track .category-card {
        flex: 0 0 100px;
        max-width: 100px;
        min-width: 100px;
    }

    .category-card-label {
        font-size: 0.76rem;
    }

    /* ----- Products ----- */
    .products-grid {
        gap: 10px;
    }

    .product-card {
        flex: 0 0 calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
        min-width: calc((100% - 10px) / 2);
    }

    /* ----- Why GGC ----- */
    .why-card {
        padding: 22px 16px;
    }

    .why-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .why-card-title {
        font-size: 1.05rem;
    }

    /* ----- Investment stats ----- */
    .investment-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* ----- Benefit list ----- */
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .benefit-item h4 {
        font-size: 0.95rem;
    }

    /* ----- Corporate features ----- */
    .corporate-features li {
        font-size: 0.88rem;
    }

    /* ----- Reels — single card + peek ----- */
    .reels-scroll-outer {
        max-width: 100%;
        overflow: visible;
    }

    .reel-card {
        flex: 0 0 82vw;
        width: 82vw;
        height: calc(82vw * 16 / 9);
        max-height: 420px;
    }

    .reels-scroll-track {
        padding: 8px 9vw 14px;
        gap: 12px;
    }

    .reels-section-title {
        font-size: 1.4rem;
    }

    /* ----- Trust Us ----- */
    .trust-us-logos {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
    }

    .trust-logo-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .trust-logo-img {
        height: 55px;
        max-width: 100%;
    }

    /* ----- Services ----- */
    .service-image-wrapper {
        aspect-ratio: 16 / 10;
    }

    /* ----- Promo banners ----- */
    .promo-card-tagline {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }

    /* ----- Testimonials ----- */
    .testimonials-header .section-title {
        font-size: 1.8rem;
    }

    /* Testimonial card wider on mobile */
    .testimonials-slider-track .testimonial-card {
        flex: 0 0 220px;
        max-width: 220px;
        min-width: 220px;
    }

    /* ----- FAQ ----- */
    .faq-summary {
        font-size: 0.92rem;
        padding: 14px 0;
    }

    .faq-answer {
        font-size: 0.88rem;
    }

    /* ----- Newsletter ----- */
    .newsletter-content h2 {
        font-size: 1.4rem;
    }

    /* ----- Contact ----- */
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-detail-item h5 {
        font-size: 0.88rem;
    }

    .contact-detail-item p {
        font-size: 0.82rem;
    }

    /* ----- Footer ----- */
    .footer-logo-badge {
        height: 44px;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .payment-methods {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* ==========================================================================
   6.  SMALL PHONE — 400 px (iPhone SE, Galaxy A series)
   ========================================================================== */
@media (max-width: 400px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    /* ----- Header ----- */
    .header-logo {
        max-width: 110px !important;
    }
    .header-logo .logo-link {
        height: 32px !important;
    }

    .header-icons .btn-login {
        padding: 5px 10px;
        font-size: 0.68rem;
    }

    .header-icons {
        gap: 8px;
    }

    /* ----- Section titles ----- */
    .section-title {
        font-size: 1.35rem;
    }

    .category-section-title {
        font-size: 1.4rem;
    }

    /* ----- Trust Badges ----- */
    .trust-badges-wrapper {
        gap: 12px 8px;
    }

    .trust-badge-text {
        font-size: 0.78rem;
    }

    /* ----- Products ----- */
    .products-grid {
        gap: 8px;
    }

    .product-card {
        flex: 0 0 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-width: calc((100% - 8px) / 2);
    }

    .product-details {
        padding: 8px;
    }

    .product-name {
        font-size: 0.76rem;
        height: 32px;
    }

    .current-price {
        font-size: 0.88rem;
    }

    .add-to-cart-btn {
        font-size: 0.7rem;
        padding: 6px 8px;
    }

    /* ----- Category card (grid) ----- */
    .category-card {
        flex: 0 0 calc((100% - 32px) / 2);
        max-width: 140px;
        min-width: 90px;
    }

    /* ----- Reels ----- */
    .reel-card {
        flex: 0 0 88vw;
        width: 88vw;
        height: calc(88vw * 16 / 9);
        max-height: 380px;
    }

    .reels-scroll-track {
        padding: 8px 6vw 12px;
        gap: 10px;
    }

    /* ----- Investment stats ----- */
    .investment-stat-number {
        font-size: 1.4rem;
    }

    .investment-stat-number .stat-static {
        font-size: 1rem;
    }

    /* ----- Why card ----- */
    .why-card-title {
        font-size: 1rem;
    }

    /* ----- Promo banner ----- */
    .promo-banner-card {
        padding: 20px 16px;
    }

    .promo-card-title {
        font-size: 1.15rem;
    }

    /* ----- Services ----- */
    .service-card-title {
        font-size: 1rem;
    }

    .service-desc-short {
        font-size: 0.85rem;
    }

    /* ----- FAQ ----- */
    .faq-summary {
        font-size: 0.88rem;
    }

    /* ----- Newsletter ----- */
    .newsletter-content h2 {
        font-size: 1.25rem;
    }

    .newsletter-input {
        padding: 12px 16px;
        font-size: 0.88rem;
    }

    /* ----- Contact form ----- */
    .contact-form-wrap {
        padding: 18px;
    }

    /* ----- Footer ----- */
    .footer-logo-badge {
        height: 40px;
    }

    .footer-brand-name {
        font-size: 1rem;
    }

    .footer-social-links a {
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .footer-credit {
        font-size: 0.7rem;
    }
}


/* ==========================================================================
   7.  MINIMUM SUPPORTED WIDTH — 320 px
   ========================================================================== */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    /* ----- Header ----- */
    .header-icons .btn-login {
        display: none; /* Too cramped; hide login button, keep icon-btn */
    }

    .mobile-nav-toggle {
        font-size: 1.2rem;
    }

    /* ----- Hero ----- */
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.35rem;
    }

    /* ----- Products ----- */
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }

    /* ----- Reels ----- */
    .reel-card {
        flex: 0 0 92vw;
        width: 92vw;
        height: calc(92vw * 16 / 9);
        max-height: 340px;
    }

    /* ----- Trust Us ----- */
    .trust-logo-img {
        height: 60px;
    }

    /* ----- Services ----- */
    .service-content {
        padding: 16px;
    }

    /* ----- Promo ----- */
    .promo-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }

    /* ----- Investment stats — stack to 1 col ----- */
    .investment-stats-grid {
        grid-template-columns: 1fr;
    }

    /* ----- Contact ----- */
    .contact-detail-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    /* ----- Footer ----- */
    .footer-social-links {
        gap: 14px;
    }
}


/* ==========================================================================
   8.  UTILITY OVERRIDES — SAFE GUARDS ACROSS ALL BREAKPOINTS
   ========================================================================== */

/* Prevent any element from overflowing the viewport horizontally */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
}

/* Make sure forms never overflow */
input,
textarea,
select {
    max-width: 100%;
}

/* Fix text overflow on very small widths */
.product-name,
.category-card-label,
.service-card-title,
.faq-summary,
.section-title,
.why-card-title {
    word-break: break-word;
}

/* Ensure carousels are always full-width and never overflow */
.banner-section,
.carousel-inner,
.carousel-item img {
    max-width: 100%;
    /* overflow: hidden; */
}

/* Category slider — keep scrollable on all screens */
.category-slider-container {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Smooth scroll for the whole page */
html {
    scroll-behavior: smooth;
}

/* Mobile navigation backdrop visibility */
.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 992px) {
    .mobile-nav-backdrop {
        display: block;
    }
}

/* Ensure the sticky header never overlaps content on any device */
@media (max-width: 992px) {
    .main-header {
        z-index: 2005;
    }
}

/* Very large screens: centre the navigation */
@media (min-width: 1400px) {
    .header-container {
        max-width: var(--container-width);
        margin: 0 auto;
    }
}

/* ==========================================================================
   UNIFIED SECTION PADDING AND HEADING UNDERLINE REMOVAL
   ========================================================================== */

/* 1. Default Desktop Spacing (Symmetric Padding & Standard Header Margin) */
.shop-by-category-section,
.products-section,
.reels-section,
.corporate-section,
.investment-section,
.promo-banners-section,
.trust-us-section,
.services-section,
.testimonials-section,
.faq-section,
.contact-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.section-header,
.category-section-header,
.reels-section-header {
    margin-bottom: 40px !important;
}

/* 2. Tablet Landscape Spacing (max-width: 992px) */
@media (max-width: 992px) {
    .shop-by-category-section,
    .products-section,
    .reels-section,
    .corporate-section,
    .investment-section,
    .promo-banners-section,
    .trust-us-section,
    .services-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .section-header,
    .category-section-header,
    .reels-section-header {
        margin-bottom: 32px !important;
    }
}

/* 3. Tablet Portrait Spacing (max-width: 768px) */
@media (max-width: 768px) {
    .shop-by-category-section,
    .products-section,
    .reels-section,
    .corporate-section,
    .investment-section,
    .promo-banners-section,
    .trust-us-section,
    .services-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .section-header,
    .category-section-header,
    .reels-section-header {
        margin-bottom: 28px !important;
    }
}

/* 4. Mobile Phones Spacing (max-width: 600px) */
@media (max-width: 600px) {
    .shop-by-category-section,
    .products-section,
    .reels-section,
    .corporate-section,
    .investment-section,
    .promo-banners-section,
    .trust-us-section,
    .services-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }

    .section-header,
    .category-section-header,
    .reels-section-header {
        margin-bottom: 24px !important;
    }
}

/* 5. Remove all underlines/dividers/separators below headings and trust badges border */
.separator,
.category-section-divider,
.reels-section-divider {
    display: none !important;
}

.trust-badges-section {
    border-bottom: none !important;
}
