/* ========== रीसेट और बेस स्टाइल ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

:root {
    --bg-page: #eaeded;
    --text-main: #111827;
    --text-soft: #4b5563;
    --muted: #6b7280;
    --primary: #ffd814;
    --primary-hover: #f7ca00;
    --pill-bg: #cc0c39;
    --white: #ffffff;
    --border: #d5d9d9;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
}

/* ========== कॉमन यूटिलिटी क्लासेस ========== */
.container {
    max-width: 1500px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 18px;
    position: relative;
}

/* ========== हीरो बैनर ========== */
.hero-banner {
    background: linear-gradient(135deg, #0d2b3e, #1a4b6d);
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    border-bottom: 4px solid #ff9900;
}

.hero-wrap {
    margin-bottom: -90px;
    z-index: 1;
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    min-height: 540px;
    background: linear-gradient(135deg, #d8ecff 0%, #ffe7d7 55%, #fff3e8 100%);
    box-shadow: inset 0 -40px 80px rgba(255, 255, 255, 0.3);
}

.slides {
    display: flex;
    transition: transform 0.65s ease;
    will-change: transform;
}

.slide {
    min-width: 100%;
    min-height: 540px;
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 30px;
    padding: 55px 60px 190px;
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    z-index: 0;
}

.slide-1::before {
    right: 6%;
    top: 12%;
    background: radial-gradient(circle, #9fd0ff 0%, transparent 70%);
}

.slide-2::before {
    right: 8%;
    top: 8%;
    background: radial-gradient(circle, #ffc8d2 0%, transparent 70%);
}

.slide-3::before {
    right: 7%;
    top: 10%;
    background: radial-gradient(circle, #ffe2a8 0%, transparent 70%);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(234, 237, 237, 1) 0%,
            rgba(234, 237, 237, 0.85) 14%,
            rgba(234, 237, 237, 0.08) 42%,
            rgba(234, 237, 237, 0) 65%);
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pill-bg);
    color: var(--white);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(204, 12, 57, 0.25);
}

.slide h1 {
    margin: 0 0 14px;
    font-size: 56px;
    line-height: 0.98;
    letter-spacing: -1.6px;
    color: var(--text-main);
    max-width: 620px;
}

.slide p {
    margin: 0 0 26px;
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    appearance: none;
    border: 1px solid transparent;
    outline: none;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--primary);
    color: #111;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: #fff;
    transform: translateY(-1px);
}

.hero-art {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-card {
    width: 430px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.16);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: rotate(-3deg) translateY(-4px);
}

.device-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.device-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
}

.device-info h3 {
    margin: 0 0 5px;
    font-size: 24px;
    color: var(--text-main);
}

.device-info small {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.price {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
}

.slider-controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px;
    pointer-events: none;
    z-index: 5;
}

.slider-controls button {
    pointer-events: auto;
    width: 50px;
    height: 86px;
    border: 0;
    outline: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    font-size: 30px;
    color: #111;
    box-shadow: var(--shadow-soft);
    transition: all 0.25s ease;
}

.slider-controls button:hover {
    background: #fff;
    transform: scale(1.03);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 130px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.25s ease;
}

.dot.active {
    width: 28px;
    border-radius: 999px;
    background: #111827;
}

.section {
    margin-top: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.6px;
}

.section-link {
    color: #2162a1;
    font-weight: 600;
    font-size: 14px;
}


/* ========== प्रोडक्ट ग्रिड ========== */
.grid-title {
    font-size: 22px;
    font-weight: 700;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* ========== प्रोडक्ट कार्ड ========== */
.card {
    background: white;
    border-radius: 8px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-img {
    width: 100%;
    height: 200px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.card-img img {
    width: 100%; 
    height: 100%; 
    object-fit: fill; 
    display: block;
}

.card-category {
    color: #007185;
    font-size: 14px;
    margin-bottom: 5px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f1111;
}

.rating {
    color: #ffa41c;
    font-size: 16px;
    margin-bottom: 8px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hidden {
    display: none;
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: #565959;
}

.delivery {
    font-size: 14px;
    color: #0f1111;
    margin-bottom: 10px;
}

.badge {
    background-color: #cc0c39;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
}

/* ========== स्ट्रिप बैनर ========== */
.strip-banner {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 15px;
    border: 1px solid #ddd;
}

.strip-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.strip-left span {
    font-size: 20px;
    font-weight: 600;
}

.shop-now-btn {
    background-color: #ff9900;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
}

.shop-now-btn:hover {
    background-color: #e68900;
}

html {
    scroll-behavior: smooth;
}

:root {
    --radius: 24px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

.home-page,
.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
    font-family: var(--font-body);
}

.home-page {
    background:
        radial-gradient(circle at top left, rgba(244, 185, 120, 0.24), transparent 32%),
        radial-gradient(circle at top right, rgba(130, 170, 196, 0.22), transparent 26%),
        linear-gradient(180deg, #f7efe5 0%, #f4efe8 24%, #edf2f7 72%, #f8fafc 100%);
}

.home-page .home-main {
    position: relative;
    padding-bottom: 56px;
}

.home-page .home-main::before {
    content: "";
    position: absolute;
    inset: 120px 0 auto;
    height: 540px;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 209, 154, 0.26), transparent 28%),
        radial-gradient(circle at 82% 15%, rgba(188, 220, 235, 0.26), transparent 30%);
    pointer-events: none;
}

.home-page .container {
    max-width: 1500px;
    margin: 0 auto 28px;
    padding: 0 24px;
}

.home-page .hero-wrap {
    position: relative;
    margin-bottom: -68px;
    z-index: 2;
}

.home-page .slider {
    min-height: 620px;
    border-radius: 0 0 44px 44px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 36px 90px rgba(78, 53, 28, 0.18);
    overflow: hidden;
}

.home-page .slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%),
        radial-gradient(circle at 15% 15%, rgba(255, 233, 205, 0.22), transparent 24%);
    pointer-events: none;
    z-index: 1;
}

.home-page .slide {
    min-height: 620px;
    gap: 42px;
    padding: 74px 64px 214px;
    align-items: center;
}

.home-page .slide::after {
    background: linear-gradient(to top,
            rgba(247, 239, 229, 1) 0%,
            rgba(247, 239, 229, 0.9) 12%,
            rgba(247, 239, 229, 0.18) 46%,
            rgba(247, 239, 229, 0) 66%);
}

.home-page .slide-dynamic .slide-content h1 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.92;
    letter-spacing: -1.6px;
    color: #fff7ee;
    max-width: 660px;
}

.home-page .slide-dynamic .slide-content p {
    color: rgba(255, 247, 238, 0.86);
    font-size: 18px;
    max-width: 560px;
}

.home-page .pill {
    background: rgba(255, 245, 229, 0.14);
    color: #fff2df;
    border: 1px solid rgba(255, 233, 208, 0.22);
    box-shadow: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-page .hero-actions {
    align-items: center;
}

.home-page .btn {
    padding: 15px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(32, 23, 14, 0.18);
}

.home-page .btn-primary {
    background: linear-gradient(135deg, #ffe1a8 0%, #f7bf61 100%);
    color: #5b2f0c;
}

.home-page .btn-primary:hover {
    background: linear-gradient(135deg, #ffe8ba 0%, #f2b14f 100%);
}

.home-page .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff7ee;
    border-color: rgba(255, 255, 255, 0.2);
}

.home-page .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.home-page .hero-facts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.home-page .hero-fact {
    min-width: 116px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.home-page .hero-fact strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff6ea;
}

.home-page .hero-fact span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 245, 232, 0.76);
}

.home-page .hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.home-page .hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(18, 14, 12, 0.18);
    color: rgba(255, 247, 238, 0.88);
    font-size: 12px;
    font-weight: 700;
}

