/* ===============================
   OpenDukan Store UI
=============================== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: white;
}



.odstore-header {
    position: relative;
}
.back-btn{
        background: #c6f44f;
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    text-decoration: none;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 50px;
    color: #000000cf;
    font-weight: 600;
    text-transform: uppercase;
}
.back-btn svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:#000;
    stroke-width:2.5;
    transition:0.3s ease;
}

.odstore-cover {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.odstore-overlay {
    position: absolute;
    bottom: -40px;
    left: 20px;
    right: 20px;
    background: #111827;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.odstore-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.odstore-name {
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.odstore-meta {
    font-size: 13px;
    color: #94a3b8;
}

/* SEARCH */

.odsearch {
    margin-top: 60px;
    padding: 15px;
}

.odsearch input {
    width: 93%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #1f2937;
    color: white;
}

/* CATEGORY */

.odcategory {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 10px 15px;
}

.odchip {
    color: white;
    padding: 8px 14px;
    background: #1f2937;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
}

.odchip.active {
    background: #C6F44F;
    color: #000;
    font-weight: 700;
}

/* GRID */

.odgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
}

/* CARD */

.odcard {
    background: #111827;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

.odcard:hover {
    transform: translateY(-5px);
}

/* IMAGE */

.odcard img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* BADGE */

.odbadge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #C6F44F;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* BODY */

.odbody {
    padding: 12px;
}

.odtitle {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.odprice {
    color: #C6F44F;
    font-weight: 700;
}

/* ACTIONS */

.odactions {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
}
  
.odbtn {
    border: none;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
}
.odbtn img {
    width: 18px;
    height: 18px;
}
.odcart {
    background: #C6F44F;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.odwa {
    background: #4CAF50;
    color: white;
    min-width: 42px;
    max-width: 42px;
    height: 34px;
}
.odwa img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(183deg) brightness(102%) contrast(103%);
}
.odshare {
    background: transparent;
    color: white;
    min-width: 42px;
    max-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0 !important;
    font-size: 9px;
    font-weight: 300 !important;
}
.odshare img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(183deg) brightness(102%) contrast(103%);
}
.odcart-header{
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1;
}
.odcart-main{
    border: 0px solid #ffffff2e;
    background: #1f2937;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.odcart-main img {
    width: 22px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(183deg) brightness(102%) contrast(103%);
}
.odcart-main span{
    position: absolute;
    top: -6px;
    right: -6px;
    background: #22c55e;
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
}
/* FLOATING BAR */

.odbottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111827;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.odbottom button {
    background: #C6F44F;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
}

/* MOBILE */

@media(min-width:768px) {
    .odgrid {
        grid-template-columns: repeat(4, 1fr);
    }

    .odsearch input {
        width: 98%;
    }
}


.odlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* CARD */

.odlist-card {
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    transition: 0.3s;
}

.odlist-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */

.odlist-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* TITLE */

