body{
    font-family: "Poppins",sans-serif !important;
}
.newLiquor-dashboard-body {
    padding: 16px;
    font-family: "Poppins",sans-serif;
}

@media (min-width: 768px) {
    body.newLiquor-dashboard-body {
        padding: 32px;
    }
}

/* Typography */
/* .newLiquor-dashboard-h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
} */

/* .newLiquor-dashboard-subtitle {
    margin-top: 4px;
    color: #6b7280;
} */

.newLiquor-dashboard-h2 {
    /* font-size: 1.25rem;
    font-weight: 700; */
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

.newLiquor-dashboard-kpi-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}

.newLiquor-dashboard-small {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Grid */
.newLiquor-dashboard-grid {
    display: grid;
    gap: 24px;
    margin-top: 35px;
}

.newLiquor-dashboard-grid-1 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .newLiquor-dashboard-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .newLiquor-dashboard-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .newLiquor-dashboard-grid-12 {
        grid-template-columns: repeat(12, 1fr);
    }

    .newLiquor-dashboard-col-8 {
        grid-column: span 8;
    }

    .newLiquor-dashboard-col-4 {
        grid-column: span 4;
    }
}

/* Cards */
.newLiquor-dashboard-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
    transition: .3s;
    padding-bottom: 60px;
}

.newLiquor-dashboard-card:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, .08);
}

.newLiquor-dashboard-inner-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, .05);
}

/* KPI */
.newLiquor-dashboard-kpi-value {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
}

.newLiquor-dashboard-positive {
    color: #16a34a;
}

.newLiquor-dashboard-negative {
    color: #dc2626;
}

/* Flex */
.newLiquor-dashboard-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newLiquor-dashboard-mb-3 {
    margin-bottom: 12px;
}

.newLiquor-dashboard-mb-6 {
    margin-bottom: 24px;
}

.newLiquor-dashboard-mt-4 {
    margin-top: 16px;
}

/* .newLiquor-dashboard-center {
    text-align: center;
} */

/* Icons */
/* .icon-blue {
    color: #3b82f6;
}

.icon-red {
    color: #ef4444;
}

.icon-green {
    color: #22c55e;
}

.icon-yellow {
    color: #eab308;
}

.icon-purple {
    color: #a855f7;
}

.icon-orange {
    color: #f97316;
}

.icon-indigo {
    color: #6366f1;
} */

/* Charts */
.newLiquor-dashboard-chart-card {
    height: 400px;
}

.newLiquor-dashboard-chart-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#storeTrendLineChart {
    max-width: 100%;
}

.newLiquor-dashboard-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 20px;
    padding-top: 100px;
}