.home-page .hero-art {
    justify-content: flex-end;
}

.home-page .device-card {
    width: 460px;
    background: rgba(255, 250, 244, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow: 0 32px 80px rgba(33, 21, 11, 0.22);
}

.home-page .device-card img {
    height: 330px;
    border-radius: 24px;
    object-fit: fill;
    width: 100%;
    display: block;
}

.home-page .device-info h3 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 0.98;
}

.home-page .device-info small {
    color: #5f6c7b;
}

.home-page .device-info .price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    padding: 11px 14px;
    border-radius: 999px;
    background: #1f2937;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-page .slider-dots {
    bottom: 144px;
}

.home-page .dot {
    background: rgba(255, 255, 255, 0.56);
    border-color: rgba(255, 255, 255, 0.28);
}

.home-page .dot.active {
    background: #fff7ee;
}

.home-page .home-story-card {
    position: relative;
    z-index: 3;
    display: grid;
    
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 240, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 28px 64px rgba(109, 76, 36, 0.12);
}

.home-page .home-story-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 161, 0.3), transparent 70%);
    pointer-events: none;
}

.home-page .home-story-copy {
    position: relative;
    z-index: 1;
}

.home-page .home-story-kicker {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fef0dd;
    color: #8a4a16;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .home-story-copy h2 {
    margin: 16px 0 12px;
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 0.96;
    color: #1f2937;
}

