@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    background: #121212;
    color: #fff;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* =============================================
   PAGE SYSTEM
============================================= */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: 75px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18,18,18,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.88);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #dfb75c;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo span { color: #fff; }

.menu {
    display: flex;
    gap: 6px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #dfb75c;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.menu a:hover,
.menu a.active-link {
    background: rgba(223,183,92,0.15);
    color: #fff;
}

.cart-icon {
    background: linear-gradient(135deg,#f2d489,#dfb75c);
    color: #121212;
    padding: 11px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.cart-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(223,183,92,0.35);
}

#cart-count {
    background: #121212;
    color: #fff;
    padding: 2px 7px;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 4px;
    vertical-align: middle;
}

/* =============================================
   HOME PAGE — HERO
============================================= */
#page-home {
    position: relative;
    overflow: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-top: 95px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(18,18,18,0.90) 0%,rgba(18,18,18,0.55) 55%,rgba(18,18,18,0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    line-height: 78px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #dfb75c;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(223,183,92,0.12);
    border: 1px solid rgba(223,183,92,0.35);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 14px;
    color: #f2d489;
    margin-bottom: 36px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 50px;
    background: linear-gradient(135deg,#f2d489,#dfb75c);
    color: #121212;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 12px 30px rgba(223,183,92,0.35);
    color: #121212;
}

/* =============================================
   PRODUCTS PAGE
============================================= */
#page-products {
    background: #121212;
}

.products-section {
    padding: 100px 6% 80px 6%;
}

/* =============================================
   TITLE + SEARCH ROW
============================================= */
.title-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.1;
}

.section-title span {
    color: #dfb75c;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,#dfb75c,#f2d489);
    display: block;
    margin: 10px 0 0 0;
    border-radius: 10px;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1.5px solid rgba(223,183,92,0.22);
    border-radius: 50px;
    padding: 0 16px;
    gap: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.search-box:focus-within {
    border-color: #dfb75c;
    box-shadow: 0 0 0 3px rgba(223,183,92,0.10);
}

.search-icon {
    font-size: 13px;
    opacity: 0.5;
    flex-shrink: 0;
}

#product-search {
    width: 180px;
    padding: 11px 0;
    background: transparent;
    border: none;
    font-size: 13px;
    color: #fff;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

#product-search::placeholder {
    color: rgba(223,183,92,0.35);
    font-size: 13px;
}

.search-clear {
    background: transparent;
    border: none;
    color: #444;
    font-size: 12px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    display: none;
    flex-shrink: 0;
    line-height: 1;
}

