/*
 * ============================================================
 *  COLOR SYSTEM
 * ============================================================
 *
 *  Primary Dark      #103766   — navbar, footer, icon bg, whyitem
 *  Primary Blue      #288cfa   — buttons, active tabs, links, add-to-cart bg
 *  Performance Green #2E865F   — btn (CTA), positive badges, growth indicators
 *  Green Light       #C6F4D6   — success tints, light alert bg
 *  Background        #F5F5F5   — page / section bg
 *  Surface White     #ffffff   — cards, catgeboxes
 *  Body Text         #333333   — headings, body copy
 *  Muted Text        #666666   — secondary labels, captions
 *  Subtle Border     #dddddd   — grid borders, dividers
 *  Alert / Error     #FF0000   — validation, urgent data
 *  Alert Soft        #fff0f0   — light error bg (replaces #ffecee)
 *  Warm Beige        #d7ccc8   — contact info bg, muted accent
 *  Brown Accent      #8d6e63   — accent link color (replaces gold #d4af37)
 *  Account Teal      #288cfa   — account nav (was #4ab9cf → now primary blue)
 *  Radio Fill        #2E865F   — payment radio dot (was #f87da9)
 *  Overlay Dark      #103766   — catetext backdrop (was rgb(13 27 42))
 *  Inner Banner L    #071e38   — inner banner gradient left
 *  Inner Banner R    #103766a0 — inner banner gradient right
 * ============================================================
 */


/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    padding: 0;
    margin: 0;
    font-family: Inter, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Space Grotesk", sans-serif;
}

a:hover {
    text-decoration: none;
}


/* ============================================================
   LAYOUT & CONTAINER
   ============================================================ */
.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.main-section {
    padding: 60px 0;
}

.middiv,
.ptb,
.section-11,
.section-padding {
    padding: 50px 0;
}


/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    padding: 10px 15px;
    position: relative;
    background: #103766;
    color: #fff;
}

.topbar:before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    background: 0 0;
    bottom: 0;
    z-index: 1;
}


/* ============================================================
   LOGO
   ============================================================ */
.logo {
    display: flex;
    position: absolute;
    left: 0;
    top: -32px;
    height: 90px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    background: #103766;
    background-image: -ms-linear-gradient(0deg, #103766 0, #288cfa 100%);
}

.logo img {
    width: 165px;
}


/* ============================================================
   HEADER
   ============================================================ */
.head {
    padding: 36px 0;
    background: #F5F5F5;
    position: relative;
}

.heading {
    font-size: 40px;
    color: #333333;
    font-weight: 600;
}


/* ============================================================
   LEFT BAR & RIGHT BAR
   ============================================================ */
.leftbar ul {
    padding: 0;
    margin: 0;
}

.leftbar ul li {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    list-style: none;
}

.rightbar {
    display: flex;
    padding: 0;
    text-align: right;
    margin-bottom: 0;
    justify-content: end;
}

.rightbar li {
    font-size: 13px;
    margin-left: 15px;
    list-style: none;
}

.rightbar li a {
    color: #fff;
    text-decoration: none;
}

.rightbar li a:hover {
    color: #288cfa;
}


/* ============================================================
   ADD / CART ICONS (HEADER UTILITY BAR)
   ============================================================ */
.add ul li {
    margin-left: 30px;
    padding-left: 55px;
    display: inline-block;
    text-align: left;
    list-style: none;
    position: relative;
}

.add ul {
    text-align: right;
    margin-bottom: 0;
}

.add ul li .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background: #103766;
    line-height: 44px;
    color: #C6F4D6;
    text-align: center;
}

.add h4 {
    margin-bottom: 4px;
    font-size: 15px;
}

.add p {
    font-size: 12px;
    margin-bottom: 0;
}


/* ============================================================
   SEARCH ICON
   ============================================================ */
.serch-icon {
    text-align: center;
    border-left: 1px solid #103766;
}

.serch-icon a {
    color: #8d6e63;
    font-size: 19px;
}

.serch-icon a:hover {
    color: #C6F4D6;
}

.search input {
    height: 50px;
    border-radius: 0;
}


/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.navibar {
    position: relative;
    z-index: 9;
    background: #103766;
}


/* ============================================================
   HERO SLIDER / CAROUSEL
   ============================================================ */
#demo {
    margin-top: -34px;
}