.fds-dashbackgroud-img {
    /* background-image: url(../food-dashboard/assets/img/Subtract.png); */
    background-image: url(../../../food-dashboard/assets/img/Subtract.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 4% 1% 3%;
    border-right: .5px solid #e6e6e6;
    border-left: .5px solid #e6e6e6;
    border-radius: 10px;
}


/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* N-=ew---------------- */
.new-fds-dashboards-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 198px;
    /* min-height: 280px; */
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.new-fds-dashboards-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.new-fds-dashboards-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.new-fds-dashboards-card-content {
    flex: 1;
}

.new-fds-dashboards-card-title {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.new-fds-dashboards-card-value {
    font-size: 30px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* .new-fds-dashboards-card-change {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
} */

.new-fds-dashboards-card-change.positive {
    color: #10b981;
}

/* .new-fds-dashboards-card-change.negative {
    color: #ef4444;
} */

.new-fds-dashboards-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.new-fds-dashboards-card-icon.green {
    background: rgba(211, 224, 210, 0.93);
    /* color: #00BB77; */
}

.new-fds-dashboards-card-icon.blue {
    background: rgba(211, 224, 210, 0.93);
    color: #00BB77;
}

.new-fds-dashboards-card-icon.purple {
    background: rgba(211, 224, 210, 0.93);
    color: #00BB77;
}

.new-fds-dashboards-card-icon.orange {
    background: rgba(211, 224, 210, 0.93);
    color: #00BB77;
}

.new-fds-dashboards-card-chart {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 60px;
}

.new-fds-dashboards-card:hover .new-fds-dashboards-chart-bar {
    transform: scaleY(1.1);
}

.new-fds-dashboards-card-title img {
    padding-right: 10px;
}

.new-fds-dashboards-mini-chart {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    gap: 3px;
}


.new-fds-dashboards-chart-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.new-fds-dashboards-chart-bar.green {
    background: #00BB77;
}

.new-fds-dashboards-chart-bar.blue {
    background: #00BB77;
}

.new-fds-dashboards-chart-bar.purple {
    background: #00BB77;
}

.new-fds-dashboards-chart-bar.orange {
    background: #00BB77;
}


@media (max-width: 1440px) {
    .fds-dashbackgroud-img {
        padding: 80px 20px 30px;
    }
}

@media (max-width: 1024px) {
    .fds-dashbackgroud-img {
        padding-top: 100px;
    }

    .newLiquor-dashboard-card{
        padding-bottom: 24px;
    }

    h1.newLiquor-dashboard-h1 {
        font-size: 28px !important;
    }

    .line-chart-para-one{
        display: none;
    }
}

/* Responsive Design for Header */
@media (max-width: 768px) {
    .new-fds-dashboards-card {
        padding: 20px;
        min-height: 240px;
    }

    .new-liquorpara-line{
        display: block;
    }

    .new-fds-dashboards-card-value {
        font-size: 28px;
    }

    .new-fds-dashboards-card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .new-fds-dashboards-card-chart {
        width: 80px;
        height: 50px;
    }

    .fds-dashbackgroud-img {
        background-image: url(../../../food-dashboard/assets/img/Subtract-mob.png);
        padding-top: 135px;
        background-size: contain;
        border: none;
    }

    h1.newLiquor-dashboard-h1 {
        font-size: 24px !important;
    }
}

@media (max-width: 639px) {
    .fds-dashbackgroud-img {
        background-image: url(../../../food-dashboard/assets/img/Subtract-mob-2.png);
        background-size: contain;
        padding-top: 100px;
        padding-inline: 30px;
    }

    /* .new-fds-dashboards-card{
        min-height: 168px;
    } */

    h1.newLiquor-dashboard-h1 {
        font-size: 24px !important;
    }
}

@media (max-width: 600px) {
    .new-fds-dashboards-card {
        min-height: 168px;
        min-width: 80%;
        margin-inline: auto;
    }

    h1.newLiquor-dashboard-h1 {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .new-fds-dashboards-card {
        padding: 16px;
        min-height: 145px;
        min-width: 95%;
    }

    .new-fds-dashboards-card-value {
        font-size: 24px;
    }

    h1.newLiquor-dashboard-h1 {
        font-size: 24px !important;
    }

     .newLiquor-dashboard-heading{
        padding-top: 20px;
    }
    h1.newLiquor-dashboard-h1{
        margin-bottom:15px;
    }

}

@media (max-width: 400px) {
    .new-fds-dashboards-card {
        min-height: 110px;
        min-width: unset;
        margin-inline: unset;
    }

   .newLiquor-dashboard-grid{
    margin-top: 52px;
   }

    .new-fds-dashboards-card-title img {
        width: 30px;
    }

    .new-fds-dashboards-card-title {
        font-size: 0.9rem;
    }

    .new-fds-dashboards-card-value {
        font-size: 20px;
    }

    .fds-dashbackgroud-img {
        padding-top: 60px;
    }

    .newLiquor-dashboard-grid.fds-dashbackgroud-img {
        gap: 15px;
    }

    h1.newLiquor-dashboard-h1 {
        font-size: 24px !important;
    }

    .newLiquor-dashboard-kpi-value {
        font-size: 1.25rem;
    }
}


/* ======================================================================== 1st Mid Section CSs */


.fds-newLiquor-dashNew-wrapper {
    width: 100%;
    padding: 16px;
}

.fds-newLiquor-dashNew-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

/* =====================
GRID LAYOUT
===================== */
.fds-newLiquor-dashNew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* =====================
CARD
===================== */
.fds-newLiquor-dashNew-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.fds-newLiquor-dashNew-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

/* =====================
CHART FIX HEIGHT
===================== */
.fds-newLiquor-dashNew-chartBox {
    position: relative;
    height: 300px;
}

/* =====================
TABLE
===================== */
.fds-newLiquor-dashNew-table {
    width: 100%;
    border-collapse: collapse;
}

.fds-newLiquor-dashNew-table thead th {
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    padding-bottom: 10px;
}

.fds-newLiquor-dashNew-table tbody td {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #111827;
    min-width: 175px;
    text-align: center;
}

.fds-newLiquor-dashNew-table tbody tr:last-child td {
    border-bottom: none;
}

.fds-newLiquor-dashNew-priceUp {
    color: #dc2626;
    font-weight: 600;
}

.fds-newLiquor-dashNew-card.table-full {
    overflow: hidden;
    /* max-height: 375px; */
}

.fds-newLiquor-dashNew-card.table-full h3~div {
    height: 300px;
}

/* =====================
RESPONSIVE
===================== */

/* Tablet */
@media (max-width:1199px) {
    .fds-newLiquor-dashNew-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fds-newLiquor-dashNew-card.table-full {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width:767px) {
    .fds-newLiquor-dashNew-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================== 1st Mid Section CSs End*/


/* ======================================================================== 2nd  Mid Section CSs */

.fds-newliquor-dash-second-mid-container {
    /* background-color: #f5f7fa; */
    color: #333;
    padding: 20px;
    /* max-width: 1600px; */
    margin: 0 auto;
}

.fds-newliquor-dash-second-mid-dashboard-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.fds-newliquor-dash-second-mid-dashboard-header h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.fds-newliquor-dash-second-mid-dashboard-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.fds-newliquor-dash-second-mid-charts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.fds-newliquor-dash-second-mid-chart-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fds-newliquor-dash-second-mid-chart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.fds-newliquor-dash-second-mid-chart-title {
    /* font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    flex-shrink: 0; */

    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;

}

.fds-newliquor-dash-second-mid-chart-wrapper {
    position: relative;
    height: 280px;
    width: 100%;
    flex-grow: 1;
}

/* .fds-newliquor-dash-second-mid-footer-note {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #ddd;
        color: #7f8c8d;
        font-size: 0.9rem;
    } */

/* Responsive adjustments */
@media (max-width: 1200px) {
    .fds-newliquor-dash-second-mid-charts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fds-newliquor-dash-second-mid-charts-container {
        grid-template-columns: 1fr;
    }

    .fds-newliquor-dash-second-mid-chart-card {
        padding: 15px;
    }

    .fds-newliquor-dash-second-mid-chart-wrapper {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .fds-newliquor-dash-second-mid-container {
        padding: 10px;
    }

    .fds-newliquor-dash-second-mid-dashboard-header h1 {
        font-size: 1.8rem;
    }

    .fds-newliquor-dash-second-mid-charts-container {
        gap: 15px;
    }

    .fds-newliquor-dash-second-mid-chart-card {
        padding: 12px;
    }

    .fds-newliquor-dash-second-mid-chart-wrapper {
        height: 240px;
    }

    .fds-newliquor-dash-second-mid-chart-title {
        font-size: 1.2rem;
    }
}

/* ======================================================================== 2nd Mid Section CSs End*/

/* Bottom Section Styles */
.food-new-dashboards-lower-section-tables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
    /* max-width: 1405px; */
    margin: 0 20px;
}

.food-new-dashboards-lower-section-category-table-container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
    width: 100%;
    overflow: scroll;
}

.food-new-dashboards-lower-section-heading-section {
    margin-bottom: 20px;
}



.food-new-dashboards-lower-section-heading-section h6 {
    font-size: 16px;
    color: #212529;
    margin-bottom: 5px;
    font-weight: 600;
}

.food-new-dashboards-lower-section-heading-section p {
    font-size: 12px;
    color: #6C757D;
    margin-bottom: 0;
    font-weight: 400;
}

.food-new-dashboards-lower-section-category-table {
    width: 100%;
    border-collapse: collapse;
    height: 100%;
}

.food-new-dashboards-lower-section-category-table th,
.food-new-dashboards-lower-section-category-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    color: #212529 !important;
    background-color: unset;
}

.food-new-dashboards-lower-section-category-table th {
    font-weight: 600;
    text-transform: uppercase;
    color: #212529 !important;
    border-bottom: 1px solid #E9ECEF;
}

.food-new-dashboards-lower-section-category-table td {
    font-weight: 400;
    border-bottom: 1px solid #E9ECEF;
}

.food-new-dashboards-lower-section-category-table tr:nth-child(even) {
    background-color: #CBEADF;
}

.food-new-dashboards-lower-section-category-table tr:nth-child(odd) {
    background-color: #fff;
}

.food-new-dashboards-lower-section-category-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Media Queries */
/* Desktop - Large screens (1200px and above) */


@media screen and (min-width: 1200px) {
    .food-new-dashboards-lower-section-heading-section ~ div{
    height: 92%;
}
}

@media screen and (max-width: 1200px) {
    .food-new-dashboards-lower-section-tables-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}




/* ======================================================================== Last Section CSs Start*/

.fds-liquor-new-dashboard-logo img {
    display: block;width: 50px;
    height: 50px;
}


p {
    text-align: left !important;
}

/* ===== Wrapper ===== */
.fds-liquor-new-dashboard-table-wrapper {
    /* max-width:1200px; */
    /* margin:auto; */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    overflow: scroll;
    /* overflow: hidden; */
    padding: 16px;
    margin: 20px;
}

/* ===== Header ===== */
.fds-liquor-new-dashboard-title {
    /* padding:18px 22px;
font-size:18px;
font-weight:600;
border-bottom:1px solid #eef0f4;
display:flex;
align-items:center;
gap:10px; */
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

/* ===== Table ===== */
.fds-liquor-new-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.fds-liquor-new-dashboard-table thead th {
    text-align: left;
    font-size: 12px;
    letter-spacing: .6px;
    color: #8a8f98;
    padding: 14px 22px;
    border-bottom: 1px solid #eef0f4;
}

.fds-liquor-new-dashboard-table tbody tr {
    border-bottom: 1px solid #eef0f4;
}

.fds-liquor-new-dashboard-row {
    cursor: pointer;
    transition: .2s;
}

.fds-liquor-new-dashboard-row:hover {
    background: #fafbff;
}

.fds-liquor-new-dashboard-td {
    padding: 18px 22px;
    vertical-align: middle;
}

.fds-liquor-new-dashboard-rank {
    width: 60px;
    color: #6b7280;
    font-weight: 600;
}

.fds-liquor-new-dashboard-product {
    font-weight: 600;
}

.fds-liquor-new-dashboard-brand {
    color: #6b7280;
}

.fds-liquor-new-dashboard-discount {
    font-weight: 700;
    color: #e53935;
}

.fds-liquor-new-dashboard-arrow {
    text-align: right;
    color: #9aa1ac;
    font-size: 18px;
    transition: .3s;
}

/* ===== Accordion ===== */
.fds-liquor-new-dashboard-accordion {
    display: none;
    background: #fafbff;
}

.fds-liquor-new-dashboard-accordion td {
    padding: 22px;
}

.fds-liquor-new-dashboard-accordion-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* gap:20px; */
}

/* Logo */
.fds-liquor-new-dashboard-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    /* background: #4f83ff; */
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Left info */
.fds-liquor-new-dashboard-meta {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
    margin-top: 10px;
}

/* Right pricing */
/* .fds-liquor-new-dashboard-price{
text-align:right;
} */
.fds-liquor-new-dashboard-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 13px;
}

.fds-liquor-new-dashboard-sale {
    font-size: 20px;
    font-weight: 700;
    color: #16a34a;
}

.fds-liquor-new-dashboard-disc {
    font-size: 16px;
    font-weight: 700;
    color: #e53935;
}

/* ===== Active ===== */
.fds-liquor-new-dashboard-row.active .fds-liquor-new-dashboard-arrow {
    transform: rotate(180deg);
}

.fds-newliquor-dash-second-mid-chart-para {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* ===== Responsive ===== */
@media(max-width:768px) {

    /* .fds-liquor-new-dashboard-accordion-inner{
grid-template-columns:1fr;
} */
    .fds-liquor-new-dashboard-price {
        text-align: left;
    }
}



/* ======================================================================== Last Section CSs End*/



.fds-newliquore-dashboard {
    /* max-width: 1400px; */
    /* margin: 0 auto; */
    /* background: linear-gradient(135deg, #4CAF50 0%, #45a049 50%, #2e7d32 100%); */
    border-radius: 24px;
    padding: 50px;
    margin-inline: 20px;
    margin-top: 20px;
    background-image: url(https://www.fooddatascrape.com/food-dashboard/assets/img/dashboard%20Last%20Section.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 100px;
    /* position: relative; */
    /* overflow: hidden; */
    /* box-shadow: 0 20px 60px rgba(0,0,0,0.3); */
}

.fds-newliquore-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1400 600"><path d="M0,300 Q350,100 700,300 T1400,300 L1400,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/><circle cx="1150" cy="100" r="150" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
    background-position: right center;
    opacity: 0.8;
    pointer-events: none;
}

.fds-newliquore-dashboard-content {
    position: relative;
    z-index: 1;
}

.fds-newliquore-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.fds-newliquore-dashboard-title {
    color: white;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize !important;
}

/* .fds-newliquore-dashboard-price {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 20px 35px;
    border-radius: 16px;
    position: relative;
} */

/* .fds-newliquore-dashboard-price::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    backdrop-filter: blur(10px);
} */

/* .fds-newliquore-dashboard-amount {
    color: white;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
} */

.fds-newliquore-dashboard-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.fds-newliquore-dashboard-tags-row:last-of-type {
    margin-bottom: 35px;
}

.fds-newliquore-dashboard-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fds-newliquore-dashboard-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.fds-newliquore-dashboard-description {
    color: white;
    margin-bottom: 25px;
}

.fds-newliquore-dashboard-desc-title {
    /* font-size: 20px;
    font-weight: 600; */
    margin-bottom: 15px;
    line-height: 1.6;
    color: white;
    font-weight: bold;
}

.fds-newliquore-dashboard-desc-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
    color: white;
}

.fds-newliquore-dashboard-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.fds-newliquore-dashboard-btn {
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fds-newliquore-dashboard-btn-primary {
    background: white;
    color: #2e7d32;
}

.fds-newliquore-dashboard-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fds-newliquore-dashboard-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.fds-newliquore-dashboard-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.fds-newliquore-dashboard-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .fds-newliquore-dashboard {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .fds-newliquore-dashboard-title {
        font-size: 28px;
    }

    .fds-newliquore-dashboard-amount {
        font-size: 28px;
    }

    /* .fds-newliquore-dashboard-price {
        padding: 15px 25px;
    } */

    .fds-newliquore-dashboard-tag {
        padding: 10px 18px;
        font-size: 14px;
    }

    .fds-newliquore-dashboard-desc-title {
        font-size: 18px;
    }

    .fds-newliquore-dashboard-desc-text {
        font-size: 15px;
    }

    .fds-newliquore-dashboard-btn {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .fds-newliquore-dashboard {
        padding: 25px 20px;
    }

    .fds-newliquore-dashboard-title {
        font-size: 24px;
    }

    .fds-newliquore-dashboard-tags {
        gap: 8px;
    }

    .fds-newliquore-dashboard-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}


.fds-liquor-new-dashboard-discount{
    position: relative;
}
.fds-liquor-new-dashboard-discount::before {
content: "^";
height: 20px;
width: 10px;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%) rotate(180deg);
    color: grey;
    transition: transform 0.3s ease;
}

.fds-liquor-new-dashboard-row.active .fds-liquor-new-dashboard-discount::before{
transform: translateY(-50%) rotate(0deg);
}
