* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    background-color: #fafaf8;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --dark: #1a1a1a;
    --light: #fafaf8;
    --cream: #f5f1eb;
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: #2B2420 ;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-link {
    color: #fff !important;
    margin: 0 1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile navbar toggle icon white */
.navbar-toggler {
    border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon {
    filter: invert(1);
}


/* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
            display: flex;
            align-items: center;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            color: #B8860B;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 16px;
            color: #666666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #B8860B;
            color: #FFFFFF;
        }

        .btn-primary:hover {
            background: #B8860B;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(45, 90, 78, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: #B8860B;
            border: 2px solid #B8860B;
        }

        .btn-secondary:hover {
            background: #B8860B;
            color: #FFFFFF;
        }

        .hero-image {
            position: relative;
            height: 570px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            width: 115%;
            height: 115%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .floating-icon {
            position: absolute;
            font-size: 40px;
            color: #D4AF37;
            opacity: 0.8;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 420px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
       
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* ===== SECTIONS ===== */
.about-image {
    width: 90%;
    height: 550px;
    object-fit: cover;
}


section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #B8860B;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 0 2rem 0;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
}


.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-body {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-category {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.3rem;
    color: var(--dark-gold);
    font-weight: 700;
    margin-top: 0.5rem;
}

@media (max-width:768px) {

  .product-card {
      margin-bottom: 18px;
  }

  .featured-collection {
      padding: 40px 0;
  }

  .product-image-wrapper {
      aspect-ratio: 4/5;
  }
}



/* ===== STORIES/REELS CAROUSEL ===== */
#stories {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1eb 100%);
    overflow: hidden;
    position: relative;
}

.stories-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 2rem;
}

.stories-carousel {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card {
    position: absolute;
    width: 300px;
    height: 480px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.story-card:hover {
    border-color: var(--gold);
}

.story-inner {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CARD POSITIONS */
.story-card[data-index="0"] {
    transform: translateX(-320px) scale(0.75) rotateY(5deg);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.7);
}

.story-card[data-index="1"] {
    transform: translateX(-180px) scale(0.85) rotateY(3deg);
    z-index: 2;
    opacity: 0.8;
    filter: brightness(0.85);
}

.story-card[data-index="2"],
.story-card.active {
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 5;
    opacity: 1;
    filter: brightness(1);
}

.story-card[data-index="3"] {
    transform: translateX(180px) scale(0.85) rotateY(-3deg);
    z-index: 2;
    opacity: 0.8;
    filter: brightness(0.85);
}

.story-card[data-index="4"] {
    transform: translateX(320px) scale(0.75) rotateY(-5deg);
    z-index: 1;
    opacity: 0.6;
    filter: brightness(0.7);
}

/* BUTTONS */
.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(100, 100, 100, 0.6);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.story-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.15);
}

.story-prev {
    left: 20px;
}

.story-next {
    right: 20px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .story-card {
        width: 250px;
        height: 420px;
    }

    .story-card[data-index="0"] {
        transform: translateX(-280px) scale(0.75);
    }

    .story-card[data-index="1"] {
        transform: translateX(-150px) scale(0.85);
    }

    .story-card[data-index="3"] {
        transform: translateX(150px) scale(0.85);
    }

    .story-card[data-index="4"] {
        transform: translateX(280px) scale(0.75);
    }
}

@media (max-width: 991px) {
    .stories-carousel {
        height: 450px;
    }

    .story-card {
        width: 220px;
        height: 380px;
    }

    .story-card[data-index="0"] {
        transform: translateX(-240px) scale(0.7);
        opacity: 0.5;
    }

    .story-card[data-index="1"] {
        transform: translateX(-130px) scale(0.82);
    }

    .story-card[data-index="3"] {
        transform: translateX(130px) scale(0.82);
    }

    .story-card[data-index="4"] {
        transform: translateX(240px) scale(0.7);
        opacity: 0.5;
    }

    .story-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .story-prev {
        left: 10px;
    }

    .story-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    #stories {
        padding: 40px 20px !important;
    }

    .stories-carousel {
        height: 400px;
    }

    .story-card {
        width: 200px;
        height: 340px;
        border-radius: 20px;
    }

    .story-card[data-index="0"],
    .story-card[data-index="4"] {
        display: none;
    }

    .story-card[data-index="1"] {
        transform: translateX(-110px) scale(0.8);
    }

    .story-card[data-index="3"] {
        transform: translateX(110px) scale(0.8);
    }

    .story-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .story-prev {
        left: 5px;
    }

    .story-next {
        right: 5px;
    }
}

@media (max-width: 576px) {
    .stories-carousel {
        height: 380px;
    }

    .story-card {
        width: 180px;
        height: 300px;
    }

    .story-card[data-index="1"] {
        transform: translateX(-95px) scale(0.78);
    }

    .story-card[data-index="3"] {
        transform: translateX(95px) scale(0.78);
    }
}