.odlist-title {
    color: white;
    font-weight: 700;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

/* CATEGORY */

.odlist-cat {
    font-size: 12px;
    color: #94a3b8;
    margin: 5px 0;
}

/* PRICE */

.odlist-price {
    font-weight: 700;
    color: #C6F44F;
}

.odlist-old {
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 6px;
}

.odlist-discount {
    background: #22c55e;
    color: #000;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 8px;
}

/* VARIANTS */

.odvariant-label {
    margin-top: 10px;
    font-size: 13px;
}

/* COLORS */

.odcolors {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.odcolor {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.odcolor.active {
    border: 2px solid #C6F44F;
}

/* SIZES */

.odsizes {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.odsize {
    padding: 6px 10px;
    border-radius: 10px;
    background: #1f2937;
    cursor: pointer;
    font-size: 12px;
}

.odsize.active {
    background: #C6F44F;
    color: #000;
    font-weight: 700;
}

/* ERROR */

.oderror {
    color: #f87171;
    font-size: 12px;
    margin-top: 5px;
}

/* ACTIONS */

.odactions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.odbtn {
    flex: 1;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}


.odpd-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    margin-top: 50px
}

/* Layout */

.odpd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Image */

.odpd-img {
    position: relative;
}

.odpd-img img {
    width: 100%;
    border-radius: 16px;
}

.odpd-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #C6F44F;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
}

/* Info */

.odpd-title {
    font-size: 24px;
    font-weight: 700;
}

.odpd-price {
    margin-top: 10px;
    font-size: 20px;
    color: #C6F44F;
    font-weight: 700;
}

.odpd-old {
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 10px;
}

/* Variant */

.odpd-variants {
    margin-top: 20px;
}

.odpd-variant-btn {
    padding: 8px 14px;
    background: #1f2937;
    border-radius: 20px;
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
}

.odpd-variant-btn.active {
    background: #C6F44F;
    color: #000;
}

/* Actions */

.odpd-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.odpd-btn {
    padding: 12px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    flex: 1;
    font-weight: 700;
}

.odpd-cart {
    background: #C6F44F;
    color: #000;
}

.odpd-wa {
    background: #25D366;
    color: #fff;
}

.odpd-share {
    background: #1f2937;
    color: #fff;
}

/* Description */

.odpd-desc {
    margin-top: 30px;
    color: #94a3b8;
}

/* Related */

.odpd-related {
    margin-top: 40px;
}

.odpd-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.odpd-card {
    background: #1f2937;
    padding: 10px;
    border-radius: 12px;
}

.odpd-card img {
    width: 100%;
    border-radius: 10px;
}

@media(max-width:768px) {
    .odpd-grid {
        grid-template-columns: 1fr;
    }
    
}

.odrev-section {
    margin-top: 40px;
}

.odrev-form input,
.odrev-form textarea {
    width: 98%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    background: #1f2937;
    color: #fff;
}

@media(max-width:768px) {
.odrev-form input,
    .odrev-form textarea {
        width: 94%;
    }
}

.odrev-stars{
    margin-bottom: 15px;
}
.odrev-stars span {
    font-size: 22px;
    cursor: pointer;
    color: #555;
}

.odrev-stars span.active {
    color: #FFD700;
}

.odrev-btn {
    background: #C6F44F;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

/* Review List */

.odrev-item {
    background: #1f2937;
    padding: 12px;
    border-radius: 12px;
    margin-top: 10px;
}

.odrev-name {
    font-weight: 700;
}

.odrev-rating {
    color: #FFD700;
    font-size: 14px;
}

.odrev-text {
    color: #94a3b8;
    margin-top: 5px;
}

.odrev-list {
    margin-top: 15px;
}

/* Review Card */
.odrev-item {
    background: #1f2937;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.odrev-item:hover {
    border-color: #C6F44F;
}

/* Top Row */
.odrev-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.odrev-name {
    font-weight: 700;
    font-size: 14px;
}

/* Rating */
.odrev-rating {
    color: #FFD700;
    font-size: 14px;
}

/* Text */
.odrev-text {
    color: #94a3b8;
    font-size: 13px;
}

/* Empty State */
.odrev-empty {
    background: #111827;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #94a3b8;
}

.odrev-badge {
    background: #C6F44F;
    color: #000;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 6px;
}

.odrev-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.odrev-avg {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
}

.odrev-count {
    color: #94a3b8;
    font-size: 14px;
}

.odrev-date {
    font-size: 11px;
    color: #64748b;
}

/* Gallery Wrapper */
.odpd-gallery {
    width: 100%;
    overflow: auto;
}

/* Main Image */
.odpd-main-img {
    position: relative;
}

.odpd-main-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

/* Badge */
.odpd-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #C6F44F;
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
}

/* Thumbnails */
.odpd-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
}
.odpd-thumbs::-webkit-scrollbar{
    height: 0;
}
.odcategory::-webkit-scrollbar{
    height: 0;
}

.odpd-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.7;
    border: 2px solid transparent;
    transition: 0.3s;
}

.odpd-thumb:hover {
    opacity: 1;
    border-color: #C6F44F;
}

.odpd-thumb.active {
    border-color: #C6F44F;
    opacity: 1;
}


.od-variant-btn {
    background: #1c2a3a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-right: 10px;
}

.od-variant-btn.active {
    background: #C6F44F;
    color: #000;
}

.od-variant-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}


.od-cart-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #000;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    width: 280px;
    z-index: 999;
}

.od-cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.od-btn-light {
    background: #f1f1f1;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
}

.od-btn-dark {
    background: #111;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
}

.od-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 375px;
    height: 100%;
    background: #0f1b2b;
    color: #fff;
    transition: 0.3s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.od-cart-sidebar.active {
    right: 0;
}

.od-cart-header {
    display: flex;
    justify-content: space-between;
    padding: 0px 15px;
    border-bottom: 1px solid #222;
}

.od-cart-header span {
    cursor: pointer;
    margin-top:15px;
}

.od-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.od-cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    background: #1c2a3a;
    padding: 10px;
    border-radius: 10px;
}

.od-cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.od-cart-footer {
    padding: 15px;
    border-top: 1px solid #222;
}

/* .od-btn-checkout {
    width: 100%;
    background: #C6F44F;
    padding: 12px;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
} */

