* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:  sans-serif;
    overflow-x: hidden;
}
/* header and footer */
:root {
    --yellow: #ffd700;
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --white: #ffffff;
}
.main-header {
    background: var(--black);
    color: var(--white);
    padding: 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--yellow);
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}
.logo-img {
    height: 140px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}
.logo a {
    font-family:  sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
    line-height: 1;
}
.logo span {
    color: var(--white);
}
.nav-menu {
    display: flex;
    list-style: none;
}
.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}
.nav-menu li a:hover {
    color: var(--yellow);
}
.cart-icon {
    position: relative;
    text-decoration: none;
    font-size: 1.5rem;
}
.badge {
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    right: -10px;
    font-weight: bold;
}
.footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 5px solid var(--yellow);
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-logo {
    font-family:  sans-serif;
    color: var(--yellow);
    margin-bottom: 15px;
}
.footer-logo span {
    color: var(--white);
}
.footer-section h3 {
    color: var(--yellow);
    margin-bottom: 20px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
    transition: 0.3s;
}
.footer-section ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* cart  and checkout page  */
.checkout-master {
    background: #000;
    color: #fff;
    padding: 120px 0 80px;
    font-family: "Poppins", sans-serif;
}
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.checkout-header {
    text-align: center;
    margin-bottom: 50px;
}
.checkout-header h1 {
    font-family: "Fredoka One";
    font-size: 3.5rem;
    color: #fff;
}
.checkout-header h1 span {
    color: #ffd700;
}
.checkout-header p {
    color: #888;
    font-size: 1.1rem;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: start;
}
.glass-box {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 24px;
    transition: 0.3s;
}
.box-title {
    font-family: "Fredoka One";
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 1.4rem;
}
.cart-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.munch-item {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
    position: relative;
}
.munch-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.munch-img img {
    width: 60px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}
