/* =========================================================
   DR PRODUCT SINGLE
========================================================= */
:root {
    --dr-primary: #000643;
    --dr-primary-light: #161B62;
    --dr-primary-dark: #00032E;

    --dr-gold: #AD861C;
    --dr-gold-light: #C8A94A;
    --dr-gold-dark: #8B6A12;

    --dr-bg: #F7F8FC;
    --dr-white: #FFFFFF;

    --dr-text: #111827;
    --dr-muted: #667085;
    --dr-border: #E5E7EB;
    --dr-border-light: #EEF0F4;

    --dr-success: #198754;
    --dr-danger: #DC3545;
}
.dr-product-page {
    --dr-primary: #000643;
    --dr-primary-light: #161B62;
    --dr-primary-dark: #00032E;

    --dr-gold: #AD861C;
    --dr-gold-light: #C8A94A;

    --dr-bg: #F7F8FC;
    --dr-white: #FFFFFF;

    --dr-text: #111827;
    --dr-muted: #667085;
    --dr-border: #E5E7EB;
    --dr-border-light: #EEF0F4;

    --dr-success: #198754;
    --dr-danger: #DC3545;

    --dr-shadow-sm: 0 2px 8px rgba(0, 6, 67, .06);
    --dr-shadow-md: 0 6px 20px rgba(0, 6, 67, .09);
    --dr-shadow-lg: 0 12px 35px rgba(0, 6, 67, .12);

    font-family: 'IRANSansFanum', sans-serif;
    color: var(--dr-text);
    background: var(--dr-bg);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.dr-product-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid var(--dr-border-light);
}

.dr-product-breadcrumb .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 13px;
}

.dr-product-breadcrumb .breadcrumb-item {
    color: var(--dr-muted);
}

.dr-product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #B7BCC7;
    padding-left: 8px;
    padding-right: 4px;
}

.dr-product-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--dr-muted);
    text-decoration: none;
    transition: .2s;
}

.dr-product-breadcrumb a:hover {
    color: var(--dr-primary);
}

.dr-product-breadcrumb .active {
    color: var(--dr-primary);
    font-weight: 600;
}


/* =========================================================
   MAIN
========================================================= */

.dr-product-main-section {
    padding: 28px 0 35px;
}


/* =========================================================
   GALLERY
========================================================= */

.dr-product-gallery {
    position: sticky;
    top: 20px;
}

.dr-product-image-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    background: #fff;
    border: 1px solid var(--dr-border-light);
    border-radius: 18px;
    box-shadow: var(--dr-shadow-sm);
}

.dr-product-main-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.dr-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .2s ease, transform .3s ease;
}

.dr-product-image-card:hover .dr-product-main-image img {
    transform: scale(1.025);
}


/* Badge */

.dr-product-badge {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 7px 12px;

    border-radius: 8px;

    background: var(--dr-primary);
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    box-shadow: var(--dr-shadow-sm);
}

.dr-product-badge i {
    font-size: 15px;
}

.dr-product-badge-sale {
    background: var(--dr-gold);
}


/* =========================================================
   THUMBNAILS
========================================================= */

.dr-product-thumbnails-wrap {
    position: relative;
    margin-top: 12px;
    padding: 0 4px;
}

.dr-product-thumbnails-swiper {
    width: 100%;
}

.dr-product-thumbnails-swiper .swiper-slide {
    width: 82px;
}

.dr-product-thumbnail {
    width: 82px;
    height: 82px;

    padding: 5px;

    border: 1px solid var(--dr-border);
    border-radius: 10px;

    background: #fff;

    cursor: pointer;

    transition: .2s;

    overflow: hidden;
}

.dr-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dr-product-thumbnail:hover {
    border-color: #B9BECC;
}

.dr-product-thumbnail.active {
    border-color: var(--dr-primary);
    box-shadow: 0 0 0 2px rgba(0, 6, 67, .08);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.dr-product-info-card {
    background: #fff;
    border: 1px solid var(--dr-border-light);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--dr-shadow-sm);
}

.dr-product-brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--dr-gold);
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    margin-bottom: 10px;
}

.dr-product-brand:hover {
    color: var(--dr-gold-dark);
}

.dr-product-title {
    margin: 0;
    color: var(--dr-primary);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.65;
}

.dr-product-subtitle {
    margin-top: 7px;
    color: var(--dr-muted);
    font-size: 14px;
    line-height: 1.9;
}

.dr-product-meta {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 13px;

    color: var(--dr-muted);
    font-size: 12px;
}

.dr-product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dr-product-meta i {
    font-size: 16px;
}

.dr-product-meta strong {
    color: var(--dr-text);
    font-weight: 700;
}

.dr-product-divider {
    height: 1px;
    background: var(--dr-border-light);
    margin: 20px 0;
}


/* =========================================================
   PRICE
========================================================= */

.dr-product-price-box {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 18px;
}

.dr-product-price {
    color: var(--dr-primary);
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.5px;
}

.dr-product-price small {
    font-size: 13px;
    font-weight: 500;
    margin-right: 3px;
}

.dr-product-price-old {
    width: 100%;
    color: #98A2B3;
    font-size: 13px;
    text-decoration: line-through;
}

.dr-product-price-old span {
    font-size: 10px;
}

.dr-discount-percent {
    display: inline-flex;
    align-items: center;

    height: 27px;
    padding: 0 9px;

    background: #F8F1DE;
    color: var(--dr-gold);

    border-radius: 6px;

    font-size: 12px;
    font-weight: 800;
}

.dr-price-unavailable {
    color: var(--dr-primary);
    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dr-product-short-description {
    color: #4B5563;
    font-size: 14px;
    line-height: 2.15;
    margin-bottom: 18px;
}

.dr-product-short-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   COUNTDOWN
========================================================= */

.dr-sale-countdown {
    margin: 18px 0;
    padding: 13px 15px;

    background: #FAF8F1;
    border: 1px solid #EEE5C9;
    border-radius: 11px;
}

.dr-countdown-title {
    display: flex;
    align-items: center;
    gap: 7px;

    color: var(--dr-gold);
    font-size: 12px;
    font-weight: 700;

    margin-bottom: 10px;
}

.dr-countdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    background: #F4EACD;
    border-radius: 7px;
}

.dr-countdown-items {
    display: flex;
    gap: 8px;
}

.dr-countdown-item {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 55px;

    background: #fff;
    border: 1px solid #EEE5D1;
    border-radius: 8px;
}

.dr-countdown-item strong {
    color: var(--dr-primary);
    font-size: 18px;
    line-height: 1;
}

.dr-countdown-item span {
    margin-top: 5px;
    color: var(--dr-muted);
    font-size: 10px;
}


/* =========================================================
   STOCK
========================================================= */

.dr-product-stock {
    margin: 15px 0;
}

.dr-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 11px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;
}

.dr-stock.available {
    color: var(--dr-success);
    background: rgba(25, 135, 84, .08);
}

.dr-stock.unavailable {
    color: var(--dr-danger);
    background: rgba(220, 53, 69, .07);
}

.dr-stock i {
    font-size: 16px;
}


/* =========================================================
   CART
========================================================= */

.dr-add-cart-box {
    margin-top: 18px;
}

.dr-cart-action-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.dr-quantity {
    display: flex;
    align-items: center;

    height: 52px;

    border: 1px solid var(--dr-border);
    border-radius: 10px;

    background: #fff;

    overflow: hidden;
}

.dr-quantity-btn {
    width: 43px;
    height: 100%;

    border: 0;
    background: transparent;

    color: var(--dr-primary);

    cursor: pointer;

    transition: .2s;
}

.dr-quantity-btn:hover {
    background: #F4F5F9;
}

.dr-quantity-btn:disabled {
    color: #C7CBD4;
    cursor: not-allowed;
}

.addtocart-number-input {
    width: 45px;
    height: 100%;

    padding: 0;

    border: 0;
    outline: 0;

    text-align: center;

    color: var(--dr-primary);
    background: transparent;

    font-size: 16px;
    font-weight: 800;
}

.addtocart-number-input::-webkit-outer-spin-button,
.addtocart-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.addtocart-number-input {
    -moz-appearance: textfield;
}

.dr-add-cart-button {
    flex: 1;

    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 0;
    border-radius: 10px;

    background: var(--dr-primary);
    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s;
}

.dr-add-cart-button:hover {
    background: var(--dr-primary-light);
    transform: translateY(-1px);
}

.dr-add-cart-button:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.dr-add-cart-button i {
    font-size: 20px;
}

.dr-cart-submit-state {
    min-height: 30px;
    position: relative;
}

.dr-cart-loader {
    display: none;
    margin: 10px auto;
}

.dr-cart-message {
    display: none;
    text-align: center;
    color: var(--dr-success);
    font-size: 12px;
    font-weight: 600;
    padding-top: 8px;
}

.dr-no-stock-check {
    margin-top: 18px;
    padding: 11px 13px;

    background: #F7F8FA;
    border: 1px solid var(--dr-border-light);
    border-radius: 9px;

    color: var(--dr-muted);
    font-size: 12px;
}


/* =========================================================
   LOADER
========================================================= */

.dr-cart-loader {
    width: 22px;
    height: 22px;

    border: 2px solid #D8DCE5;
    border-top-color: var(--dr-primary);
    border-radius: 50%;

    animation: drSpin .7s linear infinite;
}

@keyframes drSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   OUT OF STOCK
========================================================= */

.dr-out-stock-box {
    margin-top: 18px;
}

.dr-out-stock-alert {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 13px;

    background: #FFF7F7;
    border: 1px solid #F5D9DC;
    border-radius: 10px;
}

.dr-out-stock-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: #FDEBED;
    color: var(--dr-danger);

    border-radius: 8px;
}

.dr-out-stock-alert strong {
    display: block;
    color: #7F1D1D;
    font-size: 13px;
}

.dr-out-stock-alert small {
    display: block;
    margin-top: 3px;
    color: #9B555A;
    font-size: 11px;
}

.dr-reminder-button {
    width: 100%;
    height: 46px;

    margin-top: 9px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 1px solid var(--dr-primary);
    border-radius: 9px;

    background: #fff;
    color: var(--dr-primary);

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    transition: .2s;
}

.dr-reminder-button:hover {
    background: var(--dr-primary);
    color: #fff;
}


/* =========================================================
   TAXONOMY
========================================================= */

.dr-product-taxonomy {
    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid var(--dr-border-light);
}

.dr-taxonomy-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 10px;
}