.od-btn-continue {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 10px;
    border: none;
    border-radius: 10px;
}

/* Cart Item */
.od-cart-item {
    display: flex;
    gap: 12px;
    background: #1c2a3a;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    align-items: center;
}

/* Image */
.od-cart-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

/* Info */
.od-cart-info {
    flex: 1;
}

.od-cart-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.od-cart-price {
    color: #C6F44F;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Actions Row */
.od-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Quantity Box */
.od-qty-box {
    display: flex;
    align-items: center;
    background: #0f1b2b;
    border-radius: 8px;
    overflow: hidden;
}

.od-qty-box button {
    background: #1f2d3d;
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
}

.od-qty-box span {
    padding: 0 10px;
    font-size: 14px;
}

/* Remove Button */
.od-remove-btn {
    background: transparent;
    border: none;
    color: #ff4d4d;
    font-size: 13px;
    cursor: pointer;
}

/* Footer Fix */
.od-cart-footer h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Checkout Button */
.od-btn-checkout {
    width: 100%;
    background: #C6F44F;
    color: #000014;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

/* Continue Button */
.od-btn-continue {
    width: 100%;
    background: #e5e5e5;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
}

.od-cart-item:hover {
    background: #243447;
}

.od-qty-box button:active {
    transform: scale(0.9);
}

.od-cart-summary {
    background: #0f1b2b;
    padding: 15px;
    border-top: 1px solid #222;
}

.od-coupon p {
    margin-bottom: 8px;
    color: #ccc;
}

.od-coupon-box {
    display: flex;
    gap: 10px;
}

.od-coupon-box input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #1c2a3a;
    color: #fff;
}

.od-coupon-box button {
    background: #a855f7;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}

.od-summary-row,
.od-summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.od-summary-total {
    font-weight: 700;
    font-size: 16px;
}


.od-checkout-sidebar {
    overflow: auto;
    position: fixed;
    top: 0;
    right: -400px;
    width: 375px;
    height: 100%;
    background: #0f1b2b;
    color: #fff;
    transition: 0.3s;
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.od-checkout-sidebar.active {
    right: 0;
}

.od-checkout-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.od-checkout-body input,
.od-checkout-body textarea {
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #1c2a3a;
    color: #fff;
}

.od-payment {
    margin-top: 10px;
}


.od-checkout{
    padding:15px;
    color:#fff;
}

.od-checkout input,
.od-checkout textarea{
    width:93%;
    padding:10px;
    margin-bottom:10px;
    border-radius:10px;
    border:none;
    background:#1c2a3a;
    color:#fff;
}

.od-summary-box{
    background:#1c2a3a;
    padding:12px;
    border-radius:10px;
    margin:15px 0;
}

.row{
    display:flex;
    justify-content:space-between;
    margin:5px 0;
}

.total{
    font-weight:700;
}

.od-payment-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.od-pay{
    padding:12px;
    border-radius:10px;
    background:#1c2a3a;
    cursor:pointer;
}

.od-pay.active{
    background:#c6f44f;
    color:#000;
    font-weight:600;
}

.od-btn-main{
    width:100%;
    margin-top:15px;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#c6f44f;
    font-weight:600;
    margin-bottom: 10px;
    cursor: pointer;
}

.upi-box, .bank-box{
    background:#1c2a3a;
    padding:15px;
    border-radius:12px;
    margin-top:10px;
}

.note{
    font-size:12px;
    opacity:0.7;
}

.upi-box{
    background:#1c2a3a;
    padding:15px;
    border-radius:12px;
    text-align:center;
}

.upi-qr{
    width:160px;
    border-radius:12px;
    margin:10px 0;
}

.copy-btn{
    background:#334155;
    border:none;
    padding:8px 12px;
    border-radius:8px;
    margin:8px 0;
    color:#fff;
    cursor:pointer;
}

.upi-pay-btn{
    display:block;
    background:#22c55e;
    padding:12px;
    border-radius:10px;
    color:#000;
    font-weight:600;
    margin-top:10px;
    text-decoration:none;
}

.amount{
    font-weight:600;
    margin-top:10px;
}

.note{
    font-size:12px;
    opacity:0.7;
    margin-top:8px;
}

.save-btn{
    background:#0ea5e9;
    border:none;
    padding:10px 12px;
    border-radius:8px;
    color:#fff;
    margin-top:8px;
    cursor:pointer;
}
.qr-img{
    width:200px;
    height:200px;
    background: #ffff;
    padding: 9px;
    border-radius: 10px;
}

.location-btn{
    background: #334155;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
}

.error{
    color:#ff4d4f;
    font-size:12px;
    display:block;
    margin-top:4px;
}

.input-error{
    border:1px solid #ff4d4f !important;
}


.od-popup{
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    display:none;
    align-items:center;
    justify-content:center;
}

.od-popup-box{
    background:#0f1b2e;
    padding:20px;
    border-radius:12px;
    width:300px;
}

.od-popup-box input{
    width:100%;
    margin:10px 0;
    padding:10px;
    border-radius:8px;
    border:none;
}

/* Overlay */
.od-popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 25, 0.8);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Box */
.od-popup-box{
    width: 100%;
    max-width: 380px;
    background: #0f1b2e;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    animation: popupFade 0.3s ease;
}

/* Title */
.od-popup-box h3{
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

/* Inputs */
.od-popup-box input{
    width: 90%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #1f2d44;
    background: #16243a;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.od-popup-box input::placeholder{
    color: #8ca0b3;
}

/* Focus */
.od-popup-box input:focus{
    border-color: #c6ff3a;
    box-shadow: 0 0 0 2px rgba(198,255,58,0.2);
}

/* Button */
.od-popup-box button{
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #c6ff3a;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.od-popup-box button:hover{
    background: #b4f032;
}

/* Animation */
@keyframes popupFade{
    from{
        transform: translateY(20px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
.whatsapp-banner{
        position: fixed;
        right: 0;
    bottom: 0;
    background: #4caf50;
    color: #fff;
    padding: 12px 18px;
    z-index: 9999;
    width: unset;
    background: transparent;
    /* width: calc(100% - 36px); */
}
.whatsapp-banner .content{
    display: flex;
    align-items: center;
    gap: 12px;
}
.whatsapp-banner .content h3{
    width: 100%;
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    display: none;
}
.whatsapp-banner .content h3 img{
    width: 20px;
    margin-right: 8px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(183deg) brightness(102%) contrast(103%);
}
.whatsapp-banner .content .od-btn-main {
        margin: 0;
    padding: 0;
    width: unset;
    min-width: fit-content;
    padding: 8px 14px;
    background: #4caf50;
    box-shadow: 0px 2px 4px #00000069;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 50px;
}
.whatsapp-banner .content .od-btn-main img {
    width: 18px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(183deg) brightness(102%) contrast(103%);
}
@media (max-width: 768px) {
    .odcart span {
        display: none;
    } 
    .whatsapp-banner .content h3{
        display: flex;
    }
    .whatsapp-banner .content .od-btn-main {
    margin: 0;
    padding: 0;
    width: unset;
    min-width: fit-content;
    padding: 4px 10px;
    background: #fff;
    color: #000;
    box-shadow: 0px 2px 4px #00000069;
}
.whatsapp-banner{
        position: fixed;
    bottom: 0;
    background: #4caf50;
    color: #fff;
    padding: 12px 18px;
    z-index: 9999;
    width: calc(100% - 36px);
}
.whatsapp-banner .content .od-btn-main img {
    display: none;
}
}

.loader {
    width:18px;
    height:18px;
    border:2px solid #fff;
    border-top:2px solid transparent;
    border-radius:50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}
#loadMore{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.loader-card{
    width: 220px;
    height: 220px;
    /* backdrop-filter: blur(18px); */
    /* background: rgba(255, 255, 255, 0.08); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-radius: 25px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);*/
}

/* Bars */
.bars{
    display:flex;
    gap:10px;
}

.bars span{
    width:10px;
    height:60px;
    border-radius:20px;
    background:white;
    animation:wave 1s infinite ease-in-out;
}

.bars span:nth-child(1){
    animation-delay:0s;
    background:#00e5ff;
}

.bars span:nth-child(2){
    animation-delay:0.1s;
    background:#00ff95;
}

.bars span:nth-child(3){
    animation-delay:0.2s;
    background:#ffe600;
}

.bars span:nth-child(4){
    animation-delay:0.3s;
    background:#ff00aa;
}

.bars span:nth-child(5){
    animation-delay:0.4s;
    background:#8b5cf6;
}

/* Text */
.text{
    margin-top:30px;
    color:white;
    font-size:18px;
    letter-spacing:4px;
    animation:blink 1.2s infinite;
}

/* Animations */
@keyframes wave{
    0%,100%{
        transform:scaleY(0.5);
        opacity:0.5;
    }
    50%{
        transform:scaleY(1.5);
        opacity:1;
    }
}

@keyframes blink{
    0%,100%{
        opacity:1;
    }
    50%{
        opacity:0.4;
    }
}