.munch-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.munch-details p {
    font-size: 0.8rem;
    color: #666;
}
.munch-price {
    color: #ffd700;
    font-weight: 800;
    font-size: 1.1rem;
}
.munch-remove {
    position: absolute;
    right: 0;
    color: #444;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.munch-remove:hover {
    color: #ff4d4d;
}
.mt-30 {
    margin-top: 30px;
}
.munch-form .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.munch-form input,
.munch-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 12px;
    font-family: inherit;
}
.munch-form input:focus {
    border-color: #ffd700;
    outline: none;
}
.summary-card {
    background: #ffd700;
    color: #000;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}
.bill-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}
.free-badge {
    color: #008000;
    font-weight: 800;
}
.bill-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 1.8rem;
    font-weight: 900;
}
.checkout-final-btn {
    width: 100%;
    background: #000;
    color: #ffd700;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s;
}
.checkout-final-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.sticky-box {
    position: sticky;
    top: 120px;
}
.summary-card {
    position: relative;
    overflow: hidden;
    border: 2px solid #000;
}
.checkout-final-btn {
    animation: pulse-yellow 2s infinite;
}
@keyframes pulse-yellow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
/* Success Message Hint */
.trust-footer p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-top: 10px;
}
/* Mobile */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-final-btn {
        position: fixed;
        bottom: 20px;
        left: 5%;
        width: 90%;
        z-index: 1000;
    }

    .sticky-box {
        position: static;
    }
}
/* login and signup  */
.signup-btn {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 800 !important;
}
.user-dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #1a1a1a;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 10px 0;
    list-style: none;
    top: 100%;
}
.dropdown-content li a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
}
.user-dropdown:hover .dropdown-content {
    display: block;
}
.user-name {
    color: var(--yellow) !important;
    cursor: pointer;
}
/* orders history */
.orders-history-wrapper {
    background: #000;
    padding: 120px 0 80px;
    min-height: 100vh;
}
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.order-strip {
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}
.order-strip:hover {
    border-color: #ffd700;
    transform: translateX(10px);
}
.order-main-info {
    display: flex;
    flex-direction: column;
}
.order-id {
    color: #ffd700;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: sans-serif;
}
.order-date {
    color: #555;
    font-size: 0.85rem;
}
.order-details {
    flex: 1;
    padding: 0 40px;
}
.order-addr {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.order-total {
    color: #fff;
    margin: 0;
}
.status-pill {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pill.pending {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.status-pill.delivered {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.status-pill.cancelled {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}
/* Responsive */
@media (max-width: 768px) {
    .order-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-details {
        padding: 0;
    }
}
/* Layout Settings */
.hero-clean {
    height: 80vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}
.hero-bg-lock {
    height: 100%;
    width: 100%;
    background: url("../images/makhana-bowl.png") no-repeat center center fixed;
    background-size: cover;
}


.spotlight-section {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background-color: #ffc107;
    transition: background-color 0.8s ease;
}
.spotlightSwiper {
    width: 100%;
    height: 100%;
}
.spotlight-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}
.spotlight-details {
    text-align: center;
    color: #fff;
    margin-top: -40px;
}
.spotlight-title {
    font-family: sans-serif;
    font-size: 5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.discover-btn {
    background: #ffc107;
    color: #1a1a1a;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.discover-btn:hover {
    background: #1a1a1a;
    color: #ffc107;
}
.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.925);
    z-index: 100;
    transition: all 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffff;
    transform: scale(1.1);
} 
/* HEADING ROW STYLING */
.product-header-row {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.munch-badge {
    color: #ffc107;
    font-weight: 800;
    letter-spacing: 1.4px;
    font-size: 0.98rem;
    margin-bottom: 8px;
}
.title-main {
    font-family:  sans-serif;
    font-size: 2.8rem;
    color: #111;
}
.title-main span {
    color: #ffc107;
}
.olive-separator {
    width: 50px;
    height: 4px;
    background: #ffc107;
    margin-top: 15px;
    border-radius: 2px;
}
.product-grid-final {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 100%;
}
.makhana-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s ease;
    text-align: left;
}
.makhana-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}
.makhana-img-box {
    position: relative;
    overflow: hidden;
    background: #f4f5f0;
    border-radius: 8px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.makhana-img-box img {
    height: 85%;
    z-index: 2;
}
.makhana-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}
.makhana-pricing {
    margin: 15px 0 20px;
}
.price-actual {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffc107;
}
.price-mrp {
    color: #aaa;
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 10px;
}
@media (max-width: 1024px) {
    .product-grid-final {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .product-grid-final {
        grid-template-columns: 1fr;
    }
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 10;
}
.overlay-icons {
    display: flex;
    gap: 15px;
    transform: translateY(30px);
    transition: all 0.4s ease-in-out;
}
.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #ffc107;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.view-btn:hover {
    color: #ffc107;
    transform: scale(1.2);
}
.icon-btn:hover {
    background: #ffc107;
    color: #fff;
    transform: scale(1.1);
}
.makhana-img-box:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}
.makhana-img-box:hover .overlay-icons {
    transform: translateY(0);
}
.makhana-img-box:hover img {
    transform: scale(1.1);
    transition: 0.5s ease;
}
/* fourth section */
.process-section {
    padding: 80px 20px;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.process-header h2 {
    font-family:  sans-serif, cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    line-height: 1.2;
}
.process-header h2 span {
    color: #ffc107;
}
.process-header p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}
.process-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 40px 20px;
}
.process-item {
    flex: 1 1 300px;
    max-width: 380px;
    padding: 20px;
    box-sizing: border-box;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid #ffc107;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.icon-circle img {
    width: 45px;
    height: auto;
    object-fit: contain;
}
.process-item:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}
.process-item h4 {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.process-item p {
    color: #ffc107;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
}
/* --- RESPONSIVE BREAKPOINTS --- */
/* Tablet (768px and below) */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 15px;
    }
    .process-grid {
        gap: 30px;
    }
}
/* Mobile (480px and below) */
@media (max-width: 480px) {
    .process-item {
        flex: 1 1 100%; /* Pure mobile width lega */
        padding: 10px;
    }
    .icon-circle {
        width: 80px;
        height: 80px;
    }
}
.trust-signals-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.signal-card {
    background: #ffffff;
    border-radius: 20px; 
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}
.signal-card:hover {
    transform: translateY(-6px); 
}
.signal-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.icon-bg {
    width: 80px;
    height: 80px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-bg img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}
.signal-text h4 {
    font-family:  sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 8px;
}
.signal-text p {
    font-family:  sans-serif;
    color: #777;
    font-size: 1rem;
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .signals-grid {
        grid-template-columns: 1fr;
    }
}