.dr-taxonomy-item:last-child {
    margin-bottom: 0;
}

.dr-taxonomy-label {
    min-width: 82px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--dr-muted);
    font-size: 12px;
    font-weight: 600;
}

.dr-taxonomy-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.dr-taxonomy-links a {
    display: inline-flex;
    padding: 4px 8px;

    border-radius: 5px;

    background: #F5F6F9;
    color: var(--dr-text);

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    transition: .2s;
}

.dr-taxonomy-links a:hover {
    background: #ECEEF5;
    color: var(--dr-primary);
}


/* =========================================================
   ADMIN
========================================================= */

.dr-admin-edit {
    margin-top: 15px;
}

.dr-admin-edit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--dr-muted);
    text-decoration: none;

    font-size: 11px;
}

.dr-admin-edit a:hover {
    color: var(--dr-primary);
}


/* =========================================================
   CONTENT
========================================================= */

.dr-product-content-section {
    padding: 10px 0 45px;
}

.dr-info-card {
    margin-bottom: 18px;

    background: #fff;
    border: 1px solid var(--dr-border-light);
    border-radius: 16px;

    box-shadow: var(--dr-shadow-sm);

    overflow: hidden;
}

.dr-info-card-header {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 18px 21px;

    border-bottom: 1px solid var(--dr-border-light);
}

.dr-info-card-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #F1F2F8;
    color: var(--dr-primary);

    font-size: 20px;
}

.dr-info-card-header span {
    display: block;
    color: var(--dr-muted);
    font-size: 10px;
    margin-bottom: 2px;
}

.dr-info-card-header h2 {
    margin: 0;

    color: var(--dr-primary);

    font-size: 16px;
    font-weight: 800;
}

.dr-info-card-body {
    padding: 21px;
}


/* =========================================================
   HTML CONTENT
========================================================= */

/* =========================================================
   HTML CONTENT — PRODUCT DESCRIPTION
========================================================= */

.dr-html-content {
    color: #3F4653;
    font-size: 14px;
    line-height: 2.15;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */

.dr-html-content p {
    margin: 0 0 14px;
}

.dr-html-content p:last-child {
    margin-bottom: 0;
}

.dr-html-content strong {
    color: var(--dr-primary);
    font-weight: 800;
}

.dr-html-content b {
    color: var(--dr-primary);
    font-weight: 800;
}

.dr-html-content em,
.dr-html-content i {
    font-style: italic;
}

.dr-html-content u {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Headings داخل توضیحات */

.dr-html-content h2,
.dr-html-content h3,
.dr-html-content h4,
.dr-html-content h5,
.dr-html-content h6 {
    margin: 24px 0 12px;
    color: var(--dr-primary);
    line-height: 1.7;
    font-weight: 800;
}

.dr-html-content h2 {
    font-size: 20px;
}

.dr-html-content h3 {
    font-size: 18px;
}

.dr-html-content h4 {
    font-size: 16px;
}

.dr-html-content h5 {
    font-size: 15px;
}

.dr-html-content h6 {
    font-size: 14px;
}

/* ---------------------------------------------------------
   LINKS
--------------------------------------------------------- */

.dr-html-content a {
    color: var(--dr-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 6, 67, .18);
    transition:
        color .2s ease,
        border-color .2s ease;
}

.dr-html-content a:hover {
    color: var(--dr-gold);
    border-color: rgba(173, 134, 28, .35);
}

/* ---------------------------------------------------------
   IMAGES
--------------------------------------------------------- */

.dr-html-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 18px auto;
    border-radius: 12px;
}

.dr-html-content img:first-child {
    margin-top: 0;
}

.dr-html-content figure {
    margin: 20px 0;
    text-align: center;
}

.dr-html-content figure img {
    margin: 0 auto;
}

.dr-html-content figcaption {
    margin-top: 8px;
    color: var(--dr-muted);
    font-size: 11px;
    line-height: 1.8;
}

/* ---------------------------------------------------------
   LISTS
--------------------------------------------------------- */

.dr-html-content ul,
.dr-html-content ol {
    margin: 14px 0;
    padding-right: 24px;
}

.dr-html-content ul {
    list-style: disc;
}

.dr-html-content ol {
    list-style: decimal;
}

.dr-html-content li {
    margin-bottom: 7px;
    padding-right: 4px;
}

.dr-html-content li:last-child {
    margin-bottom: 0;
}

.dr-html-content ul ul,
.dr-html-content ol ol,
.dr-html-content ul ol,
.dr-html-content ol ul {
    margin-top: 7px;
    margin-bottom: 7px;
}

/* ---------------------------------------------------------
   BLOCKQUOTE
--------------------------------------------------------- */

.dr-html-content blockquote {
    margin: 18px 0;
    padding: 13px 17px;
    border-right: 3px solid var(--dr-gold);
    border-left: 0;
    border-radius: 8px;
    background: #FAF9F5;
    color: #4B5563;
    font-size: 13px;
}

/* ---------------------------------------------------------
   HORIZONTAL LINE
--------------------------------------------------------- */

.dr-html-content hr {
    height: 1px;
    margin: 24px 0;
    border: 0;
    background: var(--dr-border-light);
}

/* ---------------------------------------------------------
   TABLE WRAPPER
   اگر جدول مستقیماً داخل محتوا باشد
========================================================= */

.dr-html-content .table-responsive {
    width: 100%;
    margin: 18px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--dr-border-light);
    border-radius: 12px;
    background: #fff;
}

/* ---------------------------------------------------------
   TABLE
========================================================= */

.dr-html-content table {
    width: 100% !important;
    min-width: 620px;
    margin: 18px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--dr-border-light);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    color: var(--dr-text);
    font-size: 12px;
    line-height: 1.8;
}

/* اگر داخل wrapper بود margin دوباره اعمال نشود */

.dr-html-content .table-responsive table {
    margin: 0;
    border: 0;
    border-radius: 0;
}

/* ---------------------------------------------------------
   TABLE CELLS
========================================================= */

.dr-html-content table th,
.dr-html-content table td {
    padding: 12px 14px;
    border: 0;
    border-left: 1px solid var(--dr-border-light);
    border-bottom: 1px solid var(--dr-border-light);
    text-align: right;
    vertical-align: middle;
}

/* آخرین ستون */

.dr-html-content table th:last-child,
.dr-html-content table td:last-child {
    border-left: 0;
}

/* آخرین ردیف */

.dr-html-content table tbody tr:last-child td {
    border-bottom: 0;
}

/* ---------------------------------------------------------
   TABLE HEADER
========================================================= */

.dr-html-content table thead th {
    background: #F4F5F9;
    color: var(--dr-primary);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.dr-html-content table thead tr:first-child th:first-child {
    border-top-right-radius: 10px;
}

.dr-html-content table thead tr:first-child th:last-child {
    border-top-left-radius: 10px;
}

/* ---------------------------------------------------------
   TABLE BODY
========================================================= */

.dr-html-content table tbody tr {
    background: #fff;
    transition: background-color .18s ease;
}

.dr-html-content table tbody tr:nth-child(even) {
    background: #FCFCFD;
}

.dr-html-content table tbody tr:hover {
    background: #F8F9FC;
}

.dr-html-content table tbody td {
    color: #4B5563;
}

/* ---------------------------------------------------------
   TABLE STRONG / IMPORTANT CELLS
========================================================= */

.dr-html-content table td strong,
.dr-html-content table th strong {
    color: var(--dr-primary);
    font-weight: 800;
}

/* ---------------------------------------------------------
   TABLE CELL TYPES
========================================================= */

.dr-html-content table td:first-child,
.dr-html-content table th:first-child {
    font-weight: 700;
}

/* اعداد وسط‌چین در صورت کلاس */

.dr-html-content table .text-center {
    text-align: center !important;
}

.dr-html-content table .text-left {
    text-align: left !important;
}

/* ---------------------------------------------------------
   TABLE IMAGES
========================================================= */

.dr-html-content table img {
    max-width: 100px;
    max-height: 100px;
    margin: 0;
    border-radius: 7px;
}

/* ---------------------------------------------------------
   TABLE LINKS
========================================================= */

.dr-html-content table a {
    border-bottom: 0;
}

/* ---------------------------------------------------------
   TABLE FOOTER
========================================================= */

.dr-html-content table tfoot td,
.dr-html-content table tfoot th {
    background: #FAFAFB;
    color: var(--dr-primary);
    font-weight: 700;
}

/* ---------------------------------------------------------
   CODE
========================================================= */

.dr-html-content code {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 5px;
    background: #F1F2F6;
    color: var(--dr-primary);
    font-family: monospace;
    font-size: 12px;
    direction: ltr;
}

.dr-html-content pre {
    margin: 18px 0;
    padding: 15px;
    overflow-x: auto;
    border-radius: 10px;
    background: #F5F6F9;
    color: #25324B;
    font-size: 12px;
    line-height: 1.8;
    direction: ltr;
    text-align: left;
}

.dr-html-content pre code {
    display: block;
    padding: 0;
    background: transparent;
}

/* ---------------------------------------------------------
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .dr-html-content {
        font-size: 13px;
        line-height: 2.05;
    }

    .dr-html-content h2 {
        font-size: 18px;
    }

    .dr-html-content h3 {
        font-size: 16px;
    }

    .dr-html-content h4 {
        font-size: 14px;
    }

    .dr-html-content p {
        margin-bottom: 12px;
    }

    .dr-html-content ul,
    .dr-html-content ol {
        padding-right: 20px;
    }

    .dr-html-content li {
        margin-bottom: 6px;
    }

    .dr-html-content img {
        margin: 14px auto;
        border-radius: 10px;
    }

    /* جدول در موبایل */

    .dr-html-content table {
        min-width: 580px;
        font-size: 11px;
        line-height: 1.7;
    }

    .dr-html-content table th,
    .dr-html-content table td {
        padding: 10px 11px;
    }

    .dr-html-content .table-responsive {
        margin: 15px -2px;
        width: calc(100% + 4px);
        border-radius: 10px;
    }

    .dr-html-content .table-responsive::-webkit-scrollbar {
        height: 5px;
    }

    .dr-html-content .table-responsive::-webkit-scrollbar-track {
        background: #F1F2F5;
        border-radius: 10px;
    }

    .dr-html-content .table-responsive::-webkit-scrollbar-thumb {
        background: #C7CBD5;
        border-radius: 10px;
    }
}