.carousel-inner img {
    width: 100%;
    height: 571px;
    object-fit: cover;
}

.slider-data {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    right: 0;
    margin: auto;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.slider-data h3 {
    font-size: calc(14px + 4vw);
    color: #fff;
    text-align: center;
    text-shadow: 1px 2px 5px #555;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-data p {
    font-size: 19px;
    color: #f1f1f1;
    text-align: center;
    text-shadow: 1px 2px 5px #000;
    margin: 0;
    font-weight: 600;
    line-height: 30px;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    background: #103766;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 14px;
    transition: background .3s;
    text-decoration: none;
}

.btn:hover {
    background: #288cfa;
    color: #fff;
}

.btngrpp {
    margin-top: 10px;
}

button:focus,
button {
    outline: 0;
}


/* ============================================================
   CON / ICON BAR
   ============================================================ */
.con {
    position: relative;
    z-index: 9;
    padding: 14px 0;
}

.con ul {
    display: flex;
    gap: 23px;
    justify-content: center;
    margin-bottom: 0;
}

.con ul li {
    line-height: 44px;
    font-size: 19px;
    list-style: none;
    text-align: center;
}

.con ul li a {
    color: #fff;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about img {
    height: 450px;
    position: relative;
    width: 400px;
    object-fit: cover;
}

.abt img {
    width: 450px;
    float: left;
    margin-right: 20px;
}

.video {
    position: absolute;
    width: 300px;
    height: 300px;
    right: 32px;
    bottom: -35px;
    background: #fff;
    padding: 20px;
    object-fit: cover;
}


/* ============================================================
   CATEGORY SECTION
   ============================================================ */
.cate,
.prod {
    background: #F5F5F5;
}

.catgebox {
    padding: 9px;
    background: #fff;
}

.catgebox img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.middiv .catgebox {
    background: #288cfa;
    margin-bottom: 20px;
}

.catetext {
    position: absolute;
    bottom: 30px;
    left: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 90%;
    width: 100%;
    background: rgb(16 55 102);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    padding-top: 10px;
}

.catetext h4 a {
    color: #C6F4D6;
    font-size: 21px;
}


/* ============================================================
   WHY US SECTION
   ============================================================ */
.whybox {
    padding: 100px;
    background: #fff;
}

.whyitem {
    padding: 50px 20px;
    margin-bottom: 34px;
    background: #103766;
}

.whyitem h4 {
    color: #C6F4D6;
    font-size: 21px;
}

.whyitem p {
    font-size: 14px;
    color: #d7ccc8;
}


/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
    background-color: #fff;
    border: 1px solid #dddddd;
    padding: 10px;
    margin-bottom: 20px;
}

/* Product Image */
.product-grid .product-image {
    position: relative;
    overflow: hidden;
}

.product-grid .product-image a.image {
    display: block;
    overflow: hidden;
    position: relative;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
}

.product-image .pic-1 {
    backface-visibility: hidden;
    transition: .5s;
}

.product-grid:hover .product-image .pic-1 {
    opacity: 1;
}

.product-image .pic-2 {
    width: 100%;
    height: 100%;
    transform: translateX(-120%);
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s;
    display: none;
}

.product-grid:hover .product-image .pic-2 {
    transform: translateX(0);
}

/* Product Labels & Icons */
.product-grid .product-sale-label {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 0 5px;
    transform: translateX(-60px);
    position: absolute;
    top: 10px;
    left: 10px;
    transition: .5s ease-in-out;
}

.product-grid:hover .product-sale-label {
    transform: translateX(0);
}

.product-grid .product-like-icon {
    color: #333333;
    font-size: 18px;
    line-height: 18px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    transition: .3s;
}

.product-grid:hover .product-like-icon:hover {
    color: #FF0000;
}

/* Product Button Group */
.product-grid .product-button-group {
    font-size: 0;
    width: 100%;
    opacity: 1;
    text-align: center;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    bottom: 20px;
    transition: .3s ease-out;
}

.product-grid:hover .product-button-group {
    opacity: 1;
}

.product-grid .product-button-group a {
    color: #fff;
    background: #103766;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 43px;
    height: 45px;
    width: 40px;
    position: relative;
    display: inline-block;
    transition: .3s;
}

.product-grid .product-button-group a i {
    line-height: inherit;
}