/* ===== STORE GALLERY SECTION ===== */
.store-gallery-section {
    background: linear-gradient(135deg, #fafaf8 0%, #f5f1eb 100%);
    padding: 80px 0;
}

.store-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.store-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 380px;
}

.store-image-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.store-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.store-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-image-card:hover .store-image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(212, 175, 55, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.store-image-card:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

/* RESPONSIVE - TABLET */
@media (max-width: 1200px) {
    .store-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .store-image-card {
        height: 320px;
    }

    .overlay-text {
        font-size: 1.3rem;
    }
}

/* RESPONSIVE - TABLET (MEDIUM) */
@media (max-width: 991px) {
    .store-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .store-image-card {
        height: 300px;
    }

    .overlay-text {
        font-size: 1.2rem;
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .store-gallery-section {
        padding: 50px 0;
    }

    .store-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-image-card {
        height: 280px;
    }

    .overlay-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* RESPONSIVE - SMALL MOBILE */
@media (max-width: 576px) {
    .store-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .store-image-card {
        height: 240px;
    }

    .overlay-text {
        font-size: 1rem;
    }

    .store-gallery-section {
        padding: 40px 0;
    }
}

/* ===== CRAFTSMANSHIP PROCESS SECTION ===== */

.craftsmanship-section {
    background: white;
    padding: 60px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #B8860B;
    margin-bottom: 1rem;
    font-weight: 700;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
    margin: 0 auto 2rem;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.process-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.8;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
}

/* Arrow between steps (desktop only) */
.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.8rem;
    top: 0.5rem;
    font-size: 1.5rem;
    color: #D4AF37;
    opacity: 0.3;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (1200px and below) */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .craftsmanship-section {
        padding: 40px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .step-content {
        padding-bottom: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .process-step:last-child .step-content {
        border-bottom: none;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .craftsmanship-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .process-step {
        gap: 1rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #2B2420 ;
    color: #ccc;
    padding: 60px 0 0;
}

/* BRAND */
.footer-logo {
    max-width: 180px;
    margin-bottom: 12px;
}

.footer-caption {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

/* TITLES */
.footer-title {
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

/* QUICK LINKS HORIZONTAL */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.footer-nav a {
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--gold);
}

/* SOCIAL */
.footer-social .social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom .divider {
    margin: 0 8px;
    color: #555;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    .footer-brand {
        text-align: left;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-social {
        text-align: left;
    }

    .footer-social .social-icons {
        justify-content: flex-start;
    }
}


/* ===== FORM ===== */
.form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.was-validated .form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
}

/* ===== VALUES SECTION ===== */
.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
}

.member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== COLLECTION PAGE ===== */
.filter-section {
    background-color: white;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.filter-btn {
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    border: 2px solid #ddd;
    background: transparent;
    color: var(--dark);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.filter-btn:hover {
    border-color: var(--gold);
}

.sort-select {
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 0.5rem;
    color: var(--dark);
    background-color: white;
    cursor: pointer;
}

.search-box input {
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 0.7rem 1rem;
    width: 100%;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #999;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    width: 100%;
    padding: 25px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-radius: 0;
    border: none;
    margin-top: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 0;
    border: none;
    margin-top: 1rem;
}

/* ===== MAP ===== */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background-color: var(--cream);
    padding: 1rem 0;
    border-radius: 0;
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item a {
    color: var(--dark);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--gold);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* ===== UTILITIES ===== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* .... */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 16px;
    }
}

/* Remove dot / underline / extra decoration */
.footer-social .social-icons,
.footer-social .social-icons a {
    list-style: none;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Make sure icons are clean */
.footer-social .social-icon {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Optional: clean focus outline */
.footer-social .social-icon:focus {
    outline: none;
}

/* ===== MOBILE HEADING CENTERING (SAFE) ===== */
@media (max-width: 768px) {
    /* Only affects "Celebrate Tradition..." and "Where Tradition..." sections */
    .about-intro-section .section-title,
    .about-intro-reversed-section .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the dividers */
    .about-intro-section .divider,
    .about-intro-reversed-section .divider {
        margin-left: auto;
        margin-right: auto;
    }

    /* Center the paragraph text */
    .about-intro-section .about-intro,
    .about-intro-section > p,
    .about-intro-reversed-section .about-intro,
    .about-intro-reversed-section > p {
        text-align: center;
    }
}

/* ===== MOBILE OUR STORY HEADING CENTERING ===== */
@media (max-width: 768px) {
    .our-story-section .section-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .our-story-section .divider {
        margin-left: auto;
        margin-right: auto;
    }

    .our-story-section > .container > .row > .col-lg-6:last-child {
        text-align: center;
    }

    .our-story-section > .container > .row > .col-lg-6:last-child p {
        text-align: center;
    }
}

/* ===== MOBILE NAVBAR UNDERLINE ADJUSTMENT ===== */
@media (max-width: 991px) {
    
   .nav-link:hover::after,
   .nav-link.active::after {
   width: 20% !important;
   }

}
