@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #faf8f5; /* Warm premium cream background */
    color: #4a2311; /* Deep chocolate text */
    /* Hide the scrollbar for the site */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar, html::-webkit-scrollbar {
    display: none;
}

/* =========================================
   LOADING SCREEN (OVERLAY)
   ========================================= */
#loader-container {
    position: fixed;
    inset: 0;
    background-color: #fffdfa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out, visibility 1s;
}

.logo-wrapper {
    position: relative;
    width: 90%;
    max-width: 450px;
    padding: 20px;
}

.logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: 
        introReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
        cinematicPulse 3.5s ease-in-out infinite 1.5s;
    opacity: 0;
}

@keyframes introReveal {
    0% { transform: scale(0.8) translateY(20px); filter: blur(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0px); filter: blur(0px); opacity: 1; }
}

@keyframes cinematicPulse {
    0% { transform: scale(1); filter: drop-shadow(0px 5px 15px rgba(83, 43, 22, 0.1)); }
    50% { transform: scale(1.03); filter: drop-shadow(0px 15px 30px rgba(255, 176, 58, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0px 5px 15px rgba(83, 43, 22, 0.1)); }
}

.progress-container {
    width: 250px;
    height: 2px;
    background: rgba(83, 43, 22, 0.1);
    margin-top: 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInProgress 1s ease-in forwards 1s;
}

@keyframes fadeInProgress {
    to { opacity: 1; }
}

.progress-bar {
    position: absolute;
    top: 0;
    left: -50%;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, #532b16, #ffb03a, #532b16, transparent);
    animation: indeterminateSlide 1.5s infinite cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 4px;
}

@keyframes indeterminateSlide {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* =========================================
   HOMEPAGE CONTENT
   ========================================= */
#main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

/* HEADER */
.welcome-banner {
    background-color: #4a2311;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.welcome-banner p {
    margin: 0;
}

.welcome-banner .translation {
    color: #ffb03a;
    font-style: italic;
    opacity: 1;
}

.top-menu {
    background-color: #fff;
    padding: 20px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4a2311;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff5e00;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff5e00;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.shop-link {
    background: #ffefe0;
    color: #c92a00;
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid #ffb03a;
}
.shop-link::after {
    display: none;
}
.shop-link:hover {
    background: #ffb03a;
    color: #fff;
}

@media (max-width: 768px) {
    .top-menu {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* OUR COLLECTIONS (HORIZONTAL SCROLL) */
.collections-section {
    padding: 40px 20px 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #4a2311;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.collections-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    /* Hide scrollbar for cleaner look but keep functionality */
    scrollbar-width: thin;
    scrollbar-color: #ffb03a #faf8f5;
    /* Enable smooth snapping to cards */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.collections-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.collections-scroll-wrapper::-webkit-scrollbar-track {
    background: #faf8f5;
    border-radius: 4px;
}
.collections-scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #ffb03a;
    border-radius: 4px;
}

.collections-row {
    display: flex;
    gap: 20px;
    width: max-content;
    padding-right: 20px; /* Ensure last card shadow isn't cut off */
}

.collection-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0; /* Prevent shrinking so horizontal scroll works */
    width: 200px;
    min-height: 260px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* Snap exactly to the start of this card */
    scroll-snap-align: start;
    scroll-margin-inline-start: 20px;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.collection-img {
    width: 100%;
    height: 180px;
    object-fit: contain; /* Using contain so the bags don't get cropped awkwardly */
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.05);
}

.product-name {
    margin: 10px 0 0 0;
    font-size: 1rem;
    color: #4a2311;
    font-weight: 600;
    text-align: center;
}

/* HERO SECTION */
.hero {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Left: Main Image */
.hero-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.01);
}

.main-halwa-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Middle: Variants Column */
.hero-variants {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 600px;
    justify-content: space-between;
}

.variant-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 1;
}

.variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.variant-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}

.variant-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.variant-info .price {
    margin: 0;
    color: #c92a00;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Right: Call to Action */
.hero-cta {
    display: flex;
    height: 100%;
}

.cta-box {
    background: #fff5ec;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #4a2311;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    width: 100%;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #555;
}

.cta-box .btn-primary {
    background-color: #ff5e00;
    color: #fff;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #ff5e00;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* BULK ORDERS SECTION (NEW DESIGN) */
.bulk-orders-section {
    padding: 80px 20px;
    background-color: #fff3e6;
    margin-top: 60px;
}

.bulk-orders-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bulk-content-left h2 {
    color: #c92a00;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bulk-intro-text {
    font-size: 1.2rem;
    color: #6b4c3a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.occasions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.occasion-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.occasion-icon {
    font-size: 2rem;
}

.occasion-text {
    color: #4a2311;
    font-weight: 600;
    font-size: 1.1rem;
}

.occasion-text .translation {
    display: block;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Bulk Pricing Card (Right Side) */
.bulk-pricing-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 3px solid #ffefe0;
    position: relative;
    overflow: hidden;
}

.bulk-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #ffb03a 0%, #ff5e00 100%);
    z-index: 0;
    border-radius: 20px 20px 0 0;
}

.bulk-card-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    border: 5px solid #fff;
    background: #fff;
}

.bulk-card-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.bulk-weight {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a2311;
    margin: 0;
}

.bulk-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff5e00;
    margin: 0;
}

