/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1777536251
Updated: 2026-04-30 08:04:11

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

    .shop-wrapper{
      max-width:calc(100% - (96px * 2));
      margin:0 auto;
      padding:150px 0px;

      display:flex;
      align-items:flex-start;
      gap:50px;
      color:#1A1C1C;
      background-color: #F9F9F9;
    }

    /* ===================================
       SIDEBAR
    =================================== */

    .sidebar{
      width:100%;
      max-width: 25%;
      position:sticky;
      top:20px;
    }

    .filter-group{
      margin-bottom:45px;
    }

    .filter-title{
      font-size:18px;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;
      margin-bottom:18px;
      padding-bottom:12px;
      border-bottom:1px solid #cfcfcf;
    }

    .filter-list{
      list-style:none;
    }

    .filter-list li{
      margin-bottom:20px;
    }

    .filter-list label{
      display:flex;
      align-items:center;
      gap:18px;
      cursor:pointer;

      font-size:21px;
    }

   .filter-list input[type="checkbox"]{
        appearance:none;
        -webkit-appearance:none;

        width:24px;
        height:24px;

        border:1px solid #999;
        background:#fff;

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

        cursor:pointer;
        }

        /* checked state */
        .filter-list input[type="checkbox"]:checked{
        background:#000;
        border-color:#000;
        }

        /* checkmark */
        .filter-list input[type="checkbox"]:checked::before{
        content:"✓";

        color:#fff;

        font-size:9px; /* reduce check size here */
        font-weight:700;
        line-height:1;
        }

    /* ===================================
       PRODUCTS AREA
    =================================== */

    .products-grid{
      flex:1;

      display:flex;
      flex-wrap:wrap;
      gap:40px 36px;
      align-items: flex-start;
    }

    /* ===================================
       PRODUCT CARD
    =================================== */

    .product-card{
      width:calc(33.333% - 24px);
    }

    .product-image{
      position:relative;
      background:#dcdcdc;
      aspect-ratio:1 / 1.12;
      overflow:hidden;
    }

    .badge{
      position:absolute;
      top:16px;
      left:16px;

      background:#000;
      color:#fff;

      padding:8px 18px;

      font-size:14.4px;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;
    }

    .product-content{
      padding:36px;
      background:#fff;
    }

    .product-title{
      font-size:27px !important;
      font-weight:700 !important;
      text-transform:uppercase !important;
      margin-bottom:12px !important;
    }

    .product-subtitle{
      font-size:18px;
      color:#474747;
      text-transform:uppercase;
      margin-bottom:28px;
    }

    .product-footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }

    .price{
      font-size:30px;
      font-weight:800;
    }

    .buy-btn{
      height:48px;
      padding:0 24px;

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

      background:#000;
      color:#E2E2E2;

      font-size:15px;
      font-weight:400;
      letter-spacing:1px;
      text-transform:uppercase;

      transition:0.3s ease;
    }

    .buy-btn:hover{
      background:#222;
    }

    /* ===================================
       PROMO CARD
    =================================== */

    .promo-card{
      width:calc(33.333% - 24px);

      background:#000;
      color:#fff;

      padding:28px;

      display:flex;
      flex-direction:column;
      justify-content:flex-start;
    }

    .promo-card h3{
      font-size:24px;
      line-height:1.2;
      text-transform:uppercase;
      margin-bottom:22px;
      font-weight:700;
    }

    .promo-card p{
      font-size:18px;
      line-height:1.7;
      color:#bdbdbd;
      margin-bottom:34px;
    }

    .promo-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;

      width:max-content;

      padding:16px 24px;

      background:#fff;
      color:#000;

      font-size:15px;
      font-weight:400;
      letter-spacing:1px;
      text-transform:uppercase;
    }

    /* ===================================
       QUOTE BUTTON
    =================================== */

    .quote-wrap{
      width:100%;
      margin-top:10px;
    }

    .quote-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;

      padding:22px 38px;

      background:#000;
      color:#fff;

      font-size:24px;
      font-weight:400;
      text-transform:uppercase;
    }
    .quote-btn:hover{
      background:#222;
    }
    /* ===================================
    1024px to 1366px Optimization
    =================================== */

    @media (min-width:1024px) and (max-width:1365px){

    .shop-wrapper{
        max-width:calc(100% - (40px * 2));
        gap:28px;
        padding:90px 0;
    }

    .sidebar{
        max-width:24%;
    }

    .products-grid{
        gap:24px 20px;
    }

    .filter-group{
        margin-bottom:28px;
    }

    .filter-title{
        font-size:13px;
        margin-bottom:12px;
        padding-bottom:8px;
    }

    .filter-list li{
        margin-bottom:14px;
    }

    .filter-list label{
        font-size:15px;
        gap:12px;
    }

    .filter-list input[type="checkbox"]{
        width:18px;
        height:18px;
    }

    .filter-list input[type="checkbox"]:checked::before{
        font-size:8px;
    }

    .badge{
        top:12px;
        left:12px;
        padding:6px 12px;
        font-size:10px;
    }

    .product-card,
    .promo-card{
        width:calc(33.333% - 14px);
    }

    .product-content{
        padding:22px;
    }

    .product-title{
        font-size:18px;
        margin-bottom:8px;
    }

    .product-subtitle{
        font-size:13px;
        margin-bottom:18px;
    }

    .product-footer{
        gap:8px;
    }

    .price{
        font-size:20px;
    }

    .buy-btn{
        height:38px;
        padding:0 14px;
        font-size:11px;
        letter-spacing:0.5px;
    }

    .promo-card{
        padding:22px;
    }

    .promo-card h3{
        font-size:17px;
        margin-bottom:14px;
    }

    .promo-card p{
        font-size:13px;
        line-height:1.6;
        margin-bottom:20px;
    }

    .promo-btn{
        padding:12px 16px;
        font-size:11px;
    }

    .quote-wrap{
        margin-top:0;
    }

    .quote-btn{
        padding:16px 26px;
        font-size:16px;
    }

    }
    /* ===================================
    1366px to 1600px Optimization
    =================================== */

    @media (min-width:1366px) and (max-width:1600px){

    .shop-wrapper{
        max-width:calc(100% - (70px * 2));
        gap:36px;
        padding:110px 0;
    }

    .products-grid{
        gap:32px 28px;
    }

    .filter-group{
        margin-bottom:36px;
    }

    .filter-title{
        font-size:15px;
        margin-bottom:14px;
        padding-bottom:10px;
    }

    .filter-list li{
        margin-bottom:16px;
    }

    .filter-list label{
        font-size:17px;
        gap:14px;
    }

    .filter-list input[type="checkbox"]{
        width:20px;
        height:20px;
    }

    .badge{
        font-size:11px;
        padding:7px 14px;
    }

    .product-content{
        padding:28px;
    }

    .product-title{
        font-size:22px;
        margin-bottom:10px;
    }

    .product-subtitle{
        font-size:15px;
        margin-bottom:22px;
    }

    .price{
        font-size:24px;
    }

    .buy-btn{
        height:42px;
        padding:0 18px;
        font-size:13px;
    }

    .promo-card{
        padding:24px;
    }

    .promo-card h3{
        font-size:20px;
        margin-bottom:18px;
    }

    .promo-card p{
        font-size:15px;
        margin-bottom:26px;
    }

    .promo-btn{
        padding:14px 18px;
        font-size:13px;
    }

    .quote-btn{
        padding:18px 30px;
        font-size:18px;
    }

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

    @media (max-width:1200px){

      .product-card,
      .promo-card{
        width:calc(50% - 18px);
      }

    }

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

    @media (max-width:991px){

  .shop-wrapper{
    flex-direction:column;
    gap:32px;

    max-width:calc(100% - 40px);
    padding:70px 0;
  }

  .sidebar{
    width:100%;
    max-width:100%;
    min-width:100%;

    position:relative;
    top:auto;
  }

  .filter-group{
    margin-bottom:28px;
  }

  .filter-title{
    font-size:14px;
    margin-bottom:12px;
    padding-bottom:10px;
  }

  .filter-list li{
    margin-bottom:14px;
  }

  .filter-list label{
    font-size:16px;
    gap:12px;
  }

  .filter-list input[type="checkbox"]{
    width:18px;
    height:18px;
  }

  .products-grid{
    width:100%;
    gap:24px 20px;
  }

  .product-card,
  .promo-card{
    width:calc(50% - 10px);
  }

  .badge{
    top:12px;
    left:12px;
    padding:6px 12px;
    font-size:10px;
  }

  .product-content{
    padding:20px;
  }

  .product-title{
    font-size:18px;
    margin-bottom:8px;
  }

  .product-subtitle{
    font-size:13px;
    margin-bottom:16px;
  }

  .price{
    font-size:20px;
  }

  .buy-btn{
    height:40px;
    padding:0 16px;
    font-size:11px;
  }

  .promo-card{
    padding:22px;
  }

  .promo-card h3{
    font-size:18px;
    margin-bottom:14px;
  }

  .promo-card p{
    font-size:13px;
    margin-bottom:20px;
  }

  .promo-btn{
    padding:12px 16px;
    font-size:11px;
  }

  .quote-btn{
    padding:16px 24px;
    font-size:16px;
  }

}

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

    @media (max-width:767px){

      .shop-wrapper{
        padding:25px 18px 60px;
      }

      .products-grid{
        gap:40px;
      }

      .product-card,
      .promo-card{
        width:100%;
      }

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

      .price{
        font-size:22px;
      }

      .promo-card h3{
        font-size:20px;
      }

      .product-footer{
        flex-direction:column;
        align-items:flex-start;
      }

      .buy-btn{
        width:100%;
      }

      .quote-btn{
        width:100%;
      }

    }
    
/* Single Product slider */

/* ── Wrapper ── */
.xc-gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

/* ── Swiper ── */
.xc-swiper-main {
    position: relative;
    width: 100%;
    height: 500px;
    background: #111;
}

.swiper-slide {
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.swiper-slide-active img {
    transform: scale(1.03);
}

/* ── Bottom gradient overlay ── */
.xc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.15) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 5;
}