/* ---------------------------------------------------------
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dr-html-content {
        font-size: 12.5px;
    }

    .dr-html-content table {
        min-width: 540px;
    }

    .dr-html-content table th,
    .dr-html-content table td {
        padding: 9px 10px;
    }

    .dr-html-content blockquote {
        padding: 11px 13px;
        font-size: 12px;
    }
}
/* =========================================================
   TABS
========================================================= */

.dr-product-tabs {
    padding: 18px 21px 21px;
}

.dr-product-nav {
    display: flex;
    gap: 7px;

    overflow-x: auto;
    flex-wrap: nowrap;

    padding-bottom: 5px;

    scrollbar-width: thin;
}

.dr-product-nav .nav-link {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 9px 13px;

    border-radius: 8px;

    background: #F5F6F9;
    color: #667085;

    border: 0;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    transition: .2s;
}

.dr-product-nav .nav-link:hover {
    color: var(--dr-primary);
    background: #EEF0F6;
}

.dr-product-nav .nav-link.active {
    background: var(--dr-primary);
    color: #fff;
}

.dr-product-tab-content {
    padding-top: 20px;
}

.dr-product-tab-content .tab-pane {
    color: #3F4653;
}


/* =========================================================
   TAGS
========================================================= */

.dr-product-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 25px;
    padding-top: 18px;

    border-top: 1px solid var(--dr-border-light);
}

.dr-product-tags strong {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--dr-text);
    font-size: 12px;
}

.dr-product-tags a {
    padding: 5px 9px;

    border-radius: 6px;

    background: #F3F4F7;
    color: var(--dr-muted);

    text-decoration: none;

    font-size: 11px;

    transition: .2s;
}

.dr-product-tags a:hover {
    background: #EDEEF4;
    color: var(--dr-primary);
}


/* =========================================================
   COMMENTS
========================================================= */

.dr-comment-list {
    display: flex;
    flex-direction: column;
}

.dr-comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--dr-border-light);
}

.dr-comment:first-child {
    padding-top: 0;
}

.dr-comment:last-child {
    border-bottom: 0;
}

.dr-comment-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dr-comment-avatar {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #F0F1F7;
    color: var(--dr-primary);
}

.dr-comment-user strong {
    display: block;
    color: var(--dr-text);
    font-size: 13px;
}

.dr-comment-user small {
    display: block;
    margin-top: 2px;
    color: var(--dr-muted);
    font-size: 10px;
}

.dr-comment-content {
    margin-top: 13px;

    color: #4B5563;

    font-size: 13px;
    line-height: 2;
}

.dr-comment-reply {
    margin-top: 15px;
    padding: 13px 15px;

    border-right: 3px solid var(--dr-gold);

    background: #FAF9F5;
    border-radius: 7px;

    color: #4B5563;

    font-size: 12px;
    line-height: 2;
}

.dr-reply-header {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 4px;

    color: var(--dr-gold);
}

.dr-reply-header strong {
    font-size: 11px;
}


/* No comments */

.dr-no-comments {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 30px 15px;

    color: var(--dr-muted);
}

.dr-no-comments > span {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    background: #F3F4F7;
    border-radius: 50%;

    color: var(--dr-primary);

    font-size: 22px;
}

.dr-no-comments strong {
    color: var(--dr-text);
    font-size: 13px;
}

.dr-no-comments small {
    margin-top: 4px;
    font-size: 11px;
}


/* Comment form */

.dr-comment-form {
    margin-top: 25px;
    padding: 20px;

    background: #F8F9FB;
    border: 1px solid var(--dr-border-light);
    border-radius: 12px;
}

.dr-comment-form-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;
}

.dr-comment-form-heading > span {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dr-primary);
    color: #fff;

    border-radius: 8px;
}

.dr-comment-form-heading h3 {
    margin: 0;
    color: var(--dr-primary);
    font-size: 14px;
    font-weight: 800;
}

.dr-comment-form-heading p {
    margin: 2px 0 0;
    color: var(--dr-muted);
    font-size: 10px;
}

.dr-comment-submit-form textarea {
    width: 100%;
    min-height: 125px;

    padding: 13px;

    border: 1px solid var(--dr-border);
    border-radius: 9px;

    background: #fff;

    color: var(--dr-text);

    font-family: inherit;
    font-size: 13px;

    outline: none;
    resize: vertical;

    transition: .2s;
}

.dr-comment-submit-form textarea:focus {
    border-color: var(--dr-primary);
    box-shadow: 0 0 0 3px rgba(0, 6, 67, .05);
}

.dr-comment-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: 13px;
}

.dr-comment-form-bottom button {
    height: 43px;

    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    border: 0;
    border-radius: 8px;

    background: var(--dr-primary);
    color: #fff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}

.dr-login-comment-alert {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px;

    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: 9px;
}

.dr-login-comment-alert > span {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F0F1F6;
    color: var(--dr-primary);

    border-radius: 8px;
}

.dr-login-comment-alert strong {
    display: block;
    color: var(--dr-text);
    font-size: 12px;
}

.dr-login-comment-alert div div {
    margin-top: 4px;
}

.dr-login-comment-alert a {
    color: var(--dr-primary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.dr-login-comment-alert div div span {
    margin: 0 5px;
    color: var(--dr-muted);
    font-size: 10px;
}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.dr-related-section {
    padding: 35px 0;
    background: #fff;
    border-top: 1px solid var(--dr-border-light);
}

.dr-related-section-alt {
    background: var(--dr-bg);
}

.dr-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 20px;
}

.dr-related-heading span {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 5px;

    color: var(--dr-gold);
    font-size: 11px;
    font-weight: 700;
}

.dr-related-heading h2 {
    margin: 0;
    color: var(--dr-primary);
    font-size: 20px;
    font-weight: 800;
}

.dr-related-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--dr-muted);
    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
}

.dr-related-heading > a:hover {
    color: var(--dr-primary);
}

.dr-related-slider-wrap {
    position: relative;
}

.dr-related-swiper {
    overflow: hidden;
}

.dr-related-swiper .swiper-slide {
    height: auto;
}

.dr-related-prev,
.dr-related-next {
    position: absolute;
    z-index: 10;
    top: 45%;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--dr-border);
    border-radius: 50%;

    background: #fff;
    color: var(--dr-primary);

    box-shadow: var(--dr-shadow-sm);

    cursor: pointer;
    transition: .2s;
}

.dr-related-prev {
    right: -18px;
}

.dr-related-next {
    left: -18px;
}

.dr-related-prev:hover,
.dr-related-next:hover {
    background: var(--dr-primary);
    color: #fff;
    border-color: var(--dr-primary);
}


/* =========================================================
   REMINDER MODAL
========================================================= */

.dr-reminder-modal .modal-dialog {
    max-width: 430px;
}

.dr-reminder-modal .modal-content {
    border: 0;
    border-radius: 17px;
    overflow: hidden;

    box-shadow: var(--dr-shadow-lg);
}

.dr-reminder-modal .modal-header {
    padding: 18px 20px;

    border-bottom: 1px solid var(--dr-border-light);
}

.dr-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dr-modal-title > span {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #F8F1DE;
    color: var(--dr-gold);

    font-size: 20px;
}

.dr-modal-title h5 {
    margin: 0;

    color: var(--dr-primary);

    font-size: 15px;
    font-weight: 800;
}

.dr-modal-title small {
    display: block;

    margin-top: 3px;

    color: var(--dr-muted);
    font-size: 10px;
}

.dr-reminder-modal .modal-body {
    padding: 20px;
}

.dr-reminder-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--dr-text);

    font-size: 12px;
    font-weight: 700;
}

.dr-input-icon {
    position: relative;
}

.dr-input-icon > i {
    position: absolute;
    z-index: 2;

    right: 12px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--dr-muted);
}

.dr-input-icon input {
    height: 46px;

    padding-right: 38px;

    border: 1px solid var(--dr-border);
    border-radius: 9px;

    font-family: inherit;
    font-size: 12px;
}

.dr-input-icon input:focus {
    border-color: var(--dr-primary);
    box-shadow: 0 0 0 3px rgba(0, 6, 67, .05);
}

.dr-reminder-field p {
    margin: 7px 0 0;

    color: var(--dr-muted);

    font-size: 10px;
    line-height: 1.8;
}

.dr-reminder-submit {
    width: 100%;
    height: 46px;

    margin-top: 17px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 0;
    border-radius: 9px;

    background: var(--dr-primary);
    color: #fff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .dr-product-main-image {
        height: 430px;
    }

    .dr-product-image-card {
        min-height: 430px;
    }

    .dr-product-title {
        font-size: 22px;
    }

    .dr-product-info-card {
        padding: 22px;
    }

}


@media (max-width: 991.98px) {

    .dr-product-gallery {
        position: static;
    }

    .dr-product-main-section {
        padding-top: 20px;
    }

    .dr-product-main-image {
        height: 450px;
    }

    .dr-product-image-card {
        min-height: 450px;
    }

    .dr-product-info-card {
        padding: 20px;
    }

    .dr-related-prev {
        right: -10px;
    }

    .dr-related-next {
        left: -10px;
    }

}