.product-grid .product-button-group a:before {
    content: "";
    background: #288cfa;
    width: 0;
    height: 100%;
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    transition: .4s ease-in-out;
    z-index: -1;
}

.product-grid .product-button-group a:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}

.product-grid .product-button-group a:hover {
    color: #fff;
}

.product-grid .product-button-group a.add-to-cart {
    width: calc(100% - 87.5px);
    margin: 0 3px;
    transform: translateY(100px);
}

.product-grid .product-button-group a:first-child {
    transform: translateX(-45px);
}

.product-grid .product-button-group a:nth-child(3) {
    transform: translateX(45px);
}

.product-grid:hover .product-button-group a.add-to-cart {
    transform: translateY(0);
}

.product-grid:hover .product-button-group a {
    transform: translate(0);
}

/* Product Content */
.product-grid .product-content {
    padding: 12px;
    position: relative;
    -ms-transform: translateX(-50%);
    background: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    text-align: left;
}

.product-grid .title {
    font-size: 22px;
    text-transform: capitalize;
    margin: 0 0 5px;
    text-align: center;
}

.product-grid .title a {
    color: #103766;
    transition: .5s;
    font-family: "Bebas Neue", sans-serif;
}

.product-grid .title a:hover {
    color: #288cfa;
}

.product-grid .price {
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    margin: 0 2px;
}

.product-grid .price span {
    color: #999;
    text-decoration: line-through;
}

/* Product Ratings */
.product-rating .fa.fa-star.active {
    color: #2E865F;
}

/* Product Infos */
.infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

/* Add to Cart */
.add-to-cart {
    display: block;
    margin-top: 10px;
    height: 40px;
    color: #C6F4D6;
    line-height: 38px;
    font-size: 14px;
    padding: 0 10px;
    background: #103766;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.add-to-cart:hover {
    color: #fff;
    text-decoration: none;
}


/* ============================================================
   CALL TO ACTION SECTION
   ============================================================ */
.callto {
    background: url(../images/front-view-person-holding-money.jpg) center left / cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.callto:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #103766, transparent);
    z-index: -1;
}

.callto h2 {
    color: #fff;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testbox {
    background: #F5F5F5;
    padding: 45px;
}

.testbox p {
    font-size: 17px;
    color: #333333;
    margin-bottom: 0;
}

.testbox .testimg img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testcon {
    padding-top: 20px;
}

.testcon h5,
.testcon h6 {
    color: #333333;
}


/* ============================================================
   FOOTER — REDESIGNED
   Add this to your style-recolored.css, replacing the old
   FOOTER section entirely.
   ============================================================ */

footer {
    background: #103766;
    color: #fff;
    padding: 0;
}

footer *,
footer p,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer span,
footer li,
footer a,
footer label {
    color: #fff;
}

/* ── Main grid area ── */
.footer-main {
    padding: 60px 40px 40px;
    border-bottom: 1px solid #1e4f8a;
}

.footer-main .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.footer-col {
    margin-bottom: 30px;
    flex: 1 1 0%;
    min-width: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 0 40px !important;
}

.footer-col:first-child {
    padding-left: 0 !important;
}

.footer-col:last-child {
    border-right: none;
    padding-right: 0 !important;
}

/* ── Brand column ── */
.footer-logo {
    width: 160px;
    margin-bottom: 14px;
    display: block;
}

.footer-tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff !important;
    margin-bottom: 12px;
    opacity: 0.85;
}

.footer-about {
    font-size: 13px;
    line-height: 1.7;
    color: #fff !important;
    margin-bottom: 16px;
}

.footer-learn-link {
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    border-bottom: 1px solid #C6F4D6;
    padding-bottom: 2px;
    transition: color .3s, border-color .3s;
    display: inline-block;
}

.footer-learn-link:hover {
    color: #fff !important;
    border-color: #fff;
}

/* ── Column headings ── */
.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff !important;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}

/* ── Nav links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 13px;
    color: #fff !important;
    text-decoration: none;
    transition: color .3s, padding-left .3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fff !important;
    padding-left: 6px;
    opacity: 1;
}

.footer-explore-link {
    font-size: 12px !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 1px dashed #C6F4D6;
    padding-bottom: 1px;
    margin-top: 4px;
    display: inline-block;
}

.footer-explore-link:hover {
    color: #fff !important;
    border-color: #fff;
    padding-left: 0 !important;
}

/* ── Contact list ── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #fff !important;
}

.footer-contact-icon {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact li a {
    color: #fff !important;
    text-decoration: none;
    transition: color .3s;
    word-break: break-all;
}

.footer-contact li a:hover {
    color: #fff !important;
}

/* ── Social buttons ── */
.footer-social-heading {
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1e4f8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff !important;
    text-decoration: none;
    transition: background .3s, transform .2s;
    border: 1px solid #288cfa;
}

