/* =========================
   GLOBAL VARIABLES + BASE
   ========================= */
   :root{
    --primary-red: #b30000;
    --light-bg: #fdfaf0;
    --border-color: #e6e6e6;
  
    --text-dark: #111;
    --text: #333;
  }
  
  *,
  *::before,
  *::after{
    box-sizing: border-box;
  }
  
  body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text);
  }
  
  /* =========================
     TOP BAR
     ========================= */
  .top-bar{
    background: linear-gradient(to right, #f5f5f5 50%, var(--primary-red) 50%);
    border-bottom: 1px solid #d5c0c0;
  }
  
  .top-bar-left{
    padding: 15px 0;
    font-size: 16px;
    color: var(--text);
  }
  
  .top-bar-left i{
    color: var(--text-dark);
    font-size: 16px;
  }
  
  /* Right red clipped section */
  .top-bar-red-section{
    background: var(--primary-red);
    color: #fff;
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%);
    padding: 10px 0;
  }
  
  .topbar-title{
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  
  .topbar-social a{
    width: 32px;
    height: 32px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
  
    color: #fff;
    background: rgba(255,255,255,0.15);
    transition: 0.3s;
  }
  
  .topbar-social a:hover{
    background: #fff;
    color: var(--primary-red);
  }
  
  /* =========================
     MAIN HEADER / NAV
     ========================= */
  .main-header{
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
  }
  
  .navbar{
    padding: 15px 0;
  }
  
  .navbar-brand{
    font-size: 52px;
    letter-spacing: 1px;
  }
  
  .nav-link{
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px !important;
    color: var(--text) !important;
    transition: 0.2s;
  }
  
  .nav-link:hover,
  .nav-link.active{
    color: var(--primary-red) !important;
  }
  
  /* Icons */
  .header-icons{
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-icons a{
    color: var(--text-dark);
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .header-icons a:hover{
    color: var(--primary-red);
  }
  
  /* Cart badge */
  .cart-wrapper{
    position: relative;
    display: inline-block;
  }
  
  .cart-badge{
    position: absolute;
    top: -5px;
    right: -8px;
  
    width: 18px;
    height: 18px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-size: 10px;
    font-weight: 700;
  
    color: #fff;
    background: var(--primary-red);
    border: 2px solid #fff;
    border-radius: 50%;
  }
  
  /* =========================
     MEGA MENU
     ========================= */
  .mega-head-title{
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .mega-head-sub{
    font-size: 16px;
    color: #777;
    margin-top: 4px;
  }
  
  .mega-viewall{
    font-size: 16px;
    font-weight: 700;
    color: #0c0a0a;
    text-decoration: none;
  }
  
  .mega-body{
    padding-top: 16px;
  }
  
  /* LEFT */
  .mega-left{
    background: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px;
  }
  
  .mega-cat{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  
    padding: 12px;
    border-radius: 12px;
  
    text-decoration: none;
    color: #222;
    font-weight: 700;
  
    border: 1px solid transparent;
    transition: 0.2s;
  }
  
  .mega-cat-left{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .mega-cat-arrow{
    font-size: 16px;
    color: #999;
    transition: 0.2s;
  }
  
  .mega-cat:hover{
    background: #fff;
    border-color: #eee;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  }
  .newsletter-form {
    display: flex;
    align-items: stretch;
    width: 100%;
   
    margin: 0 auto;
}

.newsletter-form p {
    margin: 0;
    display: contents;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e11b22;
    outline: none;
    border-radius: 6px 0 0 6px;
    margin: 0 !important;
}

.newsletter-btn {
    padding: 12px 22px;
    border: none;
    background: #c00000;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 0 6px 6px 0;
    margin: 0 !important;
}

/* MOBILE */
@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 6px;
        margin-bottom: 10px !important;
    }

    .newsletter-btn {
        border-radius: 6px;
        width: 100%;
    }
}

  .mega-cat:hover .mega-cat-arrow{
    color: var(--primary-red);
    transform: translateX(2px);
  }
  
  .mega-cat.active{
    background: #fff;
    border-color: rgba(179,0,0,0.18);
    box-shadow: 0 12px 22px rgba(179,0,0,0.10);
    color: var(--primary-red);
    font-size: 16px;
    padding: 10px;
  }
  
  /* RIGHT */
  .mega-right{
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  
  .mega-products-panel{
    display: none;
  }
  
  .mega-products-panel.active{
    display: block;
  }
  
  .mega-products-panel h6{
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
  }
  
  .mega-simple-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .mega-simple-list a{
    padding: 4px 0;
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
  }
  
  .mega-simple-list a:hover{
    color: var(--primary-red);
    padding-left: 10px; /* hover pe "shift" */
  }
  
  /* Mobile mega head */
  .mega-mobile-head{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
  }
  
  .mega-back-btn{
    border: 0;
    background: transparent;
    padding: 8px 10px;
    font-weight: 700;
    cursor: pointer;
    display: none;
  }
  
  .mega-mobile-title{
    font-weight: 700;
    font-size: 16px;
  }
  
  /* =========================
     FOOTER
     ========================= */
  .kikx-footer{
    background: #f5f3f0;
    color: var(--text-dark);
  }
  
  .footer-brand{
    font-size: 52px;
    font-weight: 700;
    color: #d40000;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
  }
  
  .footer-offer{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  
  .footer-text{
    max-width: 330px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
  }
  
  .footer-divider{
    width: 2px;
    height: 100%;
    background: rgba(0,0,0,0.35);
  }
  
  .footer-title{
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  
  .footer-links{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-links li{
    margin: 6px 0;
  }
  
  .footer-links a{
    text-decoration: none;
    color: #222;
    font-size: 16px;
  }
  
  .footer-links a:hover{
    color: #d40000;
  }
  
  .footer-subtitle{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .footer-social{
    display: flex;
    gap: 10px;
  }
  
  .footer-social a{
    width: 36px;
    height: 36px;
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 40px;
    text-decoration: none;
  
    background: var(--text-dark);
    color: #fff;
    transition: 0.2s;
  }
  
  .footer-social a:hover{
    background: #d40000;
  }
  
  .footer-contact{
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-contact li{
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 14px;
    margin: 14px 0;
    align-items: start;
  }
  
  .footer-contact i{
    font-size: 18px;
    margin-top: 3px;
  }
  
  .footer-contact a{
    text-decoration: none;
    color: #222;
    font-size: 16px;
  }
  
  .footer-contact a:hover{
    color: #d40000;
  }
  
  .footer-bottom{
    text-align: center;
  }
  
  .footer-line{
    height: 2px;
    background: rgba(0,0,0,0.55);
    max-width: 900px;
    margin: 0 auto 18px;
  }
  
  .footer-copy{
    margin: 0;
    font-size: 16px;
    color: #222;
  }
  
  /* Footer responsive */
  @media (max-width: 991px){
    .footer-brand{ font-size: 44px; }
    .footer-offer{ font-size: 22px; }
    .footer-title{ font-size: 20px; }
    .footer-divider{ display: none; }
    .footer-text{ max-width: 100%; }
  }
  
  /* =========================
     HERO CAROUSEL
     ========================= */
  .hero-carousel{
    position: relative;
  }
  
  .hero-slide{
    position: relative;
    min-height: 420px;
    height: clamp(420px, 52vh, 560px);
    display: flex;
    align-items: center;
  }
  
  .hero-media{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  
  .hero-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .hero-overlay{
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 90% at 70% 40%, rgba(0,0,0,0.20), rgba(0,0,0,0.85));
  }
  
  .hero-content{
    position: relative;
    z-index: 2;
    padding: 40px 16px;
  }
  
  .hero-title{
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .hero-title .t-white{
    display: block;
    font-size: clamp(46px, 6vw, 78px);
    color: #fff;
  }
  
  .hero-title .t-yellow{
    display: block;
    font-size: clamp(28px, 4.2vw, 52px);
    color: #ffc400;
    margin-top: 10px;
  }
  
  .hero-strip{
    display: inline-block;
    max-width: 520px;
  
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(0,0,0,0.35);
  }
  
  /* CTA round button */
  .hero-cta{
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
  
    width: 44px;
    height: 44px;
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    border: 0;
    cursor: pointer;
  
    background: #d80000;
    color: #fff;
  
    z-index: 5;
    box-shadow: 0 10px 22px rgba(0,0,0,0.30);
  }
  
  /* Owl dots */
  .hero-carousel .owl-dots{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
  
    display: flex !important;
    justify-content: center;
    gap: 8px;
  
    z-index: 6;
  }
  
  .hero-carousel .owl-dot span{
    width: 8px !important;
    height: 8px !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.35) !important;
  }
  
  .hero-carousel .owl-dot.active span{
    background: #fff !important;
  }
  
  @media (max-width: 767px){
    .hero-slide{ height: 300px; min-height: 300px; }
    .hero-strip{ max-width: 100%; font-size: 16px; }
    .hero-cta{ display: none; }
  }
  
  /* =========================
     CATEGORY CAROUSEL
     ========================= */
  .cat-sec{
    padding: 50px 0;
  }
  
  .cat-head h2{
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 22px;
  }
  
  .cat-carousel-wrap{
    position: relative;
  }
  
  .cat-next-btn{
    position: absolute;
    right: -12px;
    top: 120px;
  
    width: 44px;
    height: 44px;
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    border: 3px solid #fff;
  
    background: #d40000;
    color: #fff;
  
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  }
  
  .category-carousel .owl-stage{
    display: flex;
  }
  
  .category-carousel .owl-item{
    padding-right: 26px;
  }
  
  .category-carousel .owl-item:last-child{
    padding-right: 0;
  }
  
  .cat-item{
    width: 100%;
  }
  
  .cat-img img{
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50px 0 0 0;
  }
  
  .cat-title{
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
  
    text-decoration: none;
    color: #0c1030;
  
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  
  .cat-title-arrow{
    font-size: 34px;
    line-height: 1;
    transform: translateY(-1px);
  }
  
  .category-carousel .owl-dots{
    display: none;
  }
  
  @media (max-width: 991px){
    .cat-next-btn{ right: 6px; top: 105px; }
    .cat-title{ font-size: 20px; }
    .cat-title-arrow{ font-size: 30px; }
  }
  
  @media (max-width: 767px){
    .cat-head h2{ font-size: 26px; }
    .cat-next-btn{ right: 8px; top: 95px; width: 42px; height: 42px; }
    .category-carousel .owl-item{ padding-right: 0; }
  }
  
  /* =========================
     HERO TECH SECTION
     ========================= */
  .hero-tech{
    background: #f5f5f5;
  }
  
  .hero-desc{
    max-width: 520px;
    color: #4b4b4b;
    font-size: 15.5px;
    line-height: 1.6;
  }
  
  .hero-btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
  
    padding: 12px 22px;
    border-radius: 6px;
    border: 0;
  
    background: #b01212;
    color: #fff;
  
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
  }
  
  .hero-btn:hover{
    background: #8f0f0f;
    color: #fff;
    transform: translateY(-1px);
  }
  
  .hero-arrow{
    font-size: 20px;
    line-height: 1;
  }
  
  @media (max-width: 991.98px){
    .hero-desc{ max-width: 100%; }
    .hero-img{ max-height: 240px; }
  }
  
  /* =========================
     HOT DEALS
     ========================= */
  .hot-product{
    background: #fff;
  }
  
  .hot-title{
    font-size: 34px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
  }
  
  .view-collection{
    display: inline-flex;
    align-items: center;
    gap: 6px;
  
    font-size: 16px;
    font-weight: 600;
  
    color: #b11212;
    text-decoration: none;
  }
  
  .view-collection:hover{
    text-decoration: underline;
  }
  
  .hot-item{
    padding: 20px 6px;
  }
  
  .hot-img img{
    width: 100%;
    display: block;
    border-radius: 50px 0 0 0;
  }
  
  .hot-info{
    padding-top: 10px;
  }
  
  .p-name{
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
  }
  
  .p-price{
    font-size: 16px;
    margin: 0 0 6px;
  }
  
  .p-price .new{
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .p-price .old{
    margin-left: 6px;
    font-size: 16px;
    color: #b11212;
    text-decoration: line-through;
  }
  
  .add-cart-btn{
    padding: 3px 10px;
    border-radius: 4px;
  
    border: 1px solid #b11212;
    background: #fff;
    color: #b11212;
  
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }
  
  .add-cart-btn:hover{
    background: #b11212;
    color: #fff;
  }
  
  /* Owl nav (optional) */
  .hot-deals-carousel .owl-nav button{
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
  }
  
  .hot-deals-carousel .owl-nav .owl-prev{ left: -10px; }
  .hot-deals-carousel .owl-nav .owl-next{ right: -10px; }
  
  .hot-deals-carousel .owl-nav button span{
    font-size: 38px;
    line-height: 1;
  }
  
  @media (max-width: 991.98px){
    .hot-title{ font-size: 28px; }
  }
  
  /* One next button (section relative) */
  .hot-deals-holder{
    position: relative;
  }
  
  .hot-deals-next{
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
  
    width: 42px;
    height: 42px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 50%;
    border: 3px solid #fff;
  
    background: #b11212;
    color: #fff;
  
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
  
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: 0.2s ease;
  }
  
  .hot-deals-next:hover{
    background: #8f0f0f;
    transform: translateY(-50%) scale(1.05);
  }
  
  .hot-deals-next i{
    pointer-events: none;
  }
  
  @media (max-width: 991.98px){
    .hot-deals-next{ right: -10px; width: 38px; height: 38px; }
  }
  
  @media (max-width: 575.98px){
    .hot-deals-next{ right: -6px; width: 36px; height: 36px; }
  }
  
  /* =========================
     LOCATION SERVICES
     ========================= */
  .loc-serve{
    background: linear-gradient(to bottom, #000 0%, #000 55%, #fff 55%);
    overflow: hidden;
  }
  
  .loc-title{
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 30px;
  }
  
  .loc-card{
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
  }
  
  .loc-card img{
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: 0.25s ease;
  }
  
  .loc-card::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  }
  
  .loc-name{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 2;
  
    text-align: center;
    color: #fff;
  
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  }
  
  .loc-card:hover img{
    transform: scale(1.08);
  }
  
  .loc-carousel .owl-stage-outer{
    padding: 8px 0;
  }
  
  .loc-carousel .owl-item{
    padding: 0 10px;
  }
  
  @media (max-width: 575.98px){
    .loc-title{ font-size: 22px; }
    .loc-card{ border-radius: 16px; }
  }
  
  /* =========================
     NEWSLETTER
     ========================= */
  .newsletter-sec{
    background: #f4f1f1;
    padding: 40px 0;
  }
  
  .newsletter-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  
  .newsletter-text{
    max-width: 620px;
    margin: 0 auto 20px;
  
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }
  
  .newsletter-form{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
  }
  
  .newsletter-input{
    width: 300px;
    max-width: 100%;
    height: 42px;
    padding: 0 12px;
  
    font-size: 14px;
  
    border: 1px solid #c70000;
    border-right: 0;
  
    border-radius: 4px 0 0 4px;
    outline: none;
  }
  
  .newsletter-btn{
    height: 42px;
    padding: 0 18px;
  
    background: #b11212;
    color: #fff;
  
    font-size: 13px;
    font-weight: 700;
  
    border: 1px solid #b11212;
    border-radius: 0 4px 4px 0;
  
    cursor: pointer;
  }
  
  .newsletter-btn:hover{
    background: #8f0f0f;
  }
  
  @media (max-width: 575.98px){
    .newsletter-form{
      flex-direction: column;
      gap: 10px;
    }
  
    .newsletter-input,
    .newsletter-btn{
      width: 100%;
      border-radius: 4px;
      border-right: 1px solid #c70000;
    }
  
    .newsletter-input{
      border-right: 1px solid #c70000;
    }
  }
  
  /* =========================
     FEATURE BOX
     ========================= */
  .feature-box{
    background: #f4f1f1;
    padding: 24px 20px;
    border-radius: 6px;
  
    display: flex;
    align-items: center;
    gap: 14px;
  
    height: 100%;
    transition: 0.2s ease;
  }
  
  .feature-box:hover{
    transform: translateY(-2px);
  }
  
  .feature-text h6{
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
  }
  
  .feature-text p{
    margin: 2px 0 0;
    font-size: 16px;
    color: #666;
  }
  
  @media (max-width: 575.98px){
    .feature-box{ padding: 14px; }
    .feature-icon{ width: 34px; height: 34px; }
  }
  
  .breadcrumb-item a {
    color: #0d6efd;
    font-weight: 500;
  }
  
  .breadcrumb-item.active {
    color: #555;
    font-weight: 600;
  }
  .filter-box {
    background: #fff;
  }
  
  .filter-list li {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .filter-list input {
    margin-right: 6px;
  }

  .filter-panel {
    background: #fff;
  }
  .product-box {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
  }
 
  /*********prodcuct details********/
  .thumb-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .thumb-img.active,
  .thumb-img:hover {
    border-color: #dc3545;
  }
  
  .main-img-box img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .price {
    color: #dc3545;
    font-weight: 600;
  }
  
  .price del {
    color: #888;
    margin-left: 8px;
  }
  
  .off {
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 8px;
  }
  
  .desc {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .variant-color span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
  }
  .bg-light {
    --bs-bg-opacity: 1;
    background-color: rgb(254 254 255) !important;
}
  
  .trust-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product_meta {
    margin-top: 30px;
}
button.single_add_to_cart_button.button.alt {
    padding: 14px;
    width: 100%;
    margin: 18px 0px;
    font-size: 19px;
}
  .trust-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 10px;
    font-size: 18px;
    background: #f8f9fa;
}
  
  .trust-item small {
    display: block;
    color: #666;
  }
  
  .spec-list {
    padding-left: 0;
    list-style: none;
  }
  
  .spec-list li {
    margin-bottom: 6px;
  }
  .woocommerce ul.products li.product .price del {
    color: #b11212!important;
    font-size: 16px;
    opacity: .7;
    display: inline-block;
}
.woocommerce ul.products li.product .price ins {
    background: 0 0;
    font-weight: 700;
    color: black!important;
    font-size: 18px;
    display: inline-block;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #dc3545!important;
    font-size: 1.25em;
}
 section.related.products h2 {
    padding-bottom: 16px;
} 
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    padding: .5em 0;
    margin: 0;
    color: black;
    font-size: 1em;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
    background-color: #b11212!important;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
.woocommerce span.onsale {
    min-height: 3.236em;
    min-width: 3.236em;
    padding: .202em;
    font-size: 1em;
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 3.236;
    top: -.5em;
    left: -.5em;
    margin: 0;
    border-radius: 100%;
    background-color: #b11212!important;
    color: #fff;
    font-size: .857em;
    z-index: 9;
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    padding: 10px!important;
}
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name
 {
    display: block;
    color:black;
    font-size: 16px!important;
 }
 .wc-block-components-product-price {
    display: block;
    font-size: 16px!important;
}
.wc-block-components-product-metadata__description {
    font-size: 16px;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
    background: transparent;
    border: 1px solid;
    border-radius: 5px;
    padding: 3px;
    text-decoration:none;
 
}
.wc-block-components-totals-coupon .wc-block-components-panel__button {
    margin-top: 0;
    font-size: 16px;
    padding-top: 0;
}
a.wc-block-components-checkout-return-to-cart-button {
    background: #b11212;
    color: white;
    padding: 7px 30px;
}
a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
    background: #b30000;
    color: white;
    text-decoration: none;
}
a {
    color: rgb(220 53 69);
    text-decoration: underline;
}

li.woocommerce-MyAccount-navigation-link{
    background: #dcd7e13b;
    margin: 10px 0px!important;
    color: black;
    list-style: none!important;
    padding: 12px!important;
    text-decoration: none!important;
}
li.woocommerce-MyAccount-navigation-link a{
     color: black;
    list-style: none!important;
     text-decoration: none!important;
}
li.woocommerce-MyAccount-navigation-link a:hover{
     color: red;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 68%;
    padding: 10px;
}
a.edit {
    border: 1px solid black;
    padding: 7px 10px;
    text-decoration: none;
    float: left;
    margin: 8px 8px;
}
header.woocommerce-Address-title.title h2 {
    font-size: 25px;
}
.contact-sec {
  background: #f8f9fa;
}

.contact-info {
  background: #111;
  color: #fff;
  padding: 35px;
  border-radius: 12px;
}

.contact-info h4 {
  font-weight: 600;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 22px;
  background: #dc3545;
  padding: 12px;
  border-radius: 50%;
}

.info-item span {
  display: block;
  font-size: 14px;
  opacity: .8;
}

.info-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-form-wrap {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-wrap h4 {
  font-weight: 600;
}

.contact-form-wrap .form-control {
  padding: 12px;
  border-radius: 8px;
}

.contact-btn {
  background: #b11212;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
}

.contact-btn:hover {
  background: #b02a37;
  color: #fff;
}
/*****About us*****/
.about-hero {
  background: #f8f9fa;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-features {
  background: #fff;
}

.about-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: .3s;
}

.about-box i {
  font-size: 32px;
  color: #dc3545;
  margin-bottom: 15px;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