@media (max-width: 767.98px) {

    .dr-product-breadcrumb {
        padding: 12px 0;
    }

    .dr-product-breadcrumb .breadcrumb {
        font-size: 11px;
    }

    .dr-product-main-section {
        padding: 12px 0 25px;
    }

    .dr-product-main-image {
        height: 350px;
        padding: 20px;
    }

    .dr-product-image-card {
        min-height: 350px;
        border-radius: 13px;
    }

    .dr-product-badge {
        top: 12px;
        right: 12px;
        padding: 6px 9px;
        font-size: 10px;
    }

    .dr-product-thumbnails-swiper .swiper-slide,
    .dr-product-thumbnail {
        width: 68px;
    }

    .dr-product-thumbnail {
        height: 68px;
    }

    .dr-product-info-card {
        padding: 17px;
        border-radius: 13px;
    }

    .dr-product-title {
        font-size: 19px;
        line-height: 1.7;
    }

    .dr-product-price {
        font-size: 26px;
    }

    .dr-cart-action-row {
        gap: 7px;
    }

    .dr-quantity {
        height: 49px;
    }

    .dr-quantity-btn {
        width: 38px;
    }

    .addtocart-number-input {
        width: 38px;
    }

    .dr-add-cart-button {
        height: 49px;
        font-size: 12px;
    }

    .dr-add-cart-button i {
        font-size: 18px;
    }

    .dr-info-card {
        border-radius: 13px;
    }

    .dr-info-card-header {
        padding: 15px;
    }

    .dr-info-card-body {
        padding: 15px;
    }

    .dr-product-tabs {
        padding: 13px 15px 17px;
    }

    .dr-product-nav {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .dr-related-section {
        padding: 27px 0;
    }

    .dr-related-heading {
        align-items: flex-start;
    }

    .dr-related-heading h2 {
        font-size: 17px;
    }

    .dr-related-heading > a {
        white-space: nowrap;
    }

    .dr-related-prev,
    .dr-related-next {
        display: none;
    }

    .dr-comment-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .dr-comment-form-bottom button {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .dr-product-main-image {
        height: 310px;
    }

    .dr-product-image-card {
        min-height: 310px;
    }

    .dr-product-title {
        font-size: 18px;
    }

    .dr-product-subtitle {
        font-size: 12px;
    }

    .dr-cart-action-row {
        flex-direction: column;
    }

    .dr-quantity {
        width: 100%;
        justify-content: space-between;
    }

    .dr-quantity-btn {
        flex: 1;
    }

    .addtocart-number-input {
        flex: 1;
    }

    .dr-add-cart-button {
        width: 100%;
    }

    .dr-taxonomy-item {
        flex-direction: column;
        gap: 7px;
    }

    .dr-taxonomy-label {
        min-width: auto;
    }

    .dr-countdown-items {
        gap: 5px;
    }

}

/* =========================================================
   PRODUCT CARD — PREMIUM / MODERN
========================================================= */


/* =========================================================
   DR PRODUCT CARD
   Namespace: drpc-
========================================================= */

.drpc-card {
    position: relative;

    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e7e9ef;
    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 4px 16px rgba(16, 24, 40, .035);

    transition:
        transform .28s cubic-bezier(.22, 1, .36, 1),
        box-shadow .28s ease,
        border-color .28s ease;
}

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

    border-color: #d9dde7;

    box-shadow:
        0 18px 42px rgba(16, 24, 40, .085);
}


/* =========================================================
   MEDIA
========================================================= */

.drpc-media {
    position: relative;

    width: 100%;
    height: 270px;

    background: #ffffff;

    overflow: hidden;
}

.drpc-media-link {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
}

.drpc-image {
    width: 100%;
    height: 100%;

    display: block;

    padding: 18px 20px;

    object-fit: contain;

    background: #ffffff;

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1);
}

.drpc-card:hover .drpc-image {
    transform: scale(1.045);
}


/* subtle separator */
.drpc-media::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 0;

    height: 1px;

    background: #f0f1f4;

    pointer-events: none;
}


/* =========================================================
   BADGES
========================================================= */

.drpc-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 3;

    min-height: 30px;

    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    border-radius: 10px;

    font-size: 14px;
    line-height: 1;

    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(16, 24, 40, .07);
}

.drpc-badge i {
    font-size: 14px;
}

.drpc-badge-featured {
    background: #fff7dc;
    color: #9a6a00;
}

.drpc-badge-discount {
    background: #fff0ef;
    color: #d92d20;
}


/* =========================================================
   STOCK BADGE
========================================================= */

.drpc-stock-badge {
    position: absolute;

    left: 12px;
    top: 12px;

    z-index: 3;

    min-height: 30px;

    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    border-radius: 10px;

    background: rgba(255,255,255,.96);

    border: 1px solid #e9ebef;

    color: #667085;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(16, 24, 40, .055);
}

.drpc-stock-badge i {
    font-size: 14px;
}


/* =========================================================
   CONTENT
========================================================= */

.drpc-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 15px 16px 14px;
}


/* =========================================================
   BRAND
========================================================= */

.drpc-brand {
    width: fit-content;
    max-width: 100%;

    display: block;

    margin-bottom: 6px;

    color: #98a2b3;

    font-size: 12px;
    line-height: 1.6;

    font-weight: 600;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    text-decoration: none;

    transition: color .2s ease;
}

.drpc-brand:hover {
    color: #000643;
}


/* =========================================================
   TITLE
========================================================= */