.footer-social-btn:hover {
    background: #288cfa;
    transform: translateY(-3px);
    color: #fff !important;
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 20px 40px;
    background: #0a2545;
}

.footer-copy {
    font-size: 13px;
    margin-bottom: 4px;
    color: #fff !important;
}

.footer-disclaimer {
    font-size: 11px;
    color: #7a9bbf !important;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-bottom .col-12 {
        text-align: center;
    }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contbox {
    margin-bottom: 40px;
    border-bottom: 1px solid #333333;
}

.coninfo {
    padding: 40px 20px;
    background: #d7ccc8;
}

.conform {
    padding: 40px 20px;
}

.conform input {
    border: 1px solid #333333;
    border-radius: 0;
    height: 50px;
}

.conform textarea {
    border: 1px solid #333333;
    border-radius: 0;
}


/* ============================================================
   INNER BANNER (INNER PAGES)
   ============================================================ */
.inner-banner {
    position: relative;
    background-position: center right;
    background-size: cover;
    background-attachment: fixed;
}

.inner-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#071e38), to(#103766a0));
    background-image: linear-gradient(to right, #071e38, #103766a0);
}

.inner-banner .inner-title {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}

.inner-banner .inner-title h1 {
    font-size: 47px;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.inner-banner .inner-title ul li {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    position: relative;
    font-weight: 500;
    margin: 0 5px;
}

.inner-banner .inner-title ul li a {
    color: #C6F4D6;
    transition: .3s;
}

.inner-banner ul {
    text-align: center;
}

.inner-bg2 {
    background-image: url(../images/front-view-person-holding-money.jpg);
}


/* ============================================================
   BLOG
   ============================================================ */
.blogbox img {
    width: 100%;
    margin-bottom: 20px;
    height: 400px;
    object-fit: cover;
}

.blogbox h3 a {
    font-family: "Bebas Neue", sans-serif;
    color: #103766;
}


/* ============================================================
   PRODUCT DETAIL — QUANTITY SELECTOR
   ============================================================ */
.quantity {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.quantity input {
    width: 60px;
    height: 40px;
    line-height: 1.65;
    display: block;
    padding: 0;
    margin: 0 5px;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.quantity-nav {
    display: flex;
    flex-wrap: nowrap;
    margin-right: 20px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    color: #333333;
    font-size: 13px;
    line-height: 1.7;
    display: block;
    user-select: none;
    text-align: center;
}

.quantity-button.quantity-down,
.quantity-button.quantity-up {
    height: 40px;
    width: 40px;
    line-height: 37px;
    font-size: 30px;
    color: #333333;
    border: 1px solid #333333;
    font-weight: 100;
}

.detail-btns {
    margin-left: 0;
    margin-top: 30px;
}

#account-panel .nav-link i,
.detail-btns a i,
.detail-btns a svg {
    margin-right: 5px;
}

.select-box {
    padding: 6px 20px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    height: 50px;
}


/* ============================================================
   PRODUCT DETAIL — TABS
   ============================================================ */
.tab {
    cursor: pointer;
    padding: 10px 20px;
    margin: 0;
    background: var(--main-color);
    display: inline-block;
    color: #fff;
    border-radius: 10px 10px 0 0 !important;
}

.panels {
    width: 100%;
    background: #F5F5F5;
    border-radius: 0 10px 10px !important;
    overflow: hidden;
    padding: 20px;
}

.panels p {
    font-weight: 300;
}

.panel {
    display: none;
    animation: .8s fadein;
}

.panel.panel-default {
    display: block;
    margin-top: 50px;
}

.panel-default > .panel-heading {
    color: #333333;
    background: 0 0;
    border: none;
}

.panel-title {
    font-size: 1.5em;
    font-weight: 700;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Tab radio inputs (hidden) */
.radio {
    display: none;
}

#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel {
    display: block;
}

#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab {
    background: var(--main-color-two);
    color: #fff;
    border-top: 3px solid #103766;
}

.nav-tabs li a {
    color: #666666;
    padding: 10px 20px;
    background: #dddddd;
}

.nav-tabs li a.active {
    background: #103766;
    color: #fff;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}


/* ============================================================
   PRODUCT DETAIL — REVIEWS
   ============================================================ */
h4.review-heading {
    font-weight: 800;
}

.review-heading {
    margin-top: 30px;
}

.review-comment {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 20px;
}

.review-form .form-control {
    margin-bottom: 20px;
}

.review-list li {
    border-top: 1px solid #dddddd;
    margin: 10px 0 0;
    padding: 10px 0 0;
}

.review-list li p {
    margin-bottom: 5px;
    display: block;
}

.r-star {
    display: inline-block !important;
}

.r-date,
.review-date {
    float: right;
}

.r-star,
.review-list li .r-date {
    display: inline-block;
}

p.r-name {
    font-weight: 700;
}

/* Star Rating */
.star-rating__wrap {
    display: inline-block;
    font-size: 1rem;
    margin-left: 10px;
}

.star-rating__wrap:after {
    content: "";
    display: table;
    clear: both;
}

.star-rating__wrap .fa.fa-star {
    float: right;
    padding-left: 4px;
    cursor: pointer;
    color: #666666;
    font-size: 20px;
}

.fa.fa-star:last-child {
    padding-left: 0;
}

.star-rating__input {
    display: none;
}

.star-rating__input:checked ~ .fa.fa-star:before,
.star-rating__wrap .fa.fa-star:hover:before,
.star-rating__wrap .fa.fa-star:hover ~ .fa.fa-star:before {
    color: #2E865F;
}


/* ============================================================
   CART
   ============================================================ */
.cart-table img {
    width: 100px;
}

.cart-table td,
.cart-table th {
    vertical-align: middle !important;
}

.table > :not(caption) > * > * {
    padding: 1.5rem .5rem;
    vertical-align: middle;
}

.table td,
.table th {
    vertical-align: middle;
}

.coupon-form {
    border: 1px solid #dddddd;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
}

.coupon-form input {
    height: 40px;
    width: calc(100% - 200px);
    padding: 10px;
    border: 1px solid transparent;
}

.coupon-form button {
    cursor: pointer;
    color: #fff;
    padding: 10px 15px;
    width: 200px;
    line-height: 18px;
    height: 40px;
}

.coupon-form button i,
.coupon-form button svg {
    margin-right: 7px;
}

.coupon-form button:hover {
    opacity: .8;
}

.total-p.bold {
    margin-bottom: 10px;
    font-size: 20px;
}


/* ============================================================
   WISHLIST
   ============================================================ */
.wishlist-table tr td {
    vertical-align: middle;
}

.wishlist-table td button {
    background: 0 0;
    border: none;
    cursor: pointer;
}

.wishlist-table td button i,
.wishlist-table td button svg {
    margin-right: 10px;
}


/* ============================================================
   CHECKOUT
   ============================================================ */
.chk-form .form-control {
    margin-bottom: 0;
    border-radius: 0;
}

.chk-heading {
    text-transform: uppercase;
    background: var(--main-color);
    color: #333333;
    padding: 10px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
}

/* Show/hide password */
.show-pass {
    display: none;
}

.chk-show:checked ~ .show-pass {
    display: block;
}

.show-password label {
    width: calc(100% - 25px);
    color: #666666;
}

.show-password input[type=checkbox] {
    margin-right: 10px;
    width: 15px;
    float: left;
    margin-top: 5px;
}

/* Diff address toggle */
.diff-add {
    display: none;
}

.chk-show:checked ~ .diff-add {
    display: block;
}

/* Payment options */
.payment-option {
    margin-top: 20px;
}

.payment-option li .crd .p-add {
    padding: 20px;
    background: #fff;
    display: none;
}

.payment-option li [type=radio]:checked ~ .p-add {
    display: block;
}

.payment-option [type=radio]:checked,
.payment-option [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.payment-option [type=radio]:checked + label,
.payment-option [type=radio]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666666;
    font-weight: 600;
}

.payment-option [type=radio]:checked + label:before,
.payment-option [type=radio]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    border: 1px solid #dddddd;
    border-radius: 100%;
    background: #fff;
}

.payment-option [type=radio]:checked + label:after,
.payment-option [type=radio]:not(:checked) + label:after {
    content: '';
    width: 11px;
    height: 11px;
    background: #2E865F;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: .2s;
    transition: .2s;
}

.payment-option [type=radio]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.payment-option [type=radio]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.order-detail-box {
    padding: 15px;
}

.order-detail-table {
    padding: 10px;
    box-sizing: border-box;
}


/* ============================================================
   ACCOUNT / PROFILE
   ============================================================ */
#account-panel .nav-item {
    float: none;
}

#account-panel .nav-link {
    background: #288cfa;
    color: #fff;
    margin-bottom: 10px;
    display: block;
    float: none;
}