/* ── Tab Buttons ── */
.xc-gallery-tabs {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 150px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    flex-wrap: nowrap;
}

.xc-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: none;
    background: rgba(20,20,20,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.85);
    padding: 12px 20px !important;
    border-radius: 0;
    cursor: pointer !important;;
    font-family: inherit !important;;
    font-size: 13px !important;;
    font-weight: 600 !important;;
    letter-spacing: 0.07em !important;;
    text-transform: uppercase !important;;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.xc-tab:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.xc-tab.active {
    background-color: var(--e-global-color-primary, #d2b277);
    color: var(--e-global-color-accent, #fff);
    border-radius: 0;
}

/* ── Navigation bar ── */
.xc-slider-nav {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 10;
}

/* ── Nav Buttons — FIXED ── */
.xc-nav-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: background 0.2s, color 0.2s, transform 0.2s !important;
    flex-shrink: 0 !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
}

.xc-nav-btn:hover {
    background: var(--e-global-color-primary, #d2b277) !important;
    color: #1a1207 !important;
    border-color: var(--e-global-color-primary, #d2b277) !important;
    transform: scale(1.08) !important;
}

.xc-nav-btn svg {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    flex-shrink: 0 !important;
    pointer-events: none;
}

/* Hide default Swiper arrows — we use SVG inside button */
.xc-nav-btn.swiper-button-prev::after,
.xc-nav-btn.swiper-button-next::after {
    display: none !important;
    content: '' !important;
}

/* ── Counter ── */
.xc-slide-counter {
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    min-width: 46px;
    text-align: center;
    padding: 0 6px;
    user-select: none;
    line-height: 1;
}

.xc-slide-counter .sep {
    margin: 0 2px;
    opacity: 0.4;
}

.xc-slide-counter .current {
    color: #fff;
    font-weight: 700;
}

/* ── Mobile ── */
@media (max-width: 767px) {

    .xc-swiper-main {
        height: 320px;
    }

    .xc-gallery-tabs {
        left: 10px;
        bottom: 10px;
        right: 130px;
        gap: 6px;
    }

    .xc-tab {
        padding: 9px 13px !important;
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .xc-slider-nav {
        right: 10px;
        bottom: 10px;
        padding: 5px 7px;
        gap: 4px;
    }

    .xc-nav-btn {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
    }

    .xc-nav-btn svg {
        width: 13px !important;
        height: 13px !important;
    }

    .xc-slide-counter {
        font-size: 12px;
        min-width: 36px;
    }
}

/* ── Very small screens ── */
@media (max-width: 400px) {
    .xc-gallery-tabs {
        right: 115px;
        gap: 4px;
    }
    .xc-tab {
        padding: 8px 10px !important;
        font-size: 9px !important;
    }
}