.home-page .home-story-copy p {
    max-width: 760px;
    font-size: 16px;
    line-height: 1.75;
    color: #526070;
}

.home-page .home-quick-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.home-page .home-quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(138, 74, 22, 0.14);
    color: #7a4318;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-page .home-quick-link:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 18px 28px rgba(122, 67, 24, 0.1);
}

.home-page .home-story-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-page .home-metric-card {
    padding: 20px 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 232, 0.92));
    border: 1px solid rgba(215, 195, 164, 0.32);
    box-shadow: 0 20px 34px rgba(91, 61, 23, 0.08);
    text-align: center;
}

.home-page .home-metric-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 0.95;
    color: #8a4a16;
}

.home-page .home-metric-card span {
    display: block;
    margin-top: 10px;
    color: #526070;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-page .section-shell {
    position: relative;
    z-index: 2;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 30px 64px rgba(78, 53, 28, 0.1);
    overflow: hidden;
}

.home-page .section-shell::before {
    content: attr(data-shell-label);
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 243, 226, 0.98);
    color: #8a4a16;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-page .section-shell::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 213, 156, 0.18), transparent 70%);
    pointer-events: none;
}

.home-page .section-shell-tight {
    padding: 24px;
}

.home-page .section-shell-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 245, 232, 0.68));
    border-color: rgba(255, 255, 255, 0.82);
}

.home-page .section-shell-highlight::before {
    background: rgba(255, 243, 226, 0.98);
    color: #8a4a16;
    border: 1px solid rgba(138, 74, 22, 0.12);
}

.home-page .section {
    margin-top: 8px;
}

.home-page .section-header {
    align-items: flex-end;
    margin-bottom: 20px;
}

.home-page .section-title {
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #1f2937;
}

.home-page .section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(122, 67, 24, 0.12);
    color: #8a4a16;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

.home-page .floating-grid {
    gap: 22px;
}

.home-page .feature-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(231, 220, 203, 0.86);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 237, 0.96));
    box-shadow: 0 24px 48px rgba(101, 70, 33, 0.08);
}

.home-page .feature-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 214, 156, 0.22), transparent 32%);
    pointer-events: none;
}

.home-page .feature-panel-body {
    position: relative;
    padding: 24px;
}

.home-page .feature-panel-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 0.98;
    color: #1f2937;
}

.home-page .mini-grid {
    gap: 16px;
    margin-top: 20px;
}

.home-page .mini-item {
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid rgba(215, 220, 225, 0.8);
    background: rgba(255, 255, 255, 0.78);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .mini-item:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 151, 97, 0.45);
    box-shadow: 0 18px 34px rgba(107, 74, 32, 0.1);
}

.home-page .mini-item img {
    height: 132px;
}

.home-page .mini-item span {
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #243041;
}