.drpc-title {
    display: -webkit-box;

    min-height: 50px;

    overflow: hidden;

    color: #111827;

    font-size: 13px;
    line-height: 1.9;

    font-weight: 800;

    text-decoration: none;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.drpc-title:hover {
    color: #000643;
}


/* =========================================================
   PRICE
========================================================= */

.drpc-price-box {
    min-height: 55px;

    margin-top: 10px;
}

.drpc-old-price {
    display: flex;
    align-items: center;
    gap: 4px;

    margin-bottom: 3px;

    color: #98a2b3;

    font-size: 12px;
    line-height: 1.4;

    text-decoration: line-through;
}

.drpc-old-price span {
    font-size: 12px;
}

.drpc-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.drpc-price {
    color: #000643;

    font-size: 14px;
    line-height: 1.5;

    font-weight: 800;
}

.drpc-currency {
    color: #667085;

    font-size: 12px;
    font-weight: 600;
}

.drpc-contact-price {
    padding-top: 9px;

    color: #667085;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   FOOTER
========================================================= */

.drpc-footer {
    margin-top: auto;

    padding-top: 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    border-top: 1px solid #f0f1f4;
}


/* =========================================================
   STOCK
========================================================= */

.drpc-stock {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    font-size: 12px;
    line-height: 1.5;

    font-weight: 700;
}

.drpc-stock-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;
}

.drpc-stock-ok {
    color: #039855;
}

.drpc-stock-ok .drpc-stock-dot {
    background: #12b76a;

    box-shadow:
        0 0 0 3px rgba(18,183,106,.09);
}

.drpc-stock-off {
    color: #d92d20;
}

.drpc-stock-off .drpc-stock-dot {
    background: #f04438;
}


/* =========================================================
   MORE BUTTON
========================================================= */

.drpc-more {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f5f6fa;
    color: #000643;

    font-size: 16px;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.drpc-more:hover {
    background: #000643;
    color: #ffffff;

    transform: translateX(2px);
}


/* =========================================================
   TOP LINE ON HOVER
========================================================= */

.drpc-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 2px;

    z-index: 5;

    border-radius: 0 0 10px 10px;

    background: #000643;

    opacity: 0;

    transform: scaleX(.4);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.drpc-card:hover::before {
    opacity: 1;
    transform: scaleX(1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .drpc-media {
        height: 245px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .drpc-card {
        border-radius: 17px;
    }

    .drpc-media {
        height: 205px;
    }

    .drpc-image {
        padding: 12px 14px;
    }

    .drpc-content {
        padding: 12px 12px 13px;
    }

    .drpc-badge {
        top: 8px;
        right: 8px;

        min-height: 27px;

        padding: 0 8px;

        font-size: 12px;
    }

    .drpc-badge i {
        font-size: 12px;
    }

    .drpc-stock-badge {
        left: 8px;
        top: 8px;

        min-height: 27px;

        padding: 0 8px;

        font-size: 12px;
    }

    .drpc-stock-badge i {
        font-size: 12px;
    }

    .drpc-brand {
        font-size: 12px;
    }

    .drpc-title {
        min-height: 46px;

        font-size: 12px;
        line-height: 1.85;
    }

    .drpc-price-box {
        min-height: 51px;

        margin-top: 8px;
    }

    .drpc-old-price {
        font-size: 12px;
    }

    .drpc-old-price span {
        font-size: 12px;
    }

    .drpc-price {
        font-size: 13px;
    }

    .drpc-currency {
        font-size: 12px;
    }

    .drpc-contact-price {
        font-size: 12px;
    }

    .drpc-stock {
        font-size: 12px;
    }

    .drpc-more {
        width: 32px;
        height: 32px;
        flex-basis: 32px;

        font-size: 15px;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 380px) {

    .drpc-media {
        height: 180px;
    }

    .drpc-content {
        padding: 10px;
    }

    .drpc-title {
        min-height: 44px;
        font-size: 12px;
    }

    .drpc-price {
        font-size: 12px;
    }

}


/* ---------------------------------------------------------
   SWIPER
--------------------------------------------------------- */

.dr-related-swiper .swiper-slide {
    height: auto;
    display: flex;

    padding-top: 4px;
    padding-bottom: 7px;
}

.dr-related-swiper .swiper-slide .dr-product-card {
    width: 100%;
}


/* =========================================================
   MOBILE STICKY PRODUCT BAR — PREMIUM
========================================================= */

.dr-mobile-product-bar {
    display: none;
}

@media (max-width: 767.98px) {

    .dr-mobile-product-bar {
        position: fixed;
        z-index: 1055;
        right: 0;
        bottom: 0;
        left: 0;

        display: flex;
        align-items: center;
        gap: 9px;

        min-height: 76px;

        padding:
            9px
            max(12px, env(safe-area-inset-right))
            calc(9px + env(safe-area-inset-bottom))
            max(12px, env(safe-area-inset-left));

        background: rgba(255, 255, 255, .97);
        border-top: 1px solid rgba(224, 227, 235, .95);

        box-shadow:
            0 -4px 12px rgba(0, 6, 67, .035),
            0 -14px 35px rgba(0, 6, 67, .075);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        transform: translateZ(0);
    }

    .dr-mobile-product-bar::before {
        content: "";
        position: absolute;
        top: -1px;
        right: 42%;
        left: 42%;
        height: 2px;
        border-radius: 0 0 99px 99px;
        background: var(--dr-gold);
        opacity: .55;
    }

    /* Quantity */

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex: 0 0 96px;

        height: 50px;

        display: flex;
        align-items: center;

        overflow: hidden;

        background: #F7F8FC;
        border: 1px solid #E2E5EC;
        border-radius: 13px;

        box-shadow: inset 0 1px 1px rgba(255,255,255,.8);
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        flex: 0 0 30px;
        width: 30px;
        height: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        padding: 0;
        border: 0;
        background: transparent;

        color: var(--dr-primary);
        font-family: inherit;

        cursor: pointer;
        transition: background .18s ease;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button:active {
        background: #EDEFF5;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button i {
        font-size: 15px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity input {
        flex: 1;
        width: 34px;
        min-width: 0;
        height: 100%;

        padding: 0;
        border: 0;
        outline: 0;

        background: transparent;
        color: var(--dr-primary);

        text-align: center;

        font-family: inherit;
        font-size: 15px;
        font-weight: 900;
    }

    .dr-mobile-product-bar .dr-mobile-quantity input::-webkit-outer-spin-button,
    .dr-mobile-product-bar .dr-mobile-quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .dr-mobile-product-bar .dr-mobile-quantity input {
        -moz-appearance: textfield;
    }


    /* Add to cart */

    .dr-mobile-add-cart {
        flex: 1;
        position: relative;

        height: 50px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        padding: 0 15px;
        overflow: hidden;

        border: 0;
        border-radius: 13px;

        background:
            linear-gradient(
                135deg,
                var(--dr-primary) 0%,
                #10165B 55%,
                var(--dr-primary-light) 100%
            );

        color: #fff;

        font-family: inherit;
        font-size: 12px;
        font-weight: 800;

        box-shadow: 0 6px 14px rgba(0, 6, 67, .16);

        cursor: pointer;

        transition:
            transform .18s ease,
            box-shadow .18s ease,
            opacity .18s ease;
    }

    .dr-mobile-add-cart::before {
        content: "";

        position: absolute;
        top: 0;
        left: -80px;

        width: 55px;
        height: 100%;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.16),
            transparent
        );

        transform: skewX(-18deg);
        transition: left .55s ease;
    }

    .dr-mobile-add-cart:hover::before {
        left: calc(100% + 30px);
    }

    .dr-mobile-add-cart:active {
        transform: scale(.985);
        box-shadow: 0 4px 10px rgba(0, 6, 67, .13);
    }

    .dr-mobile-add-cart:disabled {
        opacity: .55;
        cursor: not-allowed;
        box-shadow: none;
    }

    .dr-mobile-add-cart i {
        flex: 0 0 auto;
        font-size: 20px;
    }

    .dr-mobile-add-cart span {
        white-space: nowrap;
    }


    /* Reminder */

    .dr-mobile-reminder {
        flex: 1;

        height: 50px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 0 14px;

        border: 1px solid rgba(0, 6, 67, .18);
        border-radius: 13px;

        background: linear-gradient(180deg, #FFFFFF, #FAFBFD);
        color: var(--dr-primary);

        font-family: inherit;
        font-size: 11px;
        font-weight: 800;

        box-shadow: 0 5px 13px rgba(0, 6, 67, .045);

        cursor: pointer;

        transition:
            background .18s ease,
            border-color .18s ease,
            transform .18s ease;
    }

    .dr-mobile-reminder:active {
        transform: scale(.985);
        background: #F8F9FC;
    }

    .dr-mobile-reminder i {
        flex: 0 0 auto;
        color: var(--dr-gold);
        font-size: 19px;
    }

    .dr-mobile-reminder span {
        white-space: nowrap;
    }

    /* Don't let content disappear behind the fixed bar */
    .dr-product-page {
        padding-bottom: 88px;
    }

    /* Desktop cart controls are replaced on mobile */
    .dr-product-info-card .dr-add-cart-box {
        display: none;
    }
}


@media (max-width: 480px) {

    .dr-mobile-product-bar {
        min-height: 70px;
        gap: 7px;

        padding:
            8px
            max(9px, env(safe-area-inset-right))
            calc(8px + env(safe-area-inset-bottom))
            max(9px, env(safe-area-inset-left));
    }

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex-basis: 86px;
        height: 47px;
        border-radius: 12px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        flex-basis: 27px;
        width: 27px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity input {
        width: 30px;
        font-size: 14px;
    }

    .dr-mobile-add-cart,
    .dr-mobile-reminder {
        height: 47px;
        border-radius: 12px;
        font-size: 10px;
    }

    .dr-mobile-add-cart {
        gap: 6px;
        padding: 0 10px;
    }

    .dr-mobile-add-cart i,
    .dr-mobile-reminder i {
        font-size: 17px;
    }

    .dr-product-page {
        padding-bottom: 82px;
    }
}


@media (max-width: 360px) {

    .dr-mobile-product-bar {
        gap: 5px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex-basis: 78px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        flex-basis: 24px;
        width: 24px;
    }

    .dr-mobile-add-cart,
    .dr-mobile-reminder {
        padding: 0 7px;
        font-size: 9px;
    }

    .dr-mobile-add-cart i,
    .dr-mobile-reminder i {
        font-size: 16px;
    }
}


@media (min-width: 768px) {

    .dr-mobile-product-bar {
        display: none !important;
    }
}

@media (max-width: 480px) {

    .dr-product-card-image {
        height: 174px;
        padding: 10px;
    }

    .dr-product-card-image::before {
        width: 100px;
        height: 100px;
    }

    .dr-card-badge {
        top: 8px;
        right: 8px;

        min-height: 24px;

        padding: 4px 7px;

        border-radius: 7px;

        font-size: 9px;
    }

    .dr-card-badge i {
        font-size: 10px;
    }

    .dr-card-brand {
        font-size: 8.5px;
    }

    .dr-card-title {
        min-height: 37px;
        font-size: 10px;
    }

    .dr-card-price {
        font-size: 14px;
    }

    .dr-card-price small {
        font-size: 8px;
    }

    .dr-card-stock span {
        padding: 4px 6px;
        font-size: 8px;
    }


    .dr-mobile-product-bar {
        min-height: 67px;
        gap: 6px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex-basis: 84px;
        height: 46px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        width: 27px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity input {
        width: 30px;
    }

    .dr-mobile-add-cart,
    .dr-mobile-reminder {
        height: 46px;
        border-radius: 11px;
        font-size: 10px;
    }
}


/* ---------------------------------------------------------
   DESKTOP ONLY
--------------------------------------------------------- */

@media (min-width: 768px) {

    .dr-mobile-product-bar {
        display: none !important;
    }
}
/* =========================================================
   MOBILE ADD TO CART — FINAL FIX
========================================================= */

@media (max-width: 767.98px) {

    .dr-mobile-product-bar .dr-mobile-add-cart {
        position: relative !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        height: 50px !important;

        background: linear-gradient(
            135deg,
            #000643 0%,
            #10165B 55%,
            #161B62 100%
        ) !important;

        background-color: #000643 !important;

        color: #FFFFFF !important;

        border: 0 !important;
        outline: 0 !important;

        border-radius: 13px !important;

        font-family: 'IRANSansFanum', sans-serif !important;
        font-size: 12px !important;
        font-weight: 800 !important;

        box-shadow:
            0 6px 15px rgba(0, 6, 67, .18) !important;

        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart:hover,
    .dr-mobile-product-bar .dr-mobile-add-cart:focus,
    .dr-mobile-product-bar .dr-mobile-add-cart:active {
        background: linear-gradient(
            135deg,
            #000643 0%,
            #161B62 100%
        ) !important;

        background-color: #000643 !important;

        color: #FFFFFF !important;

        border: 0 !important;
        outline: 0 !important;

        box-shadow:
            0 7px 17px rgba(0, 6, 67, .22) !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart i,
    .dr-mobile-product-bar .dr-mobile-add-cart span {
        color: #FFFFFF !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart:disabled {
        background: #AEB3C1 !important;
        background-color: #AEB3C1 !important;
        color: #FFFFFF !important;
        opacity: .7 !important;
        box-shadow: none !important;
    }

}

/* =========================================================
   FINAL PRODUCT PRICE + MOBILE STICKY BAR
========================================================= */

.dr-product-price-box {
    margin: 4px 0 20px;
}

.dr-price-main-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.dr-price-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.dr-product-price-old {
    width: auto !important;
    margin: 0 !important;
    color: #98A2B3;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: line-through;
}

.dr-product-price-old span {
    font-size: 9px;
}

.dr-product-price {
    color: #000643;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -.5px;
}

.dr-product-price small {
    font-size: 12px;
    font-weight: 500;
    margin-right: 3px;
}

.dr-discount-percent {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 8px;
    background: #F8F1DE;
    color: #AD861C;
    font-size: 11px;
    font-weight: 800;
}


@media (max-width: 767.98px) {

    .dr-mobile-product-bar {
        position: fixed !important;
        z-index: 1055 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        display: flex !important;
        align-items: center !important;
        gap: 7px !important;

        min-height: 78px !important;

        padding:
            8px
            max(10px, env(safe-area-inset-right))
            calc(8px + env(safe-area-inset-bottom))
            max(10px, env(safe-area-inset-left)) !important;

        background: rgba(255,255,255,.98) !important;

        border-top: 1px solid #E5E7EB !important;

        box-shadow:
            0 -7px 22px rgba(0,6,67,.07) !important;

        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
    }

    .dr-mobile-price {
        flex: 0 0 auto;
        min-width: 92px;

        display: flex;
        flex-direction: column;
        justify-content: center;

        direction: rtl;
    }

    .dr-mobile-price-old {
        color: #98A2B3;
        font-size: 8.5px;
        line-height: 1.5;
        text-decoration: line-through;
        white-space: nowrap;
    }

    .dr-mobile-price-old span {
        font-size: 7px;
    }

    .dr-mobile-price-current {
        color: #000643;
        font-size: 14px;
        line-height: 1.35;
        font-weight: 900;
        white-space: nowrap;
    }

    .dr-mobile-price-current small {
        color: #667085;
        font-size: 7px;
        font-weight: 500;
        margin-right: 2px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex: 0 0 82px !important;
        height: 48px !important;

        display: flex !important;
        align-items: center !important;

        overflow: hidden;

        background: #F7F8FC !important;
        border: 1px solid #E0E3EA !important;
        border-radius: 12px !important;

        box-shadow: none !important;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        flex: 0 0 26px !important;
        width: 26px !important;
        height: 100% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;

        border: 0 !important;
        background: transparent !important;

        color: #000643 !important;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button:disabled {
        color: #C5C9D2 !important;
        opacity: .65;
    }

    .dr-mobile-product-bar .dr-mobile-quantity input {
        flex: 1 !important;
        width: 30px !important;
        min-width: 0 !important;
        height: 100% !important;

        padding: 0 !important;
        border: 0 !important;
        outline: 0 !important;

        background: transparent !important;
        color: #000643 !important;

        text-align: center !important;

        font-family: 'IRANSansFanum', sans-serif !important;
        font-size: 14px !important;
        font-weight: 900 !important;

        -moz-appearance: textfield;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart {
        flex: 1 !important;
        min-width: 0;

        height: 48px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 6px !important;

        padding: 0 9px !important;

        border: 0 !important;
        outline: 0 !important;
        border-radius: 12px !important;

        background: linear-gradient(
            135deg,
            #000643 0%,
            #10165B 55%,
            #161B62 100%
        ) !important;

        background-color: #000643 !important;

        color: #FFFFFF !important;

        font-family: 'IRANSansFanum', sans-serif !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;

        box-shadow:
            0 6px 14px rgba(0,6,67,.18) !important;

        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart:hover,
    .dr-mobile-product-bar .dr-mobile-add-cart:focus,
    .dr-mobile-product-bar .dr-mobile-add-cart:active {
        background: #000643 !important;
        background-color: #000643 !important;
        color: #FFFFFF !important;
        border: 0 !important;
        outline: 0 !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart i,
    .dr-mobile-product-bar .dr-mobile-add-cart span {
        color: #FFFFFF !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart i {
        font-size: 18px !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart.is-loading {
        opacity: .65 !important;
        pointer-events: none;
    }

    .dr-mobile-product-bar .dr-mobile-reminder {
        flex: 1 !important;

        height: 48px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 7px !important;

        padding: 0 13px !important;

        border: 1px solid rgba(0,6,67,.17) !important;
        border-radius: 12px !important;

        background: #FFFFFF !important;
        color: #000643 !important;

        font-family: 'IRANSansFanum', sans-serif !important;
        font-size: 11px !important;
        font-weight: 800 !important;

        box-shadow: 0 5px 13px rgba(0,6,67,.045) !important;

        -webkit-appearance: none !important;
        appearance: none !important;
    }

    .dr-mobile-product-bar .dr-mobile-reminder i {
        color: #AD861C !important;
        font-size: 18px !important;
    }

    .dr-mobile-product-bar .dr-mobile-reminder span {
        color: #000643 !important;
        white-space: nowrap;
    }

    .dr-product-page {
        padding-bottom: 90px !important;
    }
}


@media (max-width: 480px) {

    .dr-product-price {
        font-size: 25px;
    }

    .dr-discount-percent {
        min-height: 25px;
        padding: 0 8px;
        font-size: 9px;
    }

    .dr-mobile-product-bar {
        min-height: 71px !important;
        gap: 5px !important;
    }

    .dr-mobile-price {
        min-width: 80px;
    }

    .dr-mobile-price-current {
        font-size: 12.5px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex-basis: 76px !important;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        flex-basis: 24px !important;
        width: 24px !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart,
    .dr-mobile-product-bar .dr-mobile-reminder {
        height: 46px !important;
        border-radius: 11px !important;
        font-size: 9.5px !important;
    }
}


@media (max-width: 360px) {

    .dr-mobile-price {
        min-width: 72px;
    }

    .dr-mobile-price-current {
        font-size: 11.5px;
    }

    .dr-mobile-product-bar .dr-mobile-quantity {
        flex-basis: 70px !important;
    }

    .dr-mobile-product-bar .dr-mobile-quantity button {
        flex-basis: 22px !important;
        width: 22px !important;
    }

    .dr-mobile-product-bar .dr-mobile-add-cart,
    .dr-mobile-product-bar .dr-mobile-reminder {
        padding: 0 6px !important;
        font-size: 8.8px !important;
    }
}
/* =========================================================
   PRODUCT FILTER SIDEBAR
========================================================= */
/* =========================================================
   SHOP FILTER SIDEBAR
========================================================= */

.dr-shop-filter {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(16, 24, 40, .045),
        0 2px 8px rgba(16, 24, 40, .025);
}


/* =========================================================
   HEADER
========================================================= */

.dr-filter-header {
    min-height: 82px;
    padding: 17px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(255,255,255,.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #000643 0%,
            #11186f 100%
        );

    color: #fff;
}

.dr-filter-header-content {
    min-width: 0;
}

.dr-filter-eyebrow {
    display: block;
    margin-bottom: 3px;

    color: rgba(255,255,255,.52);

    font-size: 9px;
    font-weight: 600;
}

.dr-filter-heading {
    display: block;

    color: #fff;

    font-size: 17px;
    line-height: 1.5;
    font-weight: 800;
}

.dr-filter-header-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;

    background: rgba(255,255,255,.09);

    color: #fff;

    font-size: 20px;

    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}


/* =========================================================
   FORM
========================================================= */

.dr-filter-form {
    padding: 16px 17px 18px;
}


/* =========================================================
   SEARCH
========================================================= */

.dr-filter-search {
    position: relative;

    height: 46px;
    margin-bottom: 5px;
}

.dr-filter-search > i {
    position: absolute;

    top: 50%;
    right: 13px;

    transform: translateY(-50%);

    color: #98a2b3;

    font-size: 17px;

    pointer-events: none;
}

.dr-filter-search input {
    width: 100%;
    height: 100%;

    padding: 0 40px 0 38px;

    border: 1px solid #e6e8ed;
    border-radius: 13px;

    outline: none;

    background: #f8f9fb;
    color: #101828;

    font-family: inherit;
    font-size: 11px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.dr-filter-search input::placeholder {
    color: #a0a7b2;
}

.dr-filter-search input:hover {
    background: #fff;
}

.dr-filter-search input:focus {
    border-color: #000643;
    background: #fff;

    box-shadow:
        0 0 0 3px rgba(0,6,67,.055),
        0 5px 16px rgba(16,24,40,.035);
}

.dr-filter-search-clear {
    position: absolute;

    top: 50%;
    left: 9px;

    width: 27px;
    height: 27px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eef0f4;
    color: #667085;

    font-size: 13px;

    transition: .2s ease;
}

.dr-filter-search-clear:hover {
    background: #e4e7ec;
    color: #101828;
}


/* =========================================================
   SECTION
========================================================= */

.dr-filter-section {
    padding: 20px 2px;

    border-top: 1px solid #f0f1f4;
}

.dr-filter-section:first-of-type {
    border-top: 0;
}

.dr-filter-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 14px;
}

.dr-filter-section-title-main {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #101828;

    font-size: 14px;
    font-weight: 800;
}

.dr-filter-section-icon {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #f2f3fb,
        #f8f9fc
    );

    color: #000643;

    font-size: 16px;

    box-shadow:
        inset 0 0 0 1px rgba(0,6,67,.025);
}

.dr-filter-counter {
    min-width: 23px;
    height: 23px;

    padding: 0 7px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: #f0f1ff;
    color: #000643;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   CATEGORY TREE
========================================================= */

.dr-category-tree {
    width: 100%;
}

.dr-category-node {
    width: 100%;
}

.dr-category-row {
    min-height: 39px;

    display: flex;
    align-items: center;

    border-radius: 11px;

    transition:
        background .18s ease,
        padding .18s ease;
}

.dr-category-row:hover {
    background: #f8f9fc;
}

.dr-category-toggle {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    margin-left: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    background: transparent;

    color: #98a2b3;

    cursor: pointer;

    transition:
        background .18s ease,
        color .18s ease;
}

.dr-category-toggle:hover {
    background: #eceeff;
    color: #000643;
}

.dr-category-toggle i {
    font-size: 14px;

    transition:
        transform .2s ease;
}

.dr-category-row.is-open .dr-category-toggle i {
    transform: rotate(-90deg);
}

.dr-category-toggle-placeholder {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
}

.dr-category-link {
    min-width: 0;
    flex: 1;

    min-height: 39px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: #475467;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: color .18s ease;
}

.dr-category-link:hover {
    color: #000643;
}

.dr-category-icon {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #98a2b3;

    font-size: 14px;

    transition: color .18s ease;
}

.dr-category-row:hover .dr-category-icon {
    color: #000643;
}

.dr-category-title {
    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;

    line-height: 1.8;
}


/* =========================================================
   CATEGORY LEVELS
========================================================= */

.dr-category-level-1 {
    padding-right: 11px;
}

.dr-category-level-2 {
    padding-right: 22px;
}

.dr-category-level-3 {
    padding-right: 33px;
}

.dr-category-level-4 {
    padding-right: 44px;
}


/* =========================================================
   CATEGORY CHILDREN
========================================================= */

.dr-category-children {
    display: none;

    margin-right: 14px;
    padding-right: 9px;

    border-right: 1px solid #eceef2;
}

.dr-category-node.is-open > .dr-category-children {
    display: block;
}


/* =========================================================
   MODERN SWITCHES
========================================================= */

.dr-filter-switches {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.dr-filter-switch-row {
    min-height: 66px;

    padding: 9px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    border: 1px solid #edf0f4;
    border-radius: 15px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfd 100%
        );

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.dr-filter-switch-row:hover {
    border-color: #dfe3ea;
    background: #fff;

    box-shadow:
        0 7px 18px rgba(16,24,40,.045);

    transform: translateY(-1px);
}

.dr-filter-switch-info {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 9px;
}

.dr-filter-switch-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    font-size: 17px;
}

.dr-switch-icon-stock {
    background: #ecfdf3;
    color: #039855;
}

.dr-switch-icon-sale {
    background: #fff1f1;
    color: #d92d20;
}

.dr-filter-switch-text {
    min-width: 0;
}

.dr-filter-switch-text strong {
    display: block;

    margin-bottom: 2px;

    color: #344054;

    font-size: 12px;
    line-height: 1.6;
    font-weight: 750;
}

.dr-filter-switch-text small {
    display: block;

    color: #98a2b3;

    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   SWITCH
========================================================= */

.dr-switch {
    position: relative;

    width: 41px;
    height: 24px;

    flex: 0 0 41px;
}

.dr-switch input {
    position: absolute;

    opacity: 0;
    width: 0;
    height: 0;
}

.dr-switch-slider {
    position: absolute;

    inset: 0;

    border-radius: 30px;

    background: #dfe3e8;

    cursor: pointer;

    transition:
        background .22s ease,
        box-shadow .22s ease;
}

.dr-switch-slider:before {
    content: "";

    position: absolute;

    width: 18px;
    height: 18px;

    top: 3px;
    left: 3px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 2px 5px rgba(16,24,40,.18);

    transition:
        transform .22s cubic-bezier(.4,0,.2,1);
}

.dr-switch input:checked + .dr-switch-slider {
    background: #000643;

    box-shadow:
        0 0 0 3px rgba(0,6,67,.08);
}

.dr-switch input:checked + .dr-switch-slider:before {
    transform: translateX(17px);
}

.dr-filter-switch-row:has(.dr-switch input:checked) {
    border-color: rgba(0,6,67,.12);

    background:
        linear-gradient(
            180deg,
            #fbfbff 0%,
            #f8f9ff 100%
        );
}


/* =========================================================
   CHECKBOX
========================================================= */

.dr-filter-check-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.dr-filter-check-item {
    position: relative;

    min-height: 38px;

    display: flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
}

.dr-filter-check-item input {
    position: absolute;

    opacity: 0;
    visibility: hidden;
}

.dr-filter-checkbox {
    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d0d5dd;
    border-radius: 6px;

    background: #fff;

    color: transparent;

    transition: .18s ease;
}

.dr-filter-check-item:hover .dr-filter-checkbox {
    border-color: #000643;
}

.dr-filter-check-item input:checked + .dr-filter-checkbox {
    background: #000643;
    border-color: #000643;
    color: #fff;
}

.dr-filter-checkbox i {
    font-size: 11px;
}

.dr-filter-option-text {
    min-width: 0;

    color: #475467;

    font-size: 12px;
    line-height: 1.8;

    transition: color .18s ease;
}

.dr-filter-check-item:hover .dr-filter-option-text {
    color: #000643;
}


/* =========================================================
   BRAND SEARCH
========================================================= */

.dr-filter-brand-search {
    position: relative;

    margin-bottom: 11px;
}

.dr-filter-brand-search > i {
    position: absolute;

    right: 11px;
    top: 50%;

    transform: translateY(-50%);

    color: #98a2b3;

    font-size: 15px;

    pointer-events: none;
}

.dr-filter-brand-search input {
    width: 100%;
    height: 40px;

    padding: 0 34px 0 11px;

    border: 1px solid #e4e7ec;
    border-radius: 11px;

    outline: none;

    background: #f9fafb;
    color: #101828;

    font-family: inherit;
    font-size: 10px;

    transition: .2s ease;
}

.dr-filter-brand-search input:focus {
    background: #fff;
    border-color: #000643;

    box-shadow:
        0 0 0 3px rgba(0,6,67,.045);
}


/* =========================================================
   BRANDS
========================================================= */

.dr-filter-brands {
    max-height: 260px;

    overflow-y: auto;

    padding-left: 2px;
    padding-right: 1px;
}

.dr-filter-brands::-webkit-scrollbar {
    width: 4px;
}

.dr-filter-brands::-webkit-scrollbar-track {
    background: transparent;
}

.dr-filter-brands::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 20px;
}


/* =========================================================
   ACTIONS
========================================================= */

.dr-filter-actions {
    margin-top: 2px;
    padding-top: 18px;

    border-top: 1px solid #f0f1f4;
}

.dr-filter-submit {
    width: 100%;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border: 0;
    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #000643 0%,
            #11186f 100%
        );

    color: #fff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 9px 22px rgba(0,6,67,.14);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.dr-filter-submit:hover {
    transform: translateY(-1px);

    box-shadow:
        0 13px 28px rgba(0,6,67,.18);
}

.dr-filter-submit i {
    font-size: 16px;
}

.dr-filter-reset {
    width: 100%;
    min-height: 40px;

    margin-top: 7px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    border-radius: 11px;

    color: #667085;

    font-size: 10px;

    transition:
        background .2s ease,
        color .2s ease;
}

.dr-filter-reset:hover {
    background: #f2f4f7;
    color: #000643;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .dr-shop-filter {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .dr-filter-header {
        border-radius: 0;
    }

    .dr-filter-form {
        padding-left: 18px;
        padding-right: 18px;
    }

}
/* =========================================================
   SHOP PAGE
========================================================= */

.dr-shop-page {
    direction: rtl;
    background: #f7f8fc;
    min-height: 100vh;
    padding: 28px 0 70px;
}

.dr-shop-container {
    width: 100%;
    max-width: 1540px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 18px;
}


/* =========================================================
   SHOP HEADER
========================================================= */

.dr-shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.dr-shop-header-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dr-shop-header-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #000643;
    color: #fff;
    font-size: 25px;
    box-shadow: 0 12px 30px rgba(0, 6, 67, .14);
}

.dr-shop-header h1 {
    margin: 0 0 5px;
    color: #101828;
    font-size: 27px;
    line-height: 1.4;
    font-weight: 900;
}

.dr-shop-header p {
    margin: 0;
    color: #667085;
    font-size: 12px;
    line-height: 1.8;
}

.dr-shop-header p strong {
    color: #000643;
}

.dr-shop-result-count {
    min-width: 110px;
    padding: 11px 18px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.dr-shop-result-count strong {
    display: block;
    color: #000643;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 900;
}

.dr-shop-result-count span {
    display: block;
    margin-top: 2px;
    color: #98a2b3;
    font-size: 10px;
}


/* =========================================================
   SIDEBAR WRAPPER
========================================================= */

.dr-shop-sidebar {
    position: sticky;
    top: 20px;
}


/* =========================================================
   PRODUCTS TOOLBAR
========================================================= */

.dr-products-toolbar {
    min-height: 62px;
    margin-bottom: 13px;
    padding: 9px 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 17px;
}

.dr-products-toolbar-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;

    color: #98a2b3;
    font-size: 11px;
}

.dr-products-toolbar-info strong {
    color: #101828;
    font-weight: 800;
}

.dr-products-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dr-sort-label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 11px;
}

.dr-sort-label i {
    font-size: 16px;
}

.dr-products-sort {
    width: auto;
    min-width: 150px;
    height: 38px;
    padding: 0 11px;

    border: 1px solid #e4e7ec;
    border-radius: 10px;

    background: #fff;
    color: #344054;

    outline: none;
    cursor: pointer;

    font-family: inherit;
    font-size: 11px;
}

.dr-products-sort:focus {
    border-color: #000643;
    box-shadow: 0 0 0 3px rgba(0, 6, 67, .05);
}


/* =========================================================
   ACTIVE FILTERS
========================================================= */

.dr-active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.dr-active-filters-title {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #667085;
    font-size: 10px;
    font-weight: 700;
}

.dr-active-filters-title i {
    font-size: 15px;
}

.dr-active-filter {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 9px;

    border: 1px solid #e5e7eb;
    border-radius: 9px;

    background: #fff;
    color: #475467;

    font-size: 10px;
}

.dr-active-filter i {
    font-size: 13px;
}

.dr-active-filter-clear {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 9px;

    border-radius: 9px;

    background: #fff2f1;
    color: #d92d20;

    font-size: 10px;
    transition: .2s ease;
}

.dr-active-filter-clear:hover {
    background: #ffe4e1;
    color: #b42318;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.dr-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}


/* =========================================================
   PRODUCT CARD
   هماهنگ با کارت فعلی خودت
========================================================= */

.dr-product-card {
    position: relative;
    min-width: 0;

    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 20px;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.dr-product-card:hover {
    transform: translateY(-4px);
    border-color: #d9ddea;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .09);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.dr-product-card-image {
    position: relative;

    width: 100%;
    height: 265px;

    display: block;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            #fff 0%,
            #fbfbfd 58%,
            #f7f8fc 100%
        );
}

.dr-product-card-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;

    padding: 15px;

    transition: transform .35s ease;
}

.dr-product-card:hover .dr-product-card-image img {
    transform: scale(1.045);
}


/* =========================================================
   CARD BADGES
========================================================= */

.dr-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 4px;

    min-height: 28px;
    padding: 5px 9px;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(16, 24, 40, .07);
}

.dr-card-badge i {
    font-size: 13px;
}

.dr-card-badge-feature {
    background: #fff8df;
    color: #a36f00;
}

.dr-card-badge-sale {
    background: #fff0f0;
    color: #d92d20;
}


/* =========================================================
   OUT OF STOCK
========================================================= */

.dr-card-out-stock {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;

    display: inline-flex;
    align-items: center;

    min-height: 27px;
    padding: 5px 9px;

    border-radius: 9px;

    background: rgba(17, 24, 39, .82);
    color: #fff;

    font-size: 9px;
    font-weight: 700;

    backdrop-filter: blur(5px);
}


/* =========================================================
   CARD BODY
========================================================= */

.dr-product-card-body {
    padding: 14px 14px 15px;
}


/* =========================================================
   BRAND
========================================================= */

.dr-card-brand {
    display: block;
    width: fit-content;
    max-width: 100%;

    margin-bottom: 7px;

    color: #98a2b3;

    font-size: 10px;
    line-height: 1.5;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    transition: color .2s ease;
}

.dr-card-brand:hover {
    color: #000643;
}


/* =========================================================
   TITLE
========================================================= */

.dr-card-title {
    display: -webkit-box;
    min-height: 47px;

    margin: 0;

    overflow: hidden;

    color: #101828;

    font-size: 13px;
    line-height: 1.85;
    font-weight: 800;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.dr-card-title:hover {
    color: #000643;
}


/* =========================================================
   PRICE
========================================================= */

.dr-card-price-area {
    min-height: 58px;
    margin-top: 10px;
}

.dr-card-old-price {
    margin-bottom: 3px;

    color: #98a2b3;
    font-size: 10px;

    text-decoration: line-through;
}

.dr-card-old-price span {
    font-size: 8px;
}

.dr-card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dr-card-price {
    color: #000643;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 900;
}

.dr-card-price small {
    color: #667085;
    font-size: 9px;
    font-weight: 600;
}

.dr-card-no-price {
    padding-top: 9px;

    color: #667085;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   STOCK
========================================================= */

.dr-card-stock {
    min-height: 26px;
    margin-top: 5px;

    display: flex;
    align-items: center;
}

.dr-card-stock span {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    font-size: 10px;
    font-weight: 700;
}

.dr-card-stock i {
    font-size: 14px;
}

.dr-card-stock .available {
    color: #039855;
}

.dr-card-stock .unavailable {
    color: #d92d20;
}


/* =========================================================
   EMPTY
========================================================= */

.dr-shop-empty {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;

    background: #fff;
    border: 1px solid #e7eaf0;
    border-radius: 22px;
}

.dr-shop-empty-icon {
    width: 78px;
    height: 78px;

    margin-bottom: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 23px;

    background: #f2f4f7;
    color: #667085;

    font-size: 31px;
}

.dr-shop-empty h3 {
    margin: 0 0 7px;

    color: #101828;

    font-size: 19px;
    font-weight: 800;
}

.dr-shop-empty p {
    margin: 0 0 19px;

    color: #98a2b3;

    font-size: 12px;
}

.dr-shop-empty-button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 0 16px;

    border-radius: 11px;

    background: #000643;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    transition: .2s ease;
}

.dr-shop-empty-button:hover {
    color: #fff;
    background: #11186f;
}


/* =========================================================
   PAGINATION
========================================================= */

.dr-shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 28px;
}

.dr-shop-pagination nav {
    display: flex;
    justify-content: center;
}

.dr-shop-pagination .pagination {
    gap: 5px;
    margin: 0;
}

.dr-shop-pagination .page-link {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #e4e7ec;
    border-radius: 10px !important;

    background: #fff;
    color: #475467;

    font-size: 11px;

    box-shadow: none;
}

.dr-shop-pagination .page-link:hover {
    border-color: #000643;
    color: #000643;
    background: #fff;
}

.dr-shop-pagination .page-item.active .page-link {
    border-color: #000643;
    background: #000643;
    color: #fff;
}

.dr-shop-pagination .page-item.disabled .page-link {
    background: #f9fafb;
    color: #98a2b3;
}


/* =========================================================
   MOBILE TOOLBAR
========================================================= */

.dr-shop-mobile-toolbar {
    display: none;
}


/* =========================================================
   FILTER MODAL
========================================================= */

.dr-filter-modal .modal-content {
    border: 0;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
}

.dr-filter-modal-header {
    min-height: 72px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    background: #000643;
    color: #fff;
}

.dr-filter-modal-header span {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,.58);

    font-size: 10px;
}

.dr-filter-modal-header strong {
    display: block;

    color: #fff;

    font-size: 16px;
    font-weight: 800;
}

.dr-filter-modal-close {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 11px;

    background: rgba(255,255,255,.10);
    color: #fff;

    font-size: 19px;
}

.dr-filter-modal-close:hover {
    background: rgba(255,255,255,.16);
}

.dr-filter-modal-body {
    background: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px) {

    .dr-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dr-product-card-image {
        height: 250px;
    }

}


@media (max-width: 1199px) {

    .dr-shop-header h1 {
        font-size: 24px;
    }

    .dr-products-grid {
        gap: 14px;
    }

    .dr-product-card-image {
        height: 235px;
    }

}


@media (max-width: 991px) {

    .dr-shop-page {
        padding-top: 18px;
    }

    .dr-shop-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .dr-shop-result-count {
        display: none;
    }

    .dr-shop-mobile-toolbar {
        min-height: 54px;

        margin-bottom: 14px;
        padding: 7px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background: #fff;
        border: 1px solid #e7eaf0;
        border-radius: 15px;
    }

    .dr-mobile-filter-button {
        height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        padding: 0 14px;

        border: 0;
        border-radius: 11px;

        background: #000643;
        color: #fff;

        font-family: inherit;
        font-size: 11px;
        font-weight: 700;
    }

    .dr-mobile-filter-button i {
        font-size: 16px;
    }

    .dr-mobile-products-count {
        padding: 0 10px;

        color: #667085;

        font-size: 10px;
    }

    .dr-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .dr-products-toolbar {
        padding: 8px 11px;
    }

}


@media (max-width: 575px) {

    .dr-shop-page {
        padding: 15px 0 45px;
    }

    .dr-shop-header {
        margin-bottom: 13px;
    }

    .dr-shop-header-main {
        gap: 10px;
    }

    .dr-shop-header-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;

        border-radius: 14px;
        font-size: 20px;
    }

    .dr-shop-header h1 {
        margin-bottom: 2px;
        font-size: 20px;
    }

    .dr-shop-header p {
        font-size: 9px;
    }

    .dr-products-toolbar {
        min-height: 52px;
        padding: 7px 9px;
        gap: 8px;
        border-radius: 14px;
    }

    .dr-products-toolbar-info {
        font-size: 9px;
        gap: 3px;
    }

    .dr-sort-label {
        display: none;
    }

    .dr-products-sort {
        min-width: 115px;
        height: 34px;

        padding: 0 8px;

        font-size: 9px;
        border-radius: 9px;
    }

    .dr-active-filters {
        gap: 5px;
        margin-bottom: 11px;
    }

    .dr-active-filters-title {
        width: 100%;
        margin-bottom: 2px;
    }

    .dr-active-filter,
    .dr-active-filter-clear {
        min-height: 28px;
        padding: 4px 7px;
        border-radius: 8px;
        font-size: 9px;
    }

    .dr-products-grid {
        gap: 9px;
    }

    .dr-product-card {
        border-radius: 16px;
    }

    .dr-product-card-image {
        height: 185px;
    }

    .dr-product-card-image img {
        padding: 10px;
    }

    .dr-card-badge {
        top: 8px;
        right: 8px;

        min-height: 24px;
        padding: 4px 6px;

        border-radius: 8px;

        font-size: 8px;
    }

    .dr-card-badge i {
        font-size: 11px;
    }

    .dr-card-out-stock {
        left: 8px;
        bottom: 8px;

        min-height: 23px;
        padding: 4px 6px;

        font-size: 8px;
        border-radius: 7px;
    }

    .dr-product-card-body {
        padding: 10px;
    }

    .dr-card-brand {
        margin-bottom: 4px;
        font-size: 8px;
    }

    .dr-card-title {
        min-height: 43px;
        font-size: 11px;
        line-height: 1.8;
    }

    .dr-card-price-area {
        min-height: 51px;
        margin-top: 7px;
    }

    .dr-card-old-price {
        font-size: 8px;
    }

    .dr-card-price {
        font-size: 13px;
    }

    .dr-card-price small {
        font-size: 7px;
    }

    .dr-card-no-price {
        padding-top: 7px;
        font-size: 9px;
    }

    .dr-card-stock span {
        font-size: 8px;
    }

    .dr-card-stock i {
        font-size: 12px;
    }

    .dr-shop-empty {
        min-height: 350px;
        padding: 20px;
        border-radius: 18px;
    }

    .dr-shop-empty-icon {
        width: 65px;
        height: 65px;
        border-radius: 19px;
        font-size: 27px;
    }

    .dr-shop-empty h3 {
        font-size: 16px;
    }

    .dr-shop-empty p {
        font-size: 10px;
    }

    .dr-shop-pagination {
        margin-top: 20px;
    }

    .dr-shop-pagination .page-link {
        width: 35px;
        height: 35px;
        font-size: 9px;
    }

}


@media (max-width: 380px) {

    .dr-products-grid {
        gap: 7px;
    }

    .dr-product-card-image {
        height: 165px;
    }

    .dr-product-card-body {
        padding: 9px;
    }

    .dr-card-title {
        font-size: 10px;
        min-height: 40px;
    }

    .dr-card-price {
        font-size: 12px;
    }

    .dr-mobile-filter-button {
        padding: 0 11px;
        font-size: 10px;
    }

}
/* =========================================================
   SHOP PAGINATION
========================================================= */

.dr-shop-pagination {
    width: 100%;
    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dr-shop-pagination-nav {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.dr-shop-pagination-list {
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    list-style: none;
}


/* =========================================================
   ITEM
========================================================= */

.dr-pagination-item {
    margin: 0;
    padding: 0;
}


/* =========================================================
   BASE LINK
========================================================= */

.dr-pagination-link {
    position: relative;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e4e7ec;
    border-radius: 12px;

    background: #ffffff;
    color: #475467;

    font-size: 11px;
    font-weight: 750;

    text-decoration: none;

    box-shadow:
        0 2px 7px rgba(16, 24, 40, .025);

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


/* =========================================================
   NUMBER HOVER
========================================================= */

.dr-pagination-page:hover {
    color: #000643;

    background: #f8f9ff;

    border-color: #cfd4e3;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(16, 24, 40, .07);
}


/* =========================================================
   ACTIVE
========================================================= */

.dr-pagination-item.active .dr-pagination-link {
    border-color: #000643;

    background:
        linear-gradient(
            135deg,
            #000643 0%,
            #11186f 100%
        );

    color: #ffffff;

    box-shadow:
        0 9px 20px rgba(0, 6, 67, .19);

    transform: translateY(-1px);
}


/* =========================================================
   ACTIVE GLOW
========================================================= */

.dr-pagination-item.active .dr-pagination-link::after {
    content: "";

    position: absolute;

    inset: -3px;

    border-radius: 14px;

    border: 1px solid rgba(0, 6, 67, .06);

    pointer-events: none;
}


/* =========================================================
   ARROWS
========================================================= */

.dr-pagination-arrow {
    font-size: 17px;
}

.dr-pagination-arrow i {
    line-height: 1;
}


/* =========================================================
   ARROW HOVER
========================================================= */

.dr-pagination-item:not(.disabled) .dr-pagination-arrow:hover {
    background: #f8f9ff;

    color: #000643;

    border-color: #cfd4e3;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(16, 24, 40, .07);
}


/* =========================================================
   DOTS
========================================================= */

.dr-pagination-dots {
    border-color: transparent;

    background: transparent;

    color: #98a2b3;

    box-shadow: none;

    cursor: default;
}

.dr-pagination-dots:hover {
    transform: none;

    border-color: transparent;

    background: transparent;

    color: #98a2b3;

    box-shadow: none;
}


/* =========================================================
   DISABLED
========================================================= */

.dr-pagination-item.disabled .dr-pagination-link {
    pointer-events: none;

    border-color: #eef0f3;

    background: #f8f9fb;

    color: #c5cbd3;

    box-shadow: none;

    transform: none;
}


/* =========================================================
   AJAX LOADING
========================================================= */

#dr-shop-pagination.dr-pagination-loading {
    opacity: .5;
    pointer-events: none;

    transition: opacity .2s ease;
}

#dr-shop-pagination.dr-pagination-loading
.dr-pagination-link {
    cursor: wait;
}


/* =========================================================
   PRODUCTS LOADING
========================================================= */

#dr-products-grid.dr-products-loading {
    opacity: .35;
    pointer-events: none;

    transition: opacity .2s ease;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 767px) {

    .dr-shop-pagination {
        margin-top: 24px;
    }

    .dr-shop-pagination-list {
        gap: 5px;
    }

    .dr-pagination-link {
        width: 38px;
        height: 38px;

        border-radius: 10px;

        font-size: 10px;
    }

    .dr-pagination-arrow {
        font-size: 15px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 575px) {

    .dr-shop-pagination {
        margin-top: 20px;
    }

    .dr-shop-pagination-list {
        gap: 4px;
    }

    .dr-pagination-link {
        width: 34px;
        height: 34px;

        border-radius: 9px;

        font-size: 9px;
    }

    .dr-pagination-arrow {
        font-size: 13px;
    }

    .dr-pagination-item.active .dr-pagination-link::after {
        inset: -2px;
        border-radius: 11px;
    }

}