.middiv .prof,
.proo {
    background: #F5F5F5;
}

.forgot-p {
    display: block;
    margin-bottom: 20px;
}


/* ============================================================
   VALIDATION / FORMS
   ============================================================ */
p.error.invalid-feedback {
    font-size: 12px;
    color: #FF0000;
}

input.form-control.is-invalid {
    border-color: #FF0000;
}


/* ============================================================
   MISC / UTILITY
   ============================================================ */
.link {
    color: #8d6e63;
    display: inline-block;
    margin-top: 10px;
}

.img-fluid,
.blogbox img,
.mainlist ul li img,
.panels {
    width: 100%;
}

.mainlist ul {
    display: flex;
    list-style: none;
}

.mainlist ul li {
    width: 17%;
    margin-right: 10px;
}

.mainlist1 ul {
    display: flex;
    list-style: none;
}

.mainlist1 ul li {
    width: 33%;
    margin-right: 10px;
}

.mainlist1 ul li img {
    border-radius: 50%;
    height: 92px;
    object-fit: cover;
    width: 92px;
}

.category ul {
    display: flex;
    margin-bottom: 20px;
}

select#v-price {
    margin-left: 20px;
}


/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .cart-table td,
    .cart-table th {
        display: flex;
        flex-wrap: wrap;
        text-align: left;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table td:before {
        content: attr(data-th) " : ";
        font-weight: 700;
        width: 97px;
        display: inline-block;
        color: #333333;
    }

    .tp-parallax-wrap {
        display: none !important;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ============================================================ */
@media only screen and (max-width: 600px) {
    .leftbar ul {
        text-align: center;
    }

    .rightbar {
        justify-content: center;
        gap: 10px;
    }

    .rightbar li {
        margin-left: 0;
    }

    .logo img {
        width: 175px;
        margin: auto;
        display: block;
    }

    .add {
        display: none;
    }

    .carousel-inner img {
        height: 400px;
    }

    .slider-data {
        padding: 0;
    }

    .whybox {
        padding: 20px;
    }

    .mainlist1 ul li {
        width: 30%;
        margin-right: 10px;
    }

    .mainlist1 ul {
        justify-content: center;
    }

    .about img {
        width: 100%;
    }

    .video {
        position: absolute;
        width: 199px;
        height: 200px;
        right: 23px;
        bottom: 8px;
        object-fit: cover;
        background: #fff;
        padding: 9px;
    }
}

/* ============================================================
   FOOTER — MOBILE RESPONSIVE (max-width: 991px)
   ============================================================ */
@media (max-width: 991px) {
    .footer-main {
        padding: 40px 20px 20px;
    }

    .footer-main .row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    /* Brand — full width, centered */
    .footer-col:nth-child(1) {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 0 0 30px 0 !important;
        text-align: center;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 20px;
    }

    .footer-col:nth-child(1) .footer-logo {
        margin: 0 auto 14px;
    }

    .footer-col:nth-child(1) .footer-heading {
        margin: 0 auto 18px;
    }

    /* Company + Product Categories — side by side */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        flex: 0 0 50% !important;
        width: 50% !important;
        padding: 0 15px 30px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-col:nth-child(3) {
        padding: 0 0 30px 15px !important;
    }

    /* Policies + Contact Info — side by side */
    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        flex: 0 0 50% !important;
        width: 50% !important;
        padding: 0 15px 0 0 !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .footer-col:nth-child(5) {
        padding: 0 0 0 15px !important;
    }

    .footer-heading {
        width: 100%;
    }

    .footer-contact li {
        word-break: break-word;
    }

    .footer-bottom {
        padding: 20px;
        text-align: center;
    }
}