.home-page .product-grid {
    gap: 22px;
    margin-bottom: 0;
}

.home-page .card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(228, 219, 206, 0.92);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    box-shadow: 0 22px 48px rgba(96, 67, 33, 0.09);
    padding: 16px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 120px;
    background: linear-gradient(135deg, rgba(249, 217, 177, 0.28), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-page .card:hover {
    transform: translateY(-10px);
    border-color: rgba(194, 150, 89, 0.5);
    box-shadow: 0 32px 54px rgba(96, 67, 33, 0.14);
}

.home-page .card-img {
    position: relative;
    height: 230px;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #f7eadb, #eef4f8);
}

.home-page .card-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fef0dd;
    color: #9a4d10;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.home-page .card-title {
    min-height: 50px;
    margin-bottom: 10px;
    color: #142033;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-page .rating {
    margin-bottom: 12px;
    color: #dd9a18;
    font-size: 14px;
    letter-spacing: 2px;
}

.home-page .card .price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
}

.home-page .card .price span,
.home-page .card .price .mrp {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.home-page .delivery {
    margin-bottom: 12px;
    color: #516071;
    font-size: 13px;
    line-height: 1.5;
}

.home-page .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-page .offer-banner {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 64px rgba(10, 15, 26, 0.32);
    overflow: hidden;
}

.home-page .offer-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 229, 177, 0.18), transparent 25%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%);
    pointer-events: none;
}

.home-page .offer-copy,
.home-page .offer-visual {
    position: relative;
    z-index: 1;
}

.home-page .offer-copy {
    padding: 48px 42px;
}

.home-page .offer-copy h2 {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 0.94;
    color: #fff7ee;
}

.home-page .offer-copy p {
    margin-top: 14px;
    color: rgba(255, 247, 238, 0.82);
    font-size: 17px;
    line-height: 1.75;
}

.home-page .offer-stat {
    min-width: 120px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 14px 18px;
    color: rgba(255, 247, 238, 0.82);
}

.home-page .offer-stat strong {
    font-size: 20px;
    color: #fff7ee;
}

.home-page .offer-visual img {
    border-radius: 26px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.home-page .brand-strip-section .brands {
    gap: 18px;
}

.home-page .brand-box {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(226, 220, 212, 0.94);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.94));
    box-shadow: 0 22px 42px rgba(97, 66, 32, 0.08);
    padding: 24px 14px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .brand-box:hover {
    transform: translateY(-6px);
    border-color: rgba(191, 151, 96, 0.5);
    box-shadow: 0 28px 48px rgba(97, 66, 32, 0.12);
}

.home-page .brand-strip-name {
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-page .trust-card {
    border-radius: 24px;
    border: 1px solid rgba(224, 217, 209, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.94));
    box-shadow: 0 24px 44px rgba(97, 66, 32, 0.08);
    padding: 24px;
}

.home-page .trust-icon {
    background: linear-gradient(135deg, #fff4df, #f6efe6);
    color: #8a4a16;
    border: 1px solid rgba(192, 152, 98, 0.16);
}

/* ========== style.css का मोबाइल सेक्शन - पूरा ========== */
@media (max-width: 768px) {

    /* हेडर मोबाइल */
    .navbar {
        padding: 8px 12px;
    }

    /* प्रोडक्ट ग्रिड - 2 कॉलम */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* कार्ड स्टाइल */
    .card {
        padding: 10px;
    }

    .card-img {
        height: 120px;
        font-size: 40px;
    }

    .card-title {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 34px;
    }

    .price {
        font-size: 15px;
    }

    .price span {
        font-size: 10px;
        display: block;
    }

    .badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    /* ग्रिड टाइटल */
    .grid-title {
        font-size: 16px;
        padding: 10px 12px;
    }

    /* हीरो बैनर */
    .hero-banner {
        padding: 20px 12px;
        font-size: 18px;
    }

    /* कार्ट पेज */
    .cart-page {
        flex-direction: column;
    }

    /* फूटर */
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}