.search-clear.visible { display: block; }
.search-clear:hover { color: #ff6b6b; background: rgba(255,107,107,0.1); }

/* Results info */
.search-results-info {
    font-size: 12px;
    color: #555;
    margin-top: 8px;
    min-height: 16px;
    text-align: left;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.search-results-info.found { color: #dfb75c; }
.search-results-info.not-found { color: #e74c3c; }

/* =============================================
   CATEGORY FILTER
============================================= */
.category-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-bottom: 4px;
}

.cat-btn {
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.07);
    background: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2px;
}

.cat-btn:hover {
    border-color: rgba(223,183,92,0.4);
    color: #dfb75c;
    background: rgba(223,183,92,0.06);
}

.cat-btn.active {
    background: linear-gradient(135deg, #f2d489, #c9952a);
    border-color: transparent;
    color: #121212;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(223,183,92,0.25);
}

/* =============================================
   PRODUCTS GRID
============================================= */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.loading-text {
    grid-column: 1/-1;
    text-align: center;
    color: #555;
    font-size: 15px;
    padding: 80px 0;
    letter-spacing: 0.3px;
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
}

.no-results-icon {
    font-size: 44px;
    margin-bottom: 14px;
    display: block;
    opacity: 0.3;
}

.no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #444;
    margin-bottom: 6px;
    font-weight: 600;
}

.no-results p {
    font-size: 13px;
    color: #383838;
}

/* =============================================
   PRODUCT CARD
============================================= */
.product-card {
    background: #181818;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(223,183,92,0.18);
    border-color: rgba(223,183,92,0.2);
}

/* search filter */
.product-card.search-hidden {
    display: none !important;
}

/* Image container */
.product-card .img-wrap {
    position: relative;
    overflow: hidden;
    background: #222;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, opacity 0.3s ease;
    opacity: 0.9;
    background: #222;
}

.product-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Price badge on image */
.product-card .price-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(18,18,18,0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(223,183,92,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 15px;
    font-weight: 700;
    color: #f2d489;
    letter-spacing: 0.3px;
}

.product-info {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    margin-bottom: 4px;
    color: #f0f0f0;
    line-height: 1.3;
    font-weight: 600;
}

/* hide old price paragraph — price is now badge */
.product-info > p.product-price {
    display: none;
}

/* fallback if badge not used */
.product-info > p {
    font-size: 19px;
    font-weight: 700;
    color: #dfb75c;
    margin-bottom: 4px;
}

.product-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
}

.cart-btn {
    flex: 1;
    padding: 11px 10px;
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    background: transparent;
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.cart-btn:hover {
    background: #fff;
    color: #121212;
    border-color: #fff;
    transform: translateY(-2px);
}

.buy-btn {
    flex: 1.2;
    padding: 11px 10px;
    border: none;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
}

.buy-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(37,211,102,0.3);
}

.buy-btn .wa-icon { width: 15px; height: 15px; object-fit: contain; flex-shrink: 0; }

/* =============================================
   CONTACT PAGE
============================================= */
#page-contact {
    background: linear-gradient(180deg,#161616 0%,#1a1a1a 100%);
}

.contact-section {
    padding: 110px 5% 90px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contact-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 28px;
}

.contact-left {
    width: 48%;
    background: #1e1e1e;
    padding: 34px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-left h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #dfb75c;
    display: block;
    margin-top: 8px;
    border-radius: 10px;
}

.contact-description {
    font-size: 14px;
    line-height: 22px;
    color: #999;
    margin-bottom: 20px;
    margin-top: 14px;
}

.email-box {
    margin-bottom: 20px;
    padding: 14px 16px;
    background: rgba(223,183,92,0.06);
    border: 1px solid rgba(223,183,92,0.2);
    border-radius: 12px;
}

.email-box p { font-size: 12px; color: #888; margin-bottom: 4px; }

.email-box a {
    color: #dfb75c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.email-box a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #252525;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #dfb75c; background: #2a2a2a; }

.contact-form textarea { height: 90px; resize: none; }

.contact-form button {
    padding: 14px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg,#f2d489,#dfb75c);
    color: #121212;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover { opacity: 0.88; transform: translateY(-2px); }

.contact-right {
    width: 48%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: #2a2a2a;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 400px;
}

.contact-right iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
    filter: invert(90%) hue-rotate(180deg);
    opacity: 0.85;
}

/* =============================================
   FOOTER
============================================= */
footer {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin-bottom: 10px;
    color: #dfb75c;
}

.footer-sub { font-size: 14px; color: #555; margin-bottom: 10px; }
.footer-email { font-size: 13px; color: #555; }
.footer-email a { color: #dfb75c; text-decoration: none; }
.footer-email a:hover { text-decoration: underline; }

/* =============================================
   WHATSAPP
============================================= */
.whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 4px 18px rgba(37,211,102,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.whatsapp img { width: 32px; height: 32px; object-fit: contain; display: block; }

/* =============================================
   RIPPLE
============================================= */
.ripple {
    position: absolute;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* =============================================
   CART SIDEBAR
============================================= */
.cart-sidebar {
    position: fixed;
    top: 0; right: -440px;
    width: 400px;
    height: 100vh;
    background: #1c1c1c;
    z-index: 3000;
    padding: 28px;
    border-left: 1px solid rgba(255,255,255,0.06);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -12px 0 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-sidebar.active { right: 0; }

.cart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-top h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: #fff; }

.cart-top span {
    font-size: 24px; color: #888;
    cursor: pointer; user-select: none;
    transition: color 0.2s; line-height: 1;
}

.cart-top span:hover { color: #ff4d4d; }

#cart-items { flex: 1; overflow-y: auto; padding-right: 4px; }
#cart-items::-webkit-scrollbar { width: 5px; }
#cart-items::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

.cart-item {
    display: flex; gap: 14px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 14px;
    align-items: flex-start;
}

.cart-item img {
    width: 78px !important; height: 78px !important;
    min-width: 78px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    background: #2a2a2a;
}

.cart-item-info { flex: 1; }

.cart-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px; margin-bottom: 4px;
    color: #fff; line-height: 1.3;
}

.cart-item p { color: #dfb75c; font-weight: 700; font-size: 14px; margin-bottom: 8px; }

.remove-btn {
    background: transparent !important;
    color: #ff6b6b !important;
    border: none; padding: 0;
    font-size: 11px; font-weight: 600;
    cursor: pointer; transition: 0.2s;
    text-decoration: underline;
    margin-top: 4px; display: inline-block;
}

.remove-btn:hover { color: #ff0000 !important; }

.qty-row { display: flex; align-items: center; gap: 0; margin-bottom: 6px; }

.qty-btn {
    width: 28px; height: 28px;
    border: 1.5px solid rgba(223,183,92,0.35);
    background: #252525; color: #dfb75c;
    font-size: 16px; font-weight: 700;
    border-radius: 8px; cursor: pointer;
    transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
    padding: 0;
}

.qty-btn:hover { background: #dfb75c; color: #121212; border-color: #dfb75c; }

.qty-display {
    min-width: 32px; text-align: center;
    font-size: 15px; font-weight: 700;
    color: #fff; padding: 0 6px;
}

.cart-item-subtotal { font-size: 12px; color: #777; margin-top: 2px; }
.cart-item-subtotal span { color: #dfb75c; font-weight: 700; }

.cart-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.06); }

.cart-total-row {
    display: flex; justify-content: space-between;
    font-size: 20px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}

.cart-total-row span { color: #dfb75c; }

.delivery-free { font-size: 13px; color: #777; margin-bottom: 8px; }
.delivery-free .strike { text-decoration: line-through; color: #555; margin-right: 4px; }

.order-note {
    font-size: 12px; color: #f2d489;
    background: rgba(242,212,137,0.07);
    border: 1px solid rgba(242,212,137,0.18);
    border-radius: 8px; padding: 9px 12px;
    margin-bottom: 12px; line-height: 1.5;
}

.coupon-container {
    background: rgba(223,183,92,0.06);
    border: 1px solid rgba(223,183,92,0.28);
    border-radius: 14px; padding: 14px 16px;
    margin-bottom: 16px;
}

.coupon-container label {
    display: block; font-size: 12px;
    font-weight: 700; color: #dfb75c; margin-bottom: 10px;
}

.coupon-row { display: flex; gap: 8px; align-items: center; }

.coupon-row input {
    flex: 1; padding: 10px 14px;
    background: #181818;
    border: 1.5px solid rgba(223,183,92,0.25);
    border-radius: 50px; font-size: 13px;
    font-weight: 600; color: #f2d489;
    outline: none; letter-spacing: 1px;
    transition: border-color 0.3s;
}

.coupon-row input::placeholder { color: rgba(223,183,92,0.35); font-weight: 400; }
.coupon-row input:focus { border-color: #dfb75c; background: #202020; }

.coupon-row button {
    padding: 10px 16px; border: none;
    border-radius: 50px;
    background: linear-gradient(135deg,#f2d489,#dfb75c);
    color: #121212; font-size: 13px;
    font-weight: 700; cursor: pointer;
    transition: 0.3s; white-space: nowrap;
}

.coupon-row button:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(223,183,92,0.3); }

#coupon-message { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; }

.btn-wa-icon { width: 19px; height: 19px; object-fit: contain; vertical-align: middle; flex-shrink: 0; }

.checkout-btn {
    width: 100%; margin-top: 14px; padding: 15px;
    border: none; border-radius: 50px;
    background: #25d366; color: #fff;
    font-size: 15px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
}

.checkout-btn:hover { transform: translateY(-3px); background: #1ebe5d; box-shadow: 0 8px 22px rgba(37,211,102,0.35); }

/* =============================================
   CHECKOUT MODAL
============================================= */
.checkout-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px);
    z-index: 4000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 16px; overflow-y: auto;
}

.checkout-modal.show { opacity: 1; pointer-events: auto; }

.modal-content {
    background: #1e1e1e; width: 100%;
    max-width: 480px; max-height: 92vh;
    overflow-y: auto; padding: 26px 28px;
    border: 1px solid rgba(223,183,92,0.14);
    border-radius: 24px; position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.65);
    transform: translateY(-16px);
    transition: transform 0.3s ease;
    scrollbar-width: thin; scrollbar-color: #333 transparent;
}

.modal-content::-webkit-scrollbar { width: 5px; }
.modal-content::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
.checkout-modal.show .modal-content { transform: translateY(0); }

.close-modal {
    position: absolute; top: 18px; right: 22px;
    font-size: 20px; cursor: pointer;
    color: #888; transition: color 0.2s; line-height: 1;
}

.close-modal:hover { color: #ff4d4d; }

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; color: #fff;
    margin-bottom: 4px; padding-right: 30px;
}

.modal-subtitle { font-size: 12px; color: #888; margin-bottom: 16px; }

.lucknow-notice {
    background: rgba(223,183,92,0.09);
    border: 1px solid rgba(223,183,92,0.22);
    border-radius: 10px; padding: 10px 14px;
    margin-bottom: 14px; font-size: 12px;
    color: #f2d489; line-height: 1.5;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { margin-bottom: 12px; display: flex; flex-direction: column; gap: 5px; }

.form-group label { font-size: 12px; font-weight: 600; color: #dfb75c; }

.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 10px 14px;
    background: #262626;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; font-size: 13px;
    color: white; outline: none; transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: #dfb75c; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1e1e1e; }
.form-group textarea { resize: none; }

.order-summary-box {
    background: #111; color: white;
    padding: 14px 16px; border-radius: 12px;
    margin-top: 14px; margin-bottom: 14px;
    border: 1px solid rgba(223,183,92,0.14);
}

.summary-row {
    display: flex; justify-content: space-between;
    align-items: center; font-size: 13px;
    font-weight: 500; color: #bbb;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-row:last-child { border-bottom: none; }

.advance-row {
    background: rgba(223,183,92,0.08);
    border-radius: 8px; padding: 8px 10px; margin: 4px -4px;
}

.gold-text { color: #f2d489 !important; font-weight: 800; font-size: 15px; }

.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }

.step-dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: #2a2a2a; border: 2px solid rgba(255,255,255,0.1);
    color: #555; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}

.step-dot.active { background: linear-gradient(135deg,#f2d489,#dfb75c); color: #121212; border-color: #dfb75c; }
.step-dot.done { background: #25d366; color: white; border-color: #25d366; }

.step-line { width: 60px; height: 2px; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.step-line.done { background: #25d366; }

.advance-amount-box {
    text-align: center;
    background: linear-gradient(135deg,rgba(223,183,92,0.10),rgba(242,212,137,0.05));
    border: 1.5px solid rgba(223,183,92,0.3);
    border-radius: 16px; padding: 18px; margin-bottom: 18px;
}

.advance-amount-box p { font-size: 12px; color: #888; margin-bottom: 4px; }
.advance-amount-box h1 { font-family: 'Playfair Display', serif; font-size: 40px; color: #f2d489; font-weight: 700; line-height: 1; }
.advance-amount-box small { font-size: 11px; color: #777; }

.payment-methods { display: flex; flex-direction: column; margin-bottom: 16px; }

.qr-box, .upi-box {
    background: #222; border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px; padding: 16px; text-align: center;
}

.pay-label { font-size: 12px; font-weight: 700; color: #dfb75c; margin-bottom: 12px; }

.qr-img { width: 155px; height: 155px; object-fit: contain; border-radius: 10px; border: 3px solid white; }

.qr-fallback {
    width: 155px; height: 155px; margin: 0 auto;
    background: #1a1a1a;
    border: 2px dashed rgba(223,183,92,0.28);
    border-radius: 10px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; color: #555; font-size: 12px;
}

.qr-fallback span { font-size: 30px; }

.pay-divider { text-align: center; position: relative; margin: 12px 0; color: #555; font-size: 12px; font-weight: 600; }
.pay-divider::before, .pay-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: rgba(255,255,255,0.07); }
.pay-divider::before { left: 0; }
.pay-divider::after { right: 0; }
.pay-divider span { background: #1e1e1e; padding: 0 10px; position: relative; z-index: 1; }

.upi-id-row {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; background: #181818;
    border: 1.5px solid rgba(223,183,92,0.22);
    border-radius: 50px; padding: 10px 16px; margin-bottom: 8px;
}

#upi-id-text { font-size: 14px; font-weight: 700; color: #f2d489; letter-spacing: 0.5px; }

.copy-btn {
    background: rgba(223,183,92,0.12);
    border: 1px solid rgba(223,183,92,0.28);
    color: #dfb75c; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    cursor: pointer; transition: 0.2s; white-space: nowrap;
}

.copy-btn:hover { background: #dfb75c; color: #121212; }

.screenshot-notice {
    background: rgba(37,211,102,0.06);
    border: 1px solid rgba(37,211,102,0.18);
    border-radius: 12px; padding: 14px 16px; margin-bottom: 14px;
}

.screenshot-notice p { font-size: 13px; font-weight: 700; color: #25d366; margin-bottom: 8px; }
.screenshot-notice ol { padding-left: 18px; }
.screenshot-notice li { font-size: 12px; color: #bbb; margin-bottom: 4px; line-height: 1.5; }
.screenshot-notice li strong { color: #fff; }

.back-btn {
    width: 100%; margin-top: 10px; padding: 11px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; background: transparent;
    color: #777; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: 0.2s;
}

.back-btn:hover { background: rgba(255,255,255,0.05); color: #fff; }

.place-order-btn {
    width: 100%; padding: 14px; border: none;
    border-radius: 50px; background: #25d366;
    color: #fff; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
    display: flex; align-items: center;
    justify-content: center; gap: 8px;
}

.place-order-btn:hover { transform: translateY(-3px); background: #1ebe5d; box-shadow: 0 8px 22px rgba(37,211,102,0.35); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 992px) {
    .navbar { width: 96%; padding: 0 28px; }
    .hero-content h1 { font-size: 52px; line-height: 62px; }
    .section-title { font-size: 40px; }
    .products { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 18px; height: auto; flex-wrap: wrap; gap: 10px; top: 10px; background: rgba(10,10,10,0.92) !important; }
    .logo { font-size: 22px; }
    .menu { order: 3; width: 100%; justify-content: center; gap: 4px; margin-top: 4px; }
    .menu a { font-size: 13px; padding: 7px 12px; }
    .cart-icon { padding: 9px 14px; font-size: 14px; }
    .hero-content h1 { font-size: 38px; line-height: 46px; }
    .hero-content p { font-size: 15px; letter-spacing: 1.5px; }
    .products-section { padding: 110px 4% 60px 4%; }
    .contact-section { padding: 120px 5% 60px 5%; align-items: flex-start; }
    .products { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 18px; }
    .product-buttons { flex-direction: row; }
    .section-title { font-size: 32px; }
    .cat-btn { font-size: 12px; padding: 7px 14px; }
    .contact-container { flex-direction: column; gap: 15px; }
    .contact-left, .contact-right { width: 100%; padding: 20px; }
    .contact-right { min-height: 250px; }
    .contact-right iframe { min-height: 250px; }
    .cart-sidebar { width: 100%; right: -100%; }
    .modal-content { padding: 20px 16px; border-radius: 18px; max-height: 95vh; }
    .form-row { grid-template-columns: 1fr; }
    .title-search-row { flex-direction: column; align-items: flex-start; gap: 14px; }
    .title-search-row .section-title { text-align: center; width: 100%; }
    .title-search-row .section-title::after { margin: 10px auto 0; }
    .search-box { width: 100%; }
    #product-search { width: 100%; }
    .search-results-info { text-align: center; }
}

@media (max-width: 420px) {
    .hero-content h1 { font-size: 30px; line-height: 38px; }
    .hero-content p { font-size: 13px; }
    .hero-btn { padding: 13px 28px; font-size: 14px; }
    .section-title { font-size: 32px; }
    #product-search { font-size: 14px; }
}