@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');
html,
body {
    font-family: 'Manrope', sans-serif;
}
h1,
h2,
h3,
.product-title {
    font-family: 'Manrope', serif;
}
:root {
    --green: #4f1964;
    --green2: #68277f;
    --gold: #4f1964;
    --cream: #f8ecdb;
    --ink: #32143d;
    --line: #e5d2bb;
    --muted: #746578;
}
* {
    box-sizing: border-box
}
body {
    margin: 0;
    background: linear-gradient(#fffaf5, #f8ecdb);
    color: var(--ink);
    overflow-x: hidden;
}
img,
svg,
video {
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none
}
.cart,
.btn {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid #f8ecdb;
    display: inline-block;
    font: bold 14px 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 7px 18px #4f196422
}
.hero {
    min-height: 580px;
    padding: 70px 7%;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    background: radial-gradient(circle at 80% 40%, #4f19641a, transparent 35%)
}
.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin: 15px 0;
    color: var(--green)
}
.hero p {
    font: 20px/1.6 'DM Sans', sans-serif;
    max-width: 650px
}
.hero img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 70px #4f196425;
    border: 1px solid var(--line)
}
.eyebrow {
    font: bold 12px 'DM Sans', sans-serif;
    color: #4f1964;
    letter-spacing: 2px
}
.section {
    padding: 60px 6%;
    max-width: 1300px;
    margin: auto
}
.section h1,
.section h2 {
    color: var(--green);
    font-size: 38px
}
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 12px 35px #6f511210
}
.card img,
.placeholder {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 15px;
    background: linear-gradient(145deg, #f8ecdb, #fff);
    display: grid;
    place-items: center;
    font-size: 70px;
    color: var(--gold)
}
.card h3 {
    font-size: 19px
}
.price {
    font: bold 20px 'DM Sans', sans-serif;
    color: var(--green)
}
del {
    font-size: 14px;
    color: #888
}
.full {
    width: 100%;
    text-align: center
}
.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0 35px
}
.chips a,
.chips span {
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #fff;
    font: 14px 'DM Sans', sans-serif
}
.trust {
    margin: 30px 5% 70px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--green);
    color: #fff;
    border-radius: 25px;
    text-align: center;
    font-size: 18px
}
.trust small {
    font: 12px 'DM Sans', sans-serif;
    opacity: .8
}
.product {
    max-width: 1150px;
    margin: 60px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px
}
.product-img {
    width: 100%;
    border-radius: 24px
}
.bigprice {
    font-size: 30px
}
.facts,
.contactbox,
.summary,
.upi {
    background: #fff;
    border: 1px solid var(--line);
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0
}
.outline {
    display: inline-block;
    margin: 10px;
    padding: 11px 18px;
    border: 1px solid var(--green);
    border-radius: 30px;
    color: var(--green)
}
.narrow {
    max-width: 760px
}
.cartrow {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 20px;
    padding: 18px;
    border-bottom: 1px solid var(--line)
}
.total {
    font-size: 22px;
    padding: 25px 0;
    display: flex;
    justify-content: space-between
}
.formgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}
.formgrid textarea {
    grid-column: 1/-1;
    min-height: 90px
}
input,
textarea,
.search input {
    width: 100%;
    padding: 14px;
    border: 1px solid #d8c99f;
    border-radius: 10px;
    background: #fff;
    font: 15px 'DM Sans', sans-serif
}
.pay {
    display: block;
    background: #fff;
    padding: 16px;
    margin: 10px 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    /* font-family: 'DM Sans', sans-serif */
}
.pay input {
    width: auto
}
.upi img {
    max-width: 260px;
    width: 100%;
    display: block;
    margin: 15px auto
}
.hidden {
    display: none
}
.success {
    text-align: center;
    padding: 100px 20px;
    min-height: auto
}
.om {
    font-size: 85px;
    color: var(--gold)
}
.message {
    max-width: 760px;
    margin: 20px auto;
    background: #fff0d4;
    padding: 15px;
    border-radius: 10px
}
.search {
    display: flex;
    gap: 8px;
    max-width: 500px
}
.search button {
    border: 0;
    background: var(--green);
    color: white;
    border-radius: 10px;
    padding: 0 20px
}
@media(max-width:800px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 6%;
        min-height: auto
    }
    .hero h1 {
        font-size: 39px
    }
    .hero img {
        margin-top: 30px
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }
    .trust {
        grid-template-columns: 1fr 1fr
    }
    .product {
        grid-template-columns: 1fr;
        margin-top: 20px;
        gap: 25px
    }
    .formgrid {
        grid-template-columns: 1fr
    }
    .section {
        padding: 35px 5%
    }
    .section h1,
    .section h2 {
        font-size: 30px
    }
}
@media(max-width:430px) {
    .grid {
        grid-template-columns: 1fr
    }
    .trust {
        grid-template-columns: 1fr
    }
    .hero h1 {
        font-size: 34px
    }
}
.center {
    text-align: center
}
.lead {
    max-width: 680px;
    margin: 0 auto 25px;
    color: #6a6a60
}
.soft {
    background: #f8ecdb;
    border-radius: 26px;
    padding-left: 4%;
    padding-right: 4%
}
.outline {
    background: transparent !important;
    color: #4f1964 !important;
    border: 1px solid #4f1964
}
.story {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 45px;
    align-items: center
}
.story p {
    line-height: 1.8
}
.ritual {
    background: #4f1964;
    color: #fff;
    padding: 30px;
    border-radius: 20px
}
.ritual h3 {
    color: #e3bd69
}
.ritual p {
    padding: 9px 0;
    border-bottom: 1px solid #ffffff1f
}
.textlink {
    color: #9c7529;
    font-weight: 700
}
.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px
}
.three article {
    background: #fff;
    border: 1px solid #e9dfca;
    border-radius: 18px;
    padding: 28px
}
.three article>b {
    font-size: 30px;
    color: #b78b36
}
.faq {
    max-width: 900px;
    margin: auto
}
.faq details {
    background: #fff;
    border: 1px solid #e6ddca;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 10px 0
}
.faq summary {
    font-weight: 700;
    color: #4f1964;
    cursor: pointer
}
.cta {
    text-align: center;
    background: #4f1964;
    color: white;
    padding: 55px 20px;
    margin-top: 40px
}
.cta>span {
    font-size: 42px;
    color: #d6ad57
}
.cta h2 {
    font-size: 34px;
    margin: 8px
}
.goldbtn {
    background: #c49b4d !important;
    color: #fff !important
}
@media(max-width:760px) {
    .story,
    .three {
        grid-template-columns: 1fr
    }
    .soft {
        border-radius: 0
    }
    .cta h2 {
        font-size: 27px
    }
}
.product-card-premium {
    width: 100%;
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    border: 1px solid #e5d2bb;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(24, 53, 47, .07);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.product-card-premium:hover {
    transform: translateY(-7px);
    border-color: rgba(79, 25, 100, .5);
    box-shadow: 0 20px 45px rgba(24, 53, 47, .14);
}
.product-card-premium .product-image-wrap {
    width: 100%;
    height: 255px;
    min-height: 255px;
    position: relative;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(79, 25, 100, .08), transparent 45%),
        #f9f7f1;
}
.product-card-premium .product-image-wrap img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
    transition: transform .55s ease;
}
.product-card-premium:hover .product-image-wrap img {
    transform: scale(1.055);
}
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f1964;
    /*  */
    font-size: 58px;
}
.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}
.product-badge,
.sale-badge {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .55px;
    text-transform: uppercase;
}
.product-badge {
    background: rgba(6, 72, 61, .94);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .10);
    backdrop-filter: blur(7px);
}
.sale-badge {
    margin-left: auto !important;
    background: linear-gradient(135deg, #d6a93d, #ad7715);
    box-shadow: 0 5px 15px rgba(79, 25, 100, .22);
}
.product-card-premium .product-card-body {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 18px;
    background: #fff;
}
.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-bottom: 9px;
}
.product-type {
    color: #927d53;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .65px;
    text-transform: uppercase;
}
.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
}
.stock-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentColor;
}
.product-stock.in-stock {
    color: #27815c;
}
.product-stock.out-stock {
    color: #b33a3a;
}
.product-card-premium .product-title {
    min-height: 50px;
    margin: 0 !important;
    padding: 0 !important;
    color: #4f1964;
    /*  */
    font-size: 19px !important;
    line-height: 1.35 !important;
    font-weight: 600;
}
.product-card-premium .product-title a {
    color: #4f1964 !important;
    text-decoration: none !important;
}
.product-card-premium .product-title a:hover {
    color: #68277f !important;
}
.product-gold-line {
    width: 35px;
    height: 2px;
    flex: 0 0 2px;
    margin: 14px 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f1964, rgba(79, 25, 100, .15));
    transition: width .35s ease;
}
.product-card-premium:hover .product-gold-line {
    width: 58px;
}
.product-card-premium .product-price {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}
.current-price {
    color: #4f1964;
    /*  */
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}
.product-price del {
    color: #9a9f9c;
    font-size: 10px;
    line-height: 1;
}
.product-view-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 9px 13px;
    border-radius: 9px;
    background: linear-gradient(135deg, #4f1964, #68277f);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(6, 72, 61, .15);
    transition: transform .25s ease, box-shadow .25s ease;
}
.product-view-btn span {
    font-size: 14px;
    transition: transform .25s ease;
}
.product-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(6, 72, 61, .21);
}
.product-view-btn:hover span {
    transform: translateX(3px);
}
.grid:has(.product-card-premium) {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch;
    overflow: visible !important;
}
.grid:has(.product-card-premium) .product-card-premium {
    width: 100% !important;
    max-width: 100% !important;
}
@media(max-width:1050px) {
    .grid:has(.product-card-premium) {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
@media(max-width:800px) {
    .grid:has(.product-card-premium) {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .product-card-premium .product-image-wrap {
        height: 240px;
        min-height: 240px;
    }
}
@media(max-width:520px) {
    .grid:has(.product-card-premium) {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .product-card-premium .product-image-wrap {
        height: 280px;
        min-height: 280px;
    }
    .product-card-premium .product-title {
        min-height: auto;
    }
    .product-card-premium .product-price {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .product-view-btn {
        width: 100%;
    }
}
html {
    scroll-behavior: smooth;
}
body {
    animation: pageFadeIn 0.55s ease-out both;
}
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
a,
button,
input,
select,
textarea,
.card,
.category-card,
.btn,
table,
tr,
td,
th,
img {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        opacity 0.28s ease;
}
button,
.btn,
input[type="submit"],
input[type="button"] {
    position: relative;
    overflow: hidden;
}
button:hover,
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    transform: translateY(-2px);
}
button:active,
.btn:active,
input[type="submit"]:active,
input[type="button"]:active {
    transform: translateY(0) scale(0.98);
}
.btn::before,
button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}
.btn:hover::before,
button:hover::before {
    left: 140%;
}
.card,
.product-card,
.category-card {
    transform: translateY(0);
}
.card:hover,
.product-card:hover,
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}
.card img,
.product-card img,
.category-card img {
    transition: transform 0.45s ease;
}
.card:hover img,
.product-card:hover img,
.category-card:hover img {
    transform: scale(1.035);
}
a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
a:hover {
    opacity: 0.92;
}
input,
select,
textarea {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(79, 25, 100, 0.10);
}
details {
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
details[open] {
    animation: detailsOpen 0.35s ease;
}
@keyframes detailsOpen {
    from {
        opacity: 0.6;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
table tbody tr {
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}
table tbody tr:hover {
    transform: translateX(2px);
}
.badge,
.status,
.pill {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.badge:hover,
.status:hover,
.pill:hover {
    transform: scale(1.04);
}
.modal,
.popup,
.dialog {
    animation: modalEnter 0.35s ease both;
}
@keyframes modalEnter {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
header,
.float-animation {
    animation: smoothFloat 4s ease-in-out infinite;
}
@keyframes smoothFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.pulse-animation {
    animation: softPulse 2.2s ease-in-out infinite;
}
@keyframes softPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.035);
        opacity: 0.92;
    }
}
.fade-up {
    animation: fadeUp 0.65s ease both;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-left {
    animation: fadeLeft 0.65s ease both;
}
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-22px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fade-right {
    animation: fadeRight 0.65s ease both;
}
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(22px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.zoom-in {
    animation: zoomIn 0.55s ease both;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.delay-1 {
    animation-delay: 0.08s;
}
.delay-2 {
    animation-delay: 0.16s;
}
.delay-3 {
    animation-delay: 0.24s;
}
.delay-4 {
    animation-delay: 0.32s;
}
.delay-5 {
    animation-delay: 0.40s;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
@media (max-width: 768px) {
    body {
        min-width: 0;
    }
    .section,
    .product,
    .premium-product-page {
        width: 100%;
        max-width: 100%;
    }
    input,
    select,
    textarea,
    button {
        max-width: 100%;
    }
    table {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    input,
    select,
    textarea {
        font-size: 16px;
    }
    .btn,
    button,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
    }
}
/* ===== MOBILE RELIABILITY FIXES ===== */
html,
body {
    width: 100%;
    max-width: 100%;
}
img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .section {
        width: 100%;
        max-width: 100%;
        padding: 32px 16px;
    }
    .narrow {
        width: 100%;
        max-width: 100%;
    }
    .facts,
    .summary,
    .upi,
    .contactbox {
        padding: 16px;
        margin: 14px 0;
    }
    .formgrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .formgrid textarea {
        grid-column: auto;
    }
    input,
    select,
    textarea,
    button {
        max-width: 100%;
    }
    .summary p {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }
    .summary p span,
    .summary p>b:last-child {
        float: none !important;
        flex: 0 0 auto;
        text-align: right;
    }
    .cartrow {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cartrow>* {
        min-width: 0;
    }
    .total {
        gap: 16px;
        flex-wrap: wrap;
    }
    .search {
        width: 100%;
        max-width: none;
        flex-wrap: wrap;
    }
    .search input {
        min-width: 0;
        flex: 1 1 180px;
    }
    .search button {
        min-height: 44px;
    }
    table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .modal {
        padding: 12px;
    }
    .modal-card {
        width: min(100%, 460px);
        max-height: 90dvh;
        overflow-y: auto;
        padding: 20px 16px;
        border-radius: 16px;
    }
    .modal-card img {
        max-width: min(260px, 75vw);
    }
    .copyrow {
        width: 100%;
    }
    .copyrow input {
        min-width: 0;
    }
    .success {
        padding: 60px 16px;
    }
    .success .facts {
        width: 100%;
        max-width: 680px;
    }
}
@media (max-width: 480px) {
    .section {
        padding: 26px 14px;
    }
    .section h1,
    .section h2 {
        font-size: 28px;
        line-height: 1.15;
    }
    .facts,
    .summary,
    .upi,
    .contactbox {
        padding: 14px;
        border-radius: 14px;
    }
    input,
    select,
    textarea {
        font-size: 16px;
    }
    .btn,
    button,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
    }
    .copyrow {
        flex-direction: column;
    }
    .copyrow .smallbtn {
        width: 100%;
    }
    .pay .btn {
        width: 100%;
        text-align: center;
    }
    .om {
        font-size: 64px;
    }
}