/* =========================================================
   AWTI DEVICES HUB
   PRICE + GST CSS
   File: assets/css/device-price.css
   ========================================================= */

.awti-device-single .awti-price-gst-card{
    position:relative;

    margin:20px 0;
    padding:0;

    border:1px solid rgba(37,99,235,.18);
    border-left:3px solid #16a34a;
    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #ecfdf5 0%,
            #ffffff 48%,
            #eff6ff 100%
        );

    box-shadow:0 8px 28px rgba(15,23,42,.07);

    overflow:hidden;
}

.awti-device-single .awti-price-gst-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #0d9488,
            #2563eb
        );
}


/* =========================================================
   HEADER
   ========================================================= */

.awti-device-single .awti-price-gst-head{
    padding:15px 18px;

    border-bottom:1px solid rgba(37,99,235,.12);

    background:
        linear-gradient(
            135deg,
            #ecfdf5,
            #eff6ff
        );

    color:#0f172a;

    font-size:15px;
    font-weight:900;
}

.awti-device-single .awti-price-gst-body{
    padding:18px;
}


/* =========================================================
   CURRENT PRICE
   ========================================================= */

.awti-device-single .awti-price-main-label{
    display:block;

    margin-bottom:4px;

    color:#64748b;

    font-size:13px;
    font-weight:600;
}

.awti-device-single .awti-current-price{
    display:block;

    color:#2563eb;

    font-size:32px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-.5px;
}


/* =========================================================
   GST INCLUDED
   ========================================================= */

.awti-device-single .awti-price-gst-body > div[style]{
    color:#15803d !important;
}


/* =========================================================
   MRP
   ========================================================= */

.awti-device-single .awti-mrp-row{
    margin-top:7px;

    color:#64748b;

    font-size:14px;
}

.awti-device-single .awti-mrp-row del{
    margin-right:8px;
}

.awti-device-single .awti-discount{
    display:inline-block;

    padding:3px 8px;

    border-radius:999px;

    background:#dcfce7;
    color:#15803d;

    font-size:11px;
    font-weight:900;
}


/* =========================================================
   GST BREAKDOWN
   ========================================================= */

.awti-device-single .awti-gst-breakdown{
    margin-top:17px;
    padding:14px;

    border:1px solid rgba(37,99,235,.12);
    border-radius:13px;

    background:
        linear-gradient(
            135deg,
            #f0fdf4,
            #ffffff,
            #eff6ff
        );
}

.awti-device-single .awti-gst-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:14px;
    padding:7px 0;

    color:#475569;

    font-size:13px;
}

.awti-device-single .awti-gst-row strong{
    color:#0f172a;
    font-weight:800;
}

.awti-device-single .awti-gst-row.total{
    margin-top:5px;
    padding-top:12px;

    border-top:1px solid #cbd5e1;

    font-size:15px;
    font-weight:800;
}

.awti-device-single .awti-gst-row.total strong{
    color:#15803d;
    font-size:18px;
    font-weight:900;
}

.awti-device-single .awti-gst-note{
    margin:10px 0 0;

    color:#64748b;

    font-size:11px;
    line-height:1.5;
}


/* =========================================================
   PRICE RANGE
   ========================================================= */

.awti-device-single .awti-price-range{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:10px;
    margin-top:14px;
}

.awti-device-single .awti-price-range > div{
    padding:12px;

    border:1px solid rgba(22,163,74,.14);
    border-radius:12px;

    background:#fff;

    box-shadow:0 3px 10px rgba(15,23,42,.03);
}

.awti-device-single .awti-price-range span{
    display:block;

    margin-bottom:4px;

    color:#64748b;

    font-size:11px;
}

.awti-device-single .awti-price-range strong{
    color:#2563eb;

    font-size:18px;
    font-weight:900;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:600px){

    .awti-device-single .awti-price-gst-card{
        border-radius:15px;
    }

    .awti-device-single .awti-price-gst-body{
        padding:15px;
    }

    .awti-device-single .awti-current-price{
        font-size:29px;
    }

    .awti-device-single .awti-price-range{
        grid-template-columns:1fr;
    }

    .awti-device-single .awti-gst-row{
        font-size:12px;
    }

    .awti-device-single .awti-price-gst-head{
        padding:13px 15px;
    }

}

/* =========================================================
   AWTI DEVICE HUB
   LOWEST / HIGHEST PRICE CARDS
   FINAL MATCHING AWTI COLOUR
   ========================================================= */

.awti-price-gst-card .awti-price-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}


/* =========================================================
   COMMON CARD
   ========================================================= */

.awti-price-gst-card .awti-price-range > div {
    position: relative;
    overflow: hidden;

    padding: 15px 16px;

    border: 1px solid rgba(37, 99, 235, .18);
    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #ecfdf5 0%,
            #ffffff 48%,
            #eff6ff 100%
        ) !important;

    box-shadow:
        0 4px 14px rgba(15, 23, 42, .04);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.awti-price-gst-card .awti-price-range > div::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #0d9488,
            #2563eb
        );
}


/* =========================================================
   HOVER
   ========================================================= */

.awti-price-gst-card .awti-price-range > div:hover {
    transform: translateY(-2px);

    border-color:
        rgba(37, 99, 235, .28);

    box-shadow:
        0 8px 22px rgba(15, 23, 42, .08);
}


/* =========================================================
   LABEL
   ========================================================= */

.awti-price-gst-card .awti-price-range > div span {
    display: block;

    margin-bottom: 6px;

    color: #64748b;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
}


/* =========================================================
   PRICE
   ========================================================= */

.awti-price-gst-card .awti-price-range > div strong {
    display: block;

    color: #0f172a;

    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}


/* =========================================================
   LOWEST PRICE
   GREEN / TEAL ACCENT
   ========================================================= */

.awti-price-gst-card
.awti-price-range > div:first-child {

    border-color:
        rgba(22, 163, 74, .18);
}


.awti-price-gst-card
.awti-price-range > div:first-child span {

    color: #15803d;
}


.awti-price-gst-card
.awti-price-range > div:first-child strong {

    color: #15803d;
}


/* =========================================================
   HIGHEST PRICE
   BLUE / TEAL ACCENT
   ========================================================= */

.awti-price-gst-card
.awti-price-range > div:last-child {

    border-color:
        rgba(37, 99, 235, .18);
}


.awti-price-gst-card
.awti-price-range > div:last-child span {

    color: #2563eb;
}


.awti-price-gst-card
.awti-price-range > div:last-child strong {

    color: #2563eb;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .awti-price-gst-card .awti-price-range {
        gap: 10px;
    }

    .awti-price-gst-card .awti-price-range > div {
        padding: 13px 12px;
        border-radius: 12px;
    }

    .awti-price-gst-card .awti-price-range > div span {
        font-size: 10px;
    }

    .awti-price-gst-card .awti-price-range > div strong {
        font-size: 17px;
    }
}