.bulk-pricing-card .bulk-desc {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.bulk-btn {
    width: 100%;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    padding: 18px;
}

/* TRANSLATION TEXT STYLING */
.translation {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    color: #8c5d45;
    opacity: 0.8;
}

/* Tooltip behavior for links and buttons */
a .translation, button .translation {
    display: none !important;
}

a, button {
    position: relative;
}

a:hover .translation, button:hover .translation {
    display: block !important;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #3d1c0f;
    color: #f4ede4;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin: 0;
    opacity: 1;
    font-style: normal;
}

/* Tooltip triangle */
a:hover .translation::after, button:hover .translation::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #3d1c0f transparent transparent transparent;
}

/* =========================================
   MODAL STYLING
   ========================================= */
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    text-align: center;
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #4a2311;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #ff5e00;
}

.modal-header h2 {
    color: #4a2311;
    margin-top: 0;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-halwa-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin: 10px auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.modal-desc {
    color: #777;
    margin-bottom: 20px;
}

.quantity-controls {
    background: #faf8f5;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.base-info {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: #4a2311;
}

.total-weight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff5e00;
    margin-bottom: 15px;
}

.add-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.add-btn {
    background: #ffefe0;
    color: #c92a00;
    border: 2px solid #ffb03a;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.add-btn:hover {
    background: #ffb03a;
    color: #fff;
}

.reset-btn {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.reset-btn:hover {
    color: #4a2311;
}

.total-price-section h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #4a2311;
}

.confirm-bulk-btn {
    width: 100%;
}

/* =========================================
   BRAND STORY SECTION
   ========================================= */
.brand-story-section {
    padding: 80px 20px;
    background-color: #faf8f5;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-story-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.brand-story-content {
    flex: 1;
    min-width: 300px;
}

.brand-story-content h2 {
    color: #4a2311;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-story-content p {
    font-size: 1.15rem;
    color: #6b4c3a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.brand-story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-story-image .story-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.05);
}

/* =========================================
   REVIEWS SECTION
   ========================================= */
.reviews-section {
    padding: 60px 20px;
    background-color: #fff;
    max-width: 1400px;
    margin: 40px auto;
    border-radius: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #faf8f5;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #6b4c3a;
    font-size: 1.1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 700;
    color: #4a2311;
    text-align: right;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.main-footer {
    background-color: #fff5ec; /* Light cream to let the dark logo shine */
    color: #4a2311;
    padding: 60px 20px 20px 20px;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links h3, .footer-policies h3 {
    color: #c92a00;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links ul, .footer-policies ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-policies a {
    color: #4a2311;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover, .footer-policies a:hover {
    opacity: 1;
    color: #ff5e00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =========================================
   POLICY MODAL SPECIFICS
   ========================================= */
.policy-modal-content {
    max-width: 700px;
}

.policy-text h3 {
    color: #4a2311;
    margin-top: 20px;
}

.policy-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* =========================================
   OCCASION SVG ICONS
   ========================================= */
.occasion-icon svg {
    width: 32px;
    height: 32px;
    color: #ff5e00;
    filter: drop-shadow(0 2px 5px rgba(255, 94, 0, 0.2));
}

/* =========================================
   CALL ACTION MODAL & TOAST
   ========================================= */
.call-modal-content {
    text-align: center;
    max-width: 450px;
}

.call-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #fff5ec;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    color: #ff5e00;
    box-shadow: 0 0 0 10px rgba(255, 94, 0, 0.1);
    animation: pulseRing 2s infinite;
}

.call-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 94, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}

.call-modal-content h2 {
    color: #4a2311;
    margin-bottom: 10px;
}

.call-modal-content p {
    color: #666;
    margin-bottom: 20px;
}

.call-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c92a00;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.call-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.call-actions button {
    cursor: pointer;
    border: none;
}

.btn-secondary {
    background-color: #f0e6dd;
    color: #4a2311;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e0d0c0;
}

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
}

.toast.show {
    bottom: 40px;
}

.toast svg {
    width: 24px;
    height: 24px;
    animation: shakeIcon 0.5s infinite alternate;
}

@keyframes shakeIcon {
    from { transform: rotate(-10deg); }
    to { transform: rotate(10deg); }
}

/* ==========================================================================
   MASTER ALL-DEVICE RESPONSIVE OPTIMIZATION SUITE
   (4K Monitors, Wide Desktops, Laptops, Tablets, Standard Mobile, Compact SE, Short Viewports)
   ========================================================================== */

/* 1. ULTRA-WIDE SCREENS & 4K MONITORS (min-width: 1400px) */
@media (min-width: 1400px) {
    .hero-container,
    .brand-story-section,
    .reviews-section,
    .bulk-orders-wrapper {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

/* 2. LAPTOPS & SMALLER DESKTOPS (max-width: 1200px) */
@media (max-width: 1200px) {
    .main-header {
        padding: 16px 30px;
    }
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .hero-cta {
        grid-column: span 2;
    }
    .cta-box {
        padding: 35px;
    }
}

/* 3. TABLETS & FOLDABLE INNER SCREENS (max-width: 992px) */
@media (max-width: 992px) {
    .main-header {
        padding: 14px 24px;
    }
    .main-nav {
        gap: 20px;
    }
    .bulk-orders-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .brand-story-wrapper {
        gap: 24px;
    }
}

/* 4. SMALL TABLETS & LARGE MOBILE PHONES (max-width: 768px) */
@media (max-width: 768px) {
    .main-header {
        padding: 14px 18px;
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px 14px;
    }
    .hero-cta {
        grid-column: span 1;
    }
    .main-halwa-img {
        height: 360px;
    }
    .hero-variants {
        height: auto;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .brand-story-section {
        padding: 50px 16px;
    }
    .brand-story-wrapper {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-col {
        align-items: center;
    }
    .reviews-grid,
    .occasions-grid,
    .snacks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 5. STANDARD MOBILE PHONES (iPhone 13/14/15, Galaxy S series -> max-width: 480px) */
@media (max-width: 480px) {
    .welcome-banner {
        font-size: 0.82rem;
        padding: 8px 12px;
    }
    .main-header {
        padding: 12px 14px;
    }
    .header-logo {
        height: 44px;
    }
    .main-nav {
        gap: 14px;
        font-size: 1rem;
    }
    .nav-link {
        font-size: 1.05rem;
    }
    .hero-title {
        font-size: 1.95rem;
    }
    .main-halwa-img {
        height: 280px;
    }
    .variant-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 16px;
    }
    .variant-img {
        width: 100%;
        max-width: 180px;
        height: 140px;
    }
    .cta-box {
        padding: 26px 18px;
    }
    .cta-box h2 {
        font-size: 1.65rem;
    }
    .bulk-pricing-card {
        padding: 26px 16px;
    }
    .bulk-card-img {
        width: 170px;
        height: 170px;
    }
    .bulk-price {
        font-size: 1.9rem;
    }
    .reviews-grid,
    .occasions-grid,
    .snacks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .policy-modal-content {
        width: 94vw;
        max-width: 360px;
        padding: 22px 16px;
    }
    .call-modal-content {
        width: 94vw;
        max-width: 360px;
        padding: 24px 16px;
    }
}

/* 6. EXTRA COMPACT MOBILE PHONES (iPhone SE, Galaxy Z Flip cover, small viewports -> max-width: 374px) */
@media (max-width: 374px) {
    .welcome-banner {
        font-size: 0.76rem;
        padding: 6px 10px;
    }
    .main-header {
        padding: 10px 12px;
    }
    .header-logo {
        height: 38px;
    }
    .main-nav {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.95rem;
    }
    .hero-title {
        font-size: 1.7rem;
    }
    .main-halwa-img {
        height: 240px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .brand-story-content h2 {
        font-size: 1.8rem;
    }
    .call-number {
        font-size: 1.25rem;
    }
    .policy-modal-content,
    .call-modal-content {
        width: 95vw;
        padding: 18px 14px;
    }
}

/* 7. SHORT HEIGHT VIEWPORTS (Landscape mobile, small netbooks -> max-height: 680px) */
@media (max-height: 680px) {
    .hero-container {
        padding-top: 10px;
        padding-bottom: 20px;
    }
    .main-halwa-img {
        height: 260px;
    }
    .policy-modal-content,
    .call-modal-content {
        max-height: 88vh;
        overflow-y: auto;
    }
}

/* =========================================
   INTEGRATED BAKERY & SNACKS SHOP SECTION
   ========================================= */
.shop-section {
    background: #fffdfa;
    padding: 80px 0;
    border-top: 1px solid rgba(200, 90, 23, 0.15);
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.shop-header h2 {
    font-size: 2.8rem;
    color: #4a2311;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.shop-header p {
    font-size: 1.25rem;
    color: #6b4c3a;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.shop-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-category {
    margin-bottom: 70px;
}

.shop-category h3 {
    font-size: 2.2rem;
    color: #4a2311;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-category h3::before {
    content: '';
    display: block;
    width: 8px;
    height: 36px;
    background: #ff5e00;
    border-radius: 5px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.shop-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.shop-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #ffefe0;
}

.shop-card-img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-img {
    transform: scale(1.05);
}

.shop-card-title {
    font-size: 1.35rem;
    color: #4a2311;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.shop-card-price {
    font-size: 1.35rem;
    color: #ff5e00;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.shop-card-btn {
    background: #ff5e00;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.shop-card-btn:hover {
    background: #ffb03a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 176, 58, 0.4);
}

