/* css/styles.css */

/* Global Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: "Bai Jamjuree", sans-serif;
 
 
font-weight: 400;
font-style: normal;
}

h1, h2, h3 {
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 500 !important;
    font-style: normal;
}

/* mega menu */
/* Updated Mega Menu CSS - All scoped to parent class .navigation */

    /* Navigation Styles */
    .navigation {
      background: #008080;
      position: relative;
      z-index: 1000;
    }

    .navigation .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }

    .mobile-menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: white;
      font-size: 18px;
      padding: 15px 0;
      cursor: pointer;
      width: 100%;
      text-align: left;
    }

    .mobile-menu-toggle i {
      margin-right: 10px;
    }

    .navigation .nav {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      margin: 0;
      padding: 0;
    }

    .navigation .nav-item {
      position: static;
    }

    .navigation .nav-link {
      display: block;
      color: white;
      text-decoration: none;
      padding: 15px 18px;
      font-size: 14px;
      font-weight: 600;
      transition: background 0.3s;
      white-space: nowrap;
    }

    .navigation .nav-link:hover {
      background: #3d6624;
    }

    /* Mega Menu Styles - FULL CONTAINER WIDTH */
    .navigation .mega-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 20px;
      right: 20px;
      background: white;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      z-index: 999;
      border-top: 3px solid #008080;
    }

    .navigation .nav-item:hover .mega-menu {
      display: block;
    }
.navigation .mega-menu-container {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 0;
}

    .navigation .mega-menu-left {
      padding: 30px;
      border-right: 1px solid #e0e0e0;
    }.navigation .sidebar-links a.sidebar-link {
    width: 46%;
}

    .navigation .mega-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
    }

    .navigation .mega-menu-title {
      font-size: 24px;
      color: #333;
      font-weight: 700;
    }

    .navigation .shop-all-link {
      color: #008080;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: color 0.3s;
    }

    .navigation .shop-all-link:hover {
      color: #3d6624;
      text-decoration: underline;
    }

    .navigation .mega-menu-categories {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

   .navigation .category-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s;
    align-items: center;
}

    .navigation .category-item:hover {
      transform: translateX(5px);
    }

   .navigation .category-icon {
    width: 65px;
    height: 65px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2px;
    flex-shrink: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .navigation .category-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

   .navigation .category-name {
    font-size: 16px;
    color: #008080;
    font-weight: 600;
    padding-top: 10px;
}

    .navigation .mega-menu-right {
      background: #f9f9f9;
      padding: 30px;
    }

    .navigation .sidebar-title {
      font-size: 18px;
      color: #333;
      font-weight: 700;
      margin-bottom: 20px;
    }

   .navigation .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .navigation .sidebar-link {
      color: #333;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s, padding-left 0.3s;
      display: block;
    }

    .navigation .sidebar-link:hover {
      color: #008080;
      padding-left: 5px;
    }

    /* Mobile Menu Toggle Icon */
    .navigation .nav-item.has-mega {
      position: static;
    }

    /* .navigation .nav-item.has-mega > .nav-link::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      margin-left: 8px;
      font-size: 12px;
      transition: transform 0.3s;
    } */
.navigation .nav-item.has-mega > .nav-link::after {
    display: none !important;
}
    /* Mobile Responsive */
    @media (max-width: 1024px) {
      .navigation .mega-menu {
        left: 20px;
        right: 20px;
      }

      .navigation .mega-menu-container {
        grid-template-columns: 1fr;
      }

      .navigation .mega-menu-left {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
      }

      .navigation .mega-menu-categories {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }

      .navigation .nav {
        display: none;
        flex-direction: column;
      }

      .navigation .nav.active {
        display: flex;
      }

      .navigation .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        position: relative;
      }

      .navigation .nav-link {
        padding: 12px 15px;
      }

      .navigation .mega-menu {
        position: static;
        display: none;
        left: 0;
        right: 0;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #3d6624;
        margin: 0 0 0 15px;
      }

      .navigation .nav-item.active .mega-menu {
        display: block;
      }

      .navigation .mega-menu-left,
      .navigation .mega-menu-right {
        padding: 20px;
      }

      .navigation .mega-menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .navigation .category-icon {
        width: 60px;
        height: 60px;
      }

      .navigation .sidebar-links {
        grid-template-columns: 1fr;
      }

      /* .navigation .nav-item.has-mega.active > .nav-link::after {
        transform: rotate(180deg);
      } */

      .navigation .nav-item.has-mega.active > .nav-link::after {
    display: none !important;
}
    }

    @media (min-width: 769px) {
      .navigation .nav-item.has-mega:hover > .nav-link::after {
        transform: rotate(180deg);
      }
    }
/* End */
header.plumbing-header {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgb(50 50 93 / 9%) 0px 50px 100px -20px, rgb(0 0 0 / 14%) 0px 30px 60px -30px;
    margin-bottom: 0px;
    z-index: 999;
    position: relative;
}
  .plumbing-header .top-bar {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 8px 0;
            font-size: 12px;
        }

        .plumbing-header .top-bar a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 15px;
        }

        .plumbing-header .top-bar a:hover {
            text-decoration: underline;
        }

        .plumbing-header .top-bar .phone {
            margin-right: 30px;
        }

        .plumbing-header .top-bar .sale-banner {
            color: #ff6b6b;
            font-weight: 500;
        }

        .plumbing-header .main-header {
            background-color: #ffffff;
            padding: 20px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .plumbing-header .logo {
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: #000;
        }
.plumbing-header .logo img {
    width: 150px;
}img.footer-logo {
    width: 129px;
    filter: brightness(0) invert(1);
}
        .plumbing-header .logo .blue-text {
            color: #008080;
        }

        .plumbing-header .logo .black-text {
            color: #000000;
        }

        .plumbing-header .search-box {
            position: relative;
            width: 100%;
        }

      .plumbing-header .search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    font-size: 14px;
}
        .plumbing-header .search-box input::placeholder {
            color: #999;
        }

        .plumbing-header .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #0099cc;
            cursor: pointer;
            padding: 8px 12px;
            font-size: 18px;
        }

        .plumbing-header .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .plumbing-header .header-actions a,
        .plumbing-header .header-actions button {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .plumbing-header .header-actions a:hover,
        .plumbing-header .header-actions button:hover {
            color: #0099cc;
        }

      .plumbing-header .header-actions .cart-btn {
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 100px;
}

        .plumbing-header .header-actions i {
            font-size: 16px;
        }

        .plumbing-header .navigation {
            background-color: #f8f9fa;
            border-top: 1px solid #e0e0e0;
            position: relative;
        }

        .plumbing-header .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            padding: 15px;
        }

        .plumbing-header .navigation .nav {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .plumbing-header .navigation .nav-item {
            margin: 0;
        }

  .plumbing-header .navigation .nav-link {
    color: #333;
    text-decoration: none;
    padding: 15px 19px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

        .plumbing-header .navigation .nav-link:hover {
            background-color: #e9ecef;
            color: #0099cc;
        }

        /* Mobile Styles */
        @media (max-width: 991px) {
            .plumbing-header .top-bar {
                font-size: 11px;
                padding: 6px 0;
            }

            .plumbing-header .top-bar .top-content {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }

            .plumbing-header .top-bar .phone {
                margin-right: 0;
            }

            .plumbing-header .top-bar .right-links a {
                margin: 0 8px;
            }

            .plumbing-header .main-header {
                padding: 15px 0;
            }

            .plumbing-header .logo {
                font-size: 24px;
            }

            .plumbing-header .search-box {
                max-width: 100%;
                margin: 15px 0;
            }

            .plumbing-header .header-actions {
                justify-content: center;
                gap: 10px;
            }

            .plumbing-header .mobile-menu-toggle {
                display: block;
                width: 100%;
                text-align: left;
                border-bottom: 1px solid #e0e0e0;
            }

            .plumbing-header .navigation .nav {
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .plumbing-header .navigation .nav.show {
                max-height: 600px;
            }

            .plumbing-header .navigation .nav-item {
                width: 100%;
                border-bottom: 1px solid #e0e0e0;
            }

            .plumbing-header .navigation .nav-link {
                padding: 12px 20px;
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .plumbing-header .top-bar {
                font-size: 10px;
            }

            .plumbing-header .top-bar .sale-banner {
                font-size: 10px;
            }

            .plumbing-header .logo {
                font-size: 20px;
            }

            .plumbing-header .search-box input {
                padding: 10px 40px 10px 15px;
                font-size: 13px;
            }

            .plumbing-header .header-actions {
                font-size: 13px;
            }

            .plumbing-header .header-actions .cart-btn {
                padding: 6px 12px;
            }
        }

        @media (max-width: 576px) {
            .plumbing-header .top-bar .right-links a {
                margin: 0 5px;
                font-size: 10px;
            }

            .plumbing-header .logo {
                font-size: 18px;
            }

            .plumbing-header .header-actions {
                gap: 8px;
            }

            .plumbing-header .header-actions a span,
            .plumbing-header .header-actions button span {
                display: none;
            }

            .plumbing-header .header-actions .wishlist-btn {
                display: none;
            }
        }



        /* BAnner start */

        .plumbing-banner {
            position: relative;
            min-height: 600px;
            background-color: #f8f9fa;
            overflow: hidden;
        }
        .plumbing-banner .left-image {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 40%;
            background-image: url('https://via.placeholder.com/800x1200?text=Modern+Kitchen+Faucet'); /* Replace with your actual left image URL */
            background-size: cover;
            background-position: center;
        }
.plumbing-banner .right-top-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 47%;
    width: 40%;
    /* background-image: url(https://via.placeholder.com/800x600?text=Chrome+Kitchen+Faucet); */
    /* background-size: cover; */
    /* background-position: center; */
    display: flex;
    justify-content: end;
}
        .plumbing-banner .right-bottom-image {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 50%;
            width: 40%;
            display: flex;
    justify-content: end;
        }
      .plumbing-banner .content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
    padding: 110px 0;
}.plumbing-banner .right-bottom-image img {
    width: 357px;
    object-fit: cover;
}

.right-top-image img {
    width: 357px;
    object-fit: cover;
}.plumbing-banner .left-image img {
    width: 357px;
    object-fit: cover;
}
        .plumbing-banner .title {
            font-size: 3.5rem;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .plumbing-banner .subtitle {
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 2rem;
            color: #555;
        }
        .plumbing-banner .btn-shop {
            background-color: transparent;
            color: #333;
            border: 2px solid #333;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: bold;
            margin-right: 1rem;
            transition: all 0.3s;
        }
        .plumbing-banner .btn-shop:hover {
            background-color: #333;
            color: #fff;
        }
      .plumbing-banner .btn-distributor {
    background-color: #008080;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    gap: 23px;
    align-items: center;
}
        .plumbing-banner .btn-distributor:hover {
            background-color: #138496;
        }
        @media (max-width: 992px) {
            .plumbing-banner {
                min-height: 500px;
            }
            .plumbing-banner .title {
                font-size: 2.5rem;
            }
            .plumbing-banner .left-image,
            .plumbing-banner .right-top-image,
            .plumbing-banner .right-bottom-image {
                width: 50%;
            }
        }
        @media (max-width: 768px) {
            .plumbing-banner .left-image,
            .plumbing-banner .right-top-image,
            .plumbing-banner .right-bottom-image {
                position: static;
                width: 100%;
                height: 200px;
            }
            .plumbing-banner .right-top-image,
            .plumbing-banner .right-bottom-image {
                display: none; /* Hide duplicates on small screens for better layout */
            }
        }

        /* Start */

        /* All CSS scoped to parent class */
       .living-style-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding-top: 50px;
}

      .living-style-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
}
       .living-style-section .product-card {
    height: 100%;
    transition: transform 0.3s 
ease;
position: relative;
}
.living-style-section .product-card .pro-img {
    background: #F7F4EE;
    padding: 20px;
    margin-bottom: 20px;
    padding-bottom: 0;
}.product-card.mid .pro-img {
    background: #F6F6F6;
}

.living-style-section .product-card .pro-img img {
    width: 273px;
}
        .living-style-section .product-card:hover {
            transform: translateY(-10px);
        }

 .living-style-section .price-badge {
    display: inline-block;
    background-color: #ffffff00;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid #ddd;
    position: absolute;
    left: 20px;
    z-index: 2;
}.living-style-section .price-badge span {
    font-size: 21px;
}

        .living-style-section .product-image {
            height: 300px;
            object-fit: contain;
            margin-bottom: 40px;
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
        }

   .living-style-section .product-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    text-align: left;
}

      .living-style-section .product-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

        @media (max-width: 992px) {
            .living-style-section .section-title {
                font-size: 2.4rem;
                margin-bottom: 60px;
            }
            .living-style-section .product-image {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .living-style-section {
                padding: 60px 15px;
            }
            .living-style-section .product-image {
                height: 220px;
            }
            .living-style-section .product-card {
                margin-bottom: 30px;
            }
        }

        /* Start */

        /* All CSS scoped to parent class */
      .categories-slider {
    padding: 0px 0;
    background-color: #ffffff;
}

        .categories-slider .slider-item {
            text-align: center;
            padding: 20px;
            outline: none;
        }


.categories-slider .item-image-wrapper {
    position: relative;
    width: 101px;
    height: 101px;
    margin: 0 auto 20px;
    background-color: #f5e9e0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s 
ease;
}

        .categories-slider .slider-item:hover .item-image-wrapper {
            transform: scale(1.1);
        }

        .categories-slider .item-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .categories-slider .item-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-top: 10px;
        }

        /* Slick custom arrows (optional styling) */
        .categories-slider .slick-prev,
        .categories-slider .slick-next {
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            z-index: 1;
        }

        .categories-slider .slick-prev:before,
        .categories-slider .slick-next:before {
            color: white;
            font-size: 20px;
        }

        @media (max-width: 768px) {
            .categories-slider .item-image-wrapper {
                width: 130px;
                height: 130px;
            }
            .categories-slider .item-title {
                font-size: 1rem;
            }
        }

        /* Start */

        .product-showcase {
    padding: 100px 0;
    background-color: #f8f9fa;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.product-showcase .section-title {
    font-size: 48px;
    font-weight: 500 !important;
    color: #222;
    margin-bottom: 10px;
}
    .product-showcase .section-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 5px;
}
      .product-showcase .price {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 11px;
}

.product-showcase .add-to-cart-btn {
    background-color: #008080;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 200;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}.product-showcase .add-to-cart-btn img {
    width: 17px;
}
        .product-showcase .add-to-cart-btn:hover {
            background-color: #138496;
            transform: translateY(-3px);
        }

        .product-showcase .add-to-cart-btn i {
            margin-left: 10px;
        }

    .product-showcase .main-image {
    overflow: hidden;
}.product-showcase .variant-info ul li {
    display: flex;
    justify-content: space-between;
}.product-showcase .variant-info ul {
    padding: 0;
    margin: 0;
}

       .product-showcase .thumbnail-gallery {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: end;
}

        .product-showcase .thumb-image {
            
            overflow: hidden;
         
            transition: transform 0.3s;
        }

        .product-showcase .thumb-image:hover {
            transform: translateY(-5px);
        }

      .product-showcase .variant-info {
    margin-top: 14px;
    color: #8b8b8b;
    font-size: 0.95rem;
}
.product-showcase .variant-info ul li:nth-child(1) {
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    padding-bottom: 4px;
}
section.product-showcase .row {
    align-items: end !important;
}
section.product-showcase .row .col-lg-8 {
    padding-left: 75px;
}
        .product-showcase .variant-name {
            font-weight: 600;
            color: #555;
            margin-bottom: 5px;
        }

        .product-showcase .dimensions {
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            .product-showcase .section-title {
                font-size: 2.2rem;
                text-align: center;
            }
            .product-showcase .section-subtitle {
                text-align: center;
            }
            .product-showcase .price,
            .product-showcase .add-to-cart-btn {
                text-align: center;
            }
            .product-showcase .thumbnail-gallery {
                flex-direction: row;
                justify-content: center;
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .product-showcase {
                padding: 60px 0;
            }
            .product-showcase .main-image img {
                width: 100%;
            }
            .product-showcase .thumbnail-gallery {
                gap: 15px;
            }
            .product-showcase .thumb-image {
                width: 120px;
            }
        }


        /* Start */

        /* All CSS scoped to parent class */
        .bestsellers-slider {
            position: relative;
            overflow: hidden;
        }

     .bestsellers-slider .slide-item {
    position: relative;
    height:90vh;
    min-height: 730px;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 80px 120px;
}

        .bestsellers-slider .slide-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .bestsellers-slider .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 40%);
            z-index: 2;
        }

     .bestsellers-slider .slide-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

       .bestsellers-slider .slide-title {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
    margin-bottom: 0;
}
.bestsellers-slider .shop-now-btn {
    background-color: rgb(255 255 255 / 0%);
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 15px;
    transition: all 0.3s 
ease;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

       .bestsellers-slider .shop-now-btn:hover {
    background-color: #008080;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

        .bestsellers-slider .shop-now-btn i {
            margin-left: 10px;
            font-size: 0.9rem;
        }

        /* Slick dots */
        .bestsellers-slider .slick-dots {
            bottom: 40px;
            text-align: left;
            left: 120px;
            width: auto;
        }

        .bestsellers-slider .slick-dots li button:before {
            color: #fff;
            font-size: 12px;
            opacity: 0.6;
        }

        .bestsellers-slider .slick-dots li.slick-active button:before {
            opacity: 1;
        }

        @media (max-width: 992px) {
            .bestsellers-slider .slide-item {
                padding: 60px;
            }
            .bestsellers-slider .slide-title {
                font-size: 2.4rem;
            }
            .bestsellers-slider .slick-dots {
                left: 60px;
            }
        }

        @media (max-width: 768px) {
            .bestsellers-slider .slide-item {
                padding: 40px;
                height: 70vh;
                min-height: 400px;
            }
            .bestsellers-slider .slide-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }
            .bestsellers-slider .slide-content {
                max-width: 100%;
            }
            .bestsellers-slider .shop-now-btn {
                padding: 10px 24px;
                font-size: 1rem;
            }
            .bestsellers-slider .slick-dots {
                left: 50%;
                transform: translateX(-50%);
                text-align: center;
            }
        }

        /* Start */

        /* All CSS scoped to parent class */
        .product-grid-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .product-grid-section .product-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .product-grid-section .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .product-grid-section .product-image-wrapper {
            position: relative;
            height: 300px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-grid-section .product-image {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .product-grid-section .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .product-grid-section .wishlist-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #999;
            transition: all 0.3s;
            z-index: 2;
        }

        .product-grid-section .wishlist-btn:hover {
            background: #fff;
            color: #e91e63;
        }

        .product-grid-section .sale-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #008080;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
            z-index: 2;
        }

        /* Color swatches - now using small images instead of dots */
        .product-grid-section .color-swatches {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }

       .product-grid-section .color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 100px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
    cursor: pointer;
}

        .product-grid-section .color-swatch:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .product-grid-section .color-swatch img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-grid-section .color-swatch.active {
            border-color: #333;
            transform: scale(1.1);
        }

        .product-grid-section .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            text-align: center;
            margin-bottom: 10px;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px;
        }

        .product-grid-section .product-price {
            text-align: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
        }section.product-grid-section .row {
    row-gap: 20px !important;
    margin-bottom: 20px;
}

        .product-grid-section .original-price {
            text-decoration: line-through;
            color: #999;
            font-weight: 400;
            margin-right: 8px;
        }

        .product-grid-section .cart-btn {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: #222;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .product-grid-section .product-card:hover .cart-btn {
            bottom: 20px;
        }

        @media (max-width: 992px) {
            .product-grid-section .product-image-wrapper {
                height: 250px;
            }
            .product-grid-section .color-swatch {
                width: 32px;
                height: 32px;
            }
        }

        @media (max-width: 768px) {
            .product-grid-section {
                padding: 60px 0;
            }
            .product-grid-section .product-image-wrapper {
                height: 220px;
            }
        }


        /* Start */

          /* All CSS scoped to parent class */
     .shop-the-look {
    position: relative;
    padding: 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

        .shop-the-look .scene-image-wrapper {
            position: relative;
            width: 100%;
            height: 700px;
            min-height:700px;
            border-radius: 12px;
          
         
        }
 .shop-the-look .scene-image-wrapper img {
  object-fit: cover;
 }
        .shop-the-look .scene-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Hotspot pointer */
        .shop-the-look .hotspot {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.9);
            border: 3px solid #17a2b8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: #17a2b8;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .shop-the-look .hotspot:hover {
            transform: scale(1.2);
            background: #17a2b8;
            color: #fff;
        }

        /* Active hotspot with blinking pulse */
        .shop-the-look .hotspot.active {
            animation: blink-pulse 2s infinite;
            background: #008080;
            color: #fff;
        }

        @keyframes blink-pulse {
            0% { box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(23, 162, 184, 0); }
            100% { box-shadow: 0 0 0 0 rgba(23, 162, 184, 0); }
        }

        /* Product popup - appears near the clicked hotspot */
        .shop-the-look .product-popup {
            position: absolute;
            width: 300px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 10;
            pointer-events: none; /* Allows clicking through when hidden */
        }

        .shop-the-look .product-popup.visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .shop-the-look .popup-sale-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #008080;
            color: #fff;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 12px;
            z-index: 2;
        }

        .shop-the-look .popup-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.3rem;
            color: #999;
            cursor: pointer;
            z-index: 2;
        }

      .shop-the-look .popup-image

 {
    height: 260px;
    object-fit: contain;
    /* background: #f8f9fa; */
    padding: 20px;
}

        .shop-the-look .popup-content {
            padding: 20px;
        }

        .shop-the-look .color-dots {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }

        .shop-the-look .color-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #8b4513;
            border: 1px solid #ddd;
        }

        .shop-the-look .popup-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .shop-the-look .popup-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: #222;
        }

        .shop-the-look .popup-cart {
            position: absolute;
            bottom: -60px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: #222;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s;
            cursor: pointer;
        }

        .shop-the-look .product-popup:hover .popup-cart {
            bottom: 20px;
        }

        @media (max-width: 992px) {
            .shop-the-look .scene-image-wrapper {
                height: 60vh;
            }
            .shop-the-look .product-popup {
                width: 280px;
            }
        }

        @media (max-width: 768px) {
            .shop-the-look {
                padding: 40px 0;
            }
            .shop-the-look .scene-image-wrapper {
                height: 50vh;
                min-height: 400px;
            }
            .shop-the-look .hotspot {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .shop-the-look .product-popup {
                width: 90%;
                left: 5% !important;
                top: 50% !important;
                transform: translateY(-50%);
            }
        }

        /* Start */

        /* All CSS scoped to parent class */
        .blog-section {
            padding: 100px 0;
            background-color: #ffffff;
            
        }

      .blog-section .section-title {
    font-size: 48px;
    font-weight: 500 !important;
    color: #222;
    margin-bottom: 20px;
}

        .blog-section .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

     .blog-section .category-btn {
    display: inline-block;
    background-color: transparent;
    border: 2px solid #ddd;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    padding: 11px 33px;
    border-radius: 50px;
    margin-right: 12px;
    margin-bottom: 12px;
    transition: all 0.3s 
ease;
    text-decoration: none;
}

        .blog-section .category-btn:hover {
            background-color: #17a2b8;
            border-color: #17a2b8;
            color: #fff;
        }

        .blog-section .blog-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 60px;
        }

        .blog-section .blog-card

 {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s 
ease;
}
        .blog-section .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-section .blog-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

       .blog-section .blog-grid .blog-card:nth-child(2) {
    padding: 0px 50px;
}

.blog-section .blog-grid .blog-card:nth-child(3) {
    padding: 0px 86px;
    padding-left: 0;
}

     .blog-section .blog-content {
    padding: 13px 0px;
    background: #fff;
}

      .blog-section .blog-post-title {
    font-size: 1.3rem;
    font-weight: 600 !important;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}

        /* Large card (first one) spans both rows */
        .blog-section .large-card {
            grid-row: span 2;
        }

        .blog-section .large-card .blog-image {
            height: 100%;
            min-height: 600px;
        }

        @media (max-width: 992px) {
            .blog-section .blog-grid {
                grid-template-columns: 1fr;
            }
            .blog-section .large-card {
                grid-row: auto;
            }
            .blog-section .large-card .blog-image {
                min-height: 400px;
            }
            .blog-section .section-title {
                font-size: 2.4rem;
                text-align: center;
            }
            .blog-section .section-subtitle {
                text-align: center;
            }
            .blog-section .category-btn {
                margin-bottom: 15px;
            }
        }

        @media (max-width: 768px) {
            .blog-section {
                padding: 60px 0;
            }
            .blog-section .blog-content {
                padding: 20px;
            }
            .blog-section .large-card .blog-image {
                min-height: 300px;
            }
        }

        /* Start */

                /* All CSS scoped to parent class */
        .testimonials-slider {
    padding: 100px 0;
    background-color: #fdfaf7;
    padding-bottom: 0;
}

        .testimonials-slider .slider-container {
            position: relative;
        }

        .testimonials-slider .testimonial-item {
            display: flex !important;
            align-items: center;
            outline: none;
        }

        .testimonials-slider .left-content {
            padding-right: 60px;
        }

        .testimonials-slider .quote-text {
            font-size: 2rem;
            font-weight: 600;
            color: #222;
            line-height: 1.4;
            margin-bottom: 30px;
            position: relative;
        }

        .testimonials-slider .quote-text::before {
            content: '"';
            font-size: 4rem;
            color: #17a2b8;
            position: absolute;
            left: -40px;
            top: -20px;
        }

        .testimonials-slider .author-name {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
        }

        .testimonials-slider .product-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .testimonials-slider .product-thumb {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .testimonials-slider .product-details h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .testimonials-slider .product-details p {
            font-size: 0.95rem;
            color: #888;
            margin-bottom: 10px;
        }

        .testimonials-slider .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #222;
        }

        .testimonials-slider .original-price {
            font-size: 1.1rem;
            color: #999;
            text-decoration: line-through;
            margin-left: 10px;
        }

      .testimonials-slider .right-image-wrapper {
    height: 600px;
    overflow: hidden;
}/* Old price */
.old-price {
    position: relative;
    opacity: 0.5;
    font-size: 14px;
    color: #000;
}

/* Perfect cut line */
.old-price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;              /* 👈 exact middle */
    width: 100%;
    height: 1px;
    background: #000;
    transform: translateY(-50%);
}
        .testimonials-slider .right-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Custom arrows */
      /* Custom arrow images */
      .testimonials-slider .slick-prev, .testimonials-slider .slick-next {
    width: 38px;
    height: 56px;
    background: transparent;
    border: none;
    z-index: 10;
    top: 50% !important;
    top: auto;
    opacity: 0.8;
    transition: opacity 0.3s 
ease;
}

        .testimonials-slider .slick-prev:hover,
        .testimonials-slider .slick-next:hover {
            opacity: 1;
        }

       .testimonials-slider .slick-prev {
    left: 45%;
    transform: translateX(-120px);
}

      .testimonials-slider .slick-next {
    left: 38%;
    transform: translateX(60px);
}

        .testimonials-slider .slick-prev:before,
        .testimonials-slider .slick-next:before {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .testimonials-slider .slick-prev:before {
            background-image: url('/assets/img/long-left.svg'); /* Replace with your custom left arrow image URL */
        }

        .testimonials-slider .slick-next:before {
            background-image: url('/assets/img/long-right.svg'); /* Replace with your custom right arrow image URL */
        }

        @media (max-width: 992px) {
            .testimonials-slider .testimonial-item {
                flex-direction: column;
                text-align: center;
            }
            .testimonials-slider .left-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            .testimonials-slider .quote-text {
                font-size: 1.8rem;
            }
            .testimonials-slider .right-image-wrapper {
                height: 400px;
            }
            .testimonials-slider .slick-prev {
                transform: translateX(-60px);
            }
            .testimonials-slider .slick-next {
                transform: translateX(10px);
            }
        }

        @media (max-width: 768px) {
            .testimonials-slider {
                padding: 60px 0;
            }
            .testimonials-slider .quote-text {
                font-size: 1.6rem;
            }
            .testimonials-slider .right-image-wrapper {
                height: 300px;
            }
            .testimonials-slider .product-info {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Start */

        /* All CSS scoped to parent class */
      .site-footer {
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 16px;
    padding-top: 60px;
    padding-bottom: 30px;
}
      .site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s 
ease;
    font-size: 18px;
}

        .site-footer a:hover {
            color: #17a2b8;
        }

        .site-footer .footer-title {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

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

    .site-footer .footer-links li a::before {
    content: "\f062";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #008080;
    display: inline-block;
    transform: rotate(45deg);
}
       .site-footer .contact-info {
    margin-bottom: 20px;
    font-size: 18px;
    color: #fff;
}

        .site-footer .contact-info svg {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            fill: #aaa;
        }

        .site-footer .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 1.2rem;
            color: #aaa;
            transition: color 0.3s;
        }

        .site-footer .social-icons a:hover {
            color: #17a2b8;
        }

        .site-footer .newsletter-form {
            max-width: 400px;
        }

        .site-footer .newsletter-form .form-control {
            background-color: #2a2a2a;
            border: none;
            color: #fff;
            border-radius: 50px 0 0 50px;
            padding: 12px 20px;
        }

        .site-footer .newsletter-form .form-control::placeholder {
            color: #777;
        }

        .site-footer .newsletter-form .btn {
            background-color: #008080;
            color: #fff;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 12px 30px;
            font-weight: 600;
        }

        .site-footer .newsletter-form .btn:hover {
            background-color: #138496;
        }

        .site-footer .payment-icons img {
            height: 30px;
            margin-left: 15px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .site-footer .payment-icons img:hover {
            opacity: 1;
        }

        .site-footer .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #fff;
            color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s;
        }

        .site-footer .back-to-top:hover {
            transform: translateY(-5px);
            background-color: #17a2b8;
            color: #fff;
        }
.site-footer .social-wrap {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-top: 91px;
}

.site-footer .social-wrap .social-icons {
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .social-wrap p {
    padding: 0;
    font-size: 16px;
    margin: 0;
}

.site-footer .social-icons a {
    color: #fff;
    font-size: 26px;
}
     .site-footer .copyright

 {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 17px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}.site-footer .copyright a {
    font-size: 13px;
    color: #17a2b8;
}

        @media (max-width: 992px) {
            .site-footer .newsletter-form {
                max-width: 100%;
                margin-top: 30px;
            }
            .site-footer .newsletter-form .form-control {
                border-radius: 50px 50px 0 0;
            }
            .site-footer .newsletter-form .btn {
                border-radius: 0 0 50px 50px;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                padding-top: 40px;
                text-align: center;
            }
            .site-footer .footer-links li a::before {
                content: none;
            }
            .site-footer .social-icons {
                justify-content: center;
            }
            .site-footer .payment-icons {
                justify-content: center;
                margin-top: 20px;
            }
        }


        /* ===========About Us page css Start here====== */




/* Hero Section */
.About-us-page-wrapper .hero-section {
    background-color: #F7F4EE;
    padding: 80px 0 60px;
}

.About-us-page-wrapper .hero-section .hero-title {
    font-size: 66px;
    font-weight: 600;
    color: #161413;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Product Showcase Section */
.About-us-page-wrapper .product-showcase {
    background-color: #ffffff;
    padding: 60px 0;
}

.About-us-page-wrapper .product-showcase .product-image {
    width: 83%;
    height: auto;
    border-radius: 8px;
}

.About-us-page-wrapper .product-showcase .product-content {
    padding-left: 60px;
}

.About-us-page-wrapper .product-showcase .designer-label {
    font-size: 48px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 15px;
}
.About-us-page-wrapper .product-showcase .product-description {
    font-size: 17px;
    color: #5B5757;
    line-height: 1.8;
    margin-bottom: 30px;
}
.About-us-page-wrapper .product-showcase .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 24px;
    color: #161413;
}
.About-us-page-wrapper .product-showcase .feature-item i {
    color: #161413;
    margin-right: 10px;
    font-size: 16px;
    transform: rotate(319deg);
}

.About-us-page-wrapper .product-showcase .btn-collection {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid #161413;
    border-radius: 50px;
    background: transparent;
    color: #161413;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.About-us-page-wrapper .product-showcase .btn-collection:hover {
    background-color: #161413;
    color: #ffffff;
}

/* Features Section */
.About-us-page-wrapper .features-section {
    background-color: #ffffff;
    padding: 0px 0 60px;
}

.About-us-page-wrapper .features-section .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 40px;
}

.About-us-page-wrapper .features-section .feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 128, 128, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.About-us-page-wrapper .features-section .feature-icon i {
    font-size: 22px;
    color: #008080;
}.About-us-page-wrapper .features-section  .feature-card {
    display: flex;
    align-items: start;
    gap: 20px;
}

.About-us-page-wrapper .features-section .feature-card .feature-icon {
    flex-shrink: 0;
    background: transparent;
}
.About-us-page-wrapper .features-section .feature-card h3.feature-title {
    font-size: 24px;
}
/* Stats Section */
.About-us-page-wrapper .stats-section h2.section-title {
    font-size: 48px;
    text-align: center;
    padding-bottom: 50px;
}
.About-us-page-wrapper .stats-section {
    background-color: #F7F4EE;
    padding: 60px 0;
}

.About-us-page-wrapper .stats-section .stat-number {
    font-size: 56px;
    font-weight: 600;
    color: #161413;
}.About-us-page-wrapper .stats-section .stat-card {
    text-align: center;
}

.About-us-page-wrapper .stats-section .stat-card .stat-number {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.About-us-page-wrapper .stats-section .stat-card p.stat-description {
    padding: 0px 35px;
    font-size: 22px;
}
.About-us-page-wrapper .product-showcase .row {
    align-items: center !important;
}
/* Gallery Section */
.About-us-page-wrapper .gallery-section {
    background-color: #F7F4EE;
    padding: 0 0 80px;
}

.About-us-page-wrapper .gallery-section .gallery-nav {
    background-color: #ffffff;
}.gallery-section .gallery-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
}

.About-us-page-wrapper .gallery-section .gallery-nav:hover {
    background-color: #008080;
}

.About-us-page-wrapper .gallery-section .gallery-nav:hover i {
    color: #ffffff;
}

/* Custom Furniture Section */
  /* Custom Furniture Section */
   .About-us-page-wrapper .custom-furniture-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.About-us-page-wrapper .custom-furniture-section .content-wrapper {
    padding-right: 60px;
}

.About-us-page-wrapper .custom-furniture-section .section-title {
    font-size: 32px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 20px;
    line-height: 1.3;
}

.About-us-page-wrapper .custom-furniture-section .section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 15px;
}

.About-us-page-wrapper .custom-furniture-section .section-description {
    font-size: 13px;
    color: #5B5757;
    line-height: 1.7;
    margin-bottom: 30px;
}

.About-us-page-wrapper .custom-furniture-section .email-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}

.About-us-page-wrapper .custom-furniture-section .form-control {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 13px;
    background-color: #ffffff;
}

.About-us-page-wrapper .custom-furniture-section .form-control::placeholder {
    color: #999;
}

.About-us-page-wrapper .custom-furniture-section .btn-subscribe {
    padding: 12px 28px;
    background-color: #008080;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.About-us-page-wrapper .custom-furniture-section .btn-subscribe:hover {
    background-color: #006666;
    transform: translateY(-2px);
}

.About-us-page-wrapper .custom-furniture-section .furniture-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Responsive */
@media (max-width: 991px) {
    .About-us-page-wrapper .hero-section .hero-title {
        font-size: 32px;
    }

    .About-us-page-wrapper .product-showcase .product-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .About-us-page-wrapper .hero-section .hero-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .About-us-page-wrapper .carousel-section .carousel-image {
        height: 350px;
    }
}

 /* Video Section */
     .About-us-page-wrapper .gallery-section {
    background-color: #F7F4EE;
    padding: 0 0 80px;
}
       .About-us-page-wrapper  .gallery-section .gallery-image-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
        }
        
      .About-us-page-wrapper   .gallery-section .gallery-image,
      .About-us-page-wrapper   .gallery-section .video-player {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
      .About-us-page-wrapper   .gallery-section .video-player {
            display: none;
        }
        
      .About-us-page-wrapper   .gallery-section .video-player.active {
            display: block;
        }
        
      .About-us-page-wrapper   .gallery-section .gallery-image.hidden {
            display: none;
        }
        
     .About-us-page-wrapper .gallery-section .gallery-nav {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 5;
}
        
     .About-us-page-wrapper    .gallery-section .gallery-nav:hover {
            background-color:#008080;
            transform: scale(1.1);
        }
        
    
        
       .About-us-page-wrapper  .gallery-section .gallery-nav.playing {
            display: none;
        }
        /* ======Endf Here===== */

/* Carousel Section */
.About-us-page-wrapper .carousel-section {
    background-color: #ffffff;
    padding: 0 0 80px;
}

.About-us-page-wrapper .carousel-section .carousel-wrapper {
    position: relative;
}

.About-us-page-wrapper .carousel-section .carousel-item-custom {
    position: relative;
}

.About-us-page-wrapper .carousel-section .carousel-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

.About-us-page-wrapper .carousel-section .product-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    width: 90%;
}

.About-us-page-wrapper .carousel-section .product-name {
    font-size: 18px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 8px;
}

.About-us-page-wrapper .carousel-section .product-meta {
    font-size: 12px;
    color: #5B5757;
    margin-bottom: 15px;
}

.About-us-page-wrapper .carousel-section .product-price {
    font-size: 20px;
    font-weight: 600;
    color: #161413;
}
.About-us-page-wrapper .carousel-section .product-price del {
    font-size: 16px;
    color: #9b9b9b;
}
.About-us-page-wrapper .carousel-section .carousel-nav-custom {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.About-us-page-wrapper .carousel-section .carousel-nav-btn {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.About-us-page-wrapper .carousel-section .carousel-nav-btn:hover {
    background-color: #008080;
    color: #ffffff;
}

.About-us-page-wrapper .carousel-section .carousel-nav-btn i {
    font-size: 16px;
}

        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-section .hero-title {
                font-size: 32px;
            }
            
            .product-showcase .product-content {
                padding-left: 0;
                margin-top: 40px;
            }
            
            .custom-furniture-section .content-wrapper {
                padding-right: 0;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-section .hero-title {
                font-size: 28px;
                margin-bottom: 50px;
            }
            
            .stats-section .stat-number {
                font-size: 32px;
            }
            
            .carousel-section .carousel-image {
                height: 350px;
            }
        }


        /* =====Product Page start here===== */
  /* Shop Header Section */
        .shop-header {
            background-color: #F7F4EE;
            padding: 60px 0;
            text-align: center;
        }
        
     .shop-header .header-title {
    font-size: 66px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 12px;
}
        
      .shop-header .header-subtitle {
    font-size: 22px;
    color: #5B5757;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
        
        /* Shop Content Section */
   .shop-page-wrapper     .shop-content {
            padding: 60px 0;
        }
        
        /* Sidebar Section */
   
         /* ========================
           WIDTH FILTER SECTION (TOP)
           ======================== */

      /* ========================
           WIDTH FILTER SECTION (TOP)
           ======================== */

      .width-filter-section {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
 
}.width-filter-section__slider {
    position: relative; /* needed for arrows */
    overflow: hidden;   /* hide overflow outside container */
    width: 100%;        /* make sure slider stays within parent */
    display: block !important; /* override flex if needed */
}.width-slider .width-option__card {
    display: inline-block;
    width: auto;
    text-decoration: none;
}a.filter-toggle-link {
    display: flex;
}
        .width-filter-section__container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .width-filter-section__title {
            font-size: 18px;
            font-weight: 600;
            color: #000000;
            white-space: nowrap;
            min-width: 140px;
        }

        .width-filter-section__slider {
            flex: 1;
            position: relative;
        }

        .width-option {
            outline: none;
            padding: 10px;
           
        }
.width-filter-section .slick-next {
    right: 5px;
}
        .width-option__card {
            background-color: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            width: 120px !important;
            margin: 0 auto;
        }

        .width-option__card:hover {
            border-color: #008080;
            box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
        }

        .width-option__card.active {
            border-color: #008080;
            background-color: #f0f8f8;
        }

        .width-option__image {
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            position: relative;
        }

        .width-option__image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .width-option__badge {
            position: absolute;
            top: -5px;
            right: 10px;
            background-color: #008080;
            color: #ffffff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
        }

        .width-option__label {
            font-size: 14px;
            font-weight: 600;
            color: #008080;
        }

        /* Slick Slider Custom Arrows */
     .width-filter-section    .slick-prev,
      .width-filter-section   .slick-next {
            width: 40px;
            height: 40px;
            background-color: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            z-index: 1;
            transition: all 0.3s ease;
        }

      .width-filter-section   .slick-prev:hover,
      .width-filter-section   .slick-next:hover {
            background-color: #008080;
            border-color: #008080;
        }

      .width-filter-section   .slick-prev:before,
      .width-filter-section   .slick-next:before {
            color: #000000;
            font-size: 20px;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            opacity: 1;
        }

      .width-filter-section   .slick-prev:hover:before,
      .width-filter-section   .slick-next:hover:before {
            color: #ffffff;
        }

      .width-filter-section   .slick-prev {
            left: 0px;
        }

      .width-filter-section .slick-next {
    right: 0;
}
      .width-filter-section   .slick-prev:before {
            content: "\f053";
        }

      .width-filter-section   .slick-next:before {
            content: "\f054";
        }

     .width-filter-section .slick-disabled {
    opacity: 0;
    cursor: not-allowed;
}

        /* Slick Track and Slide Width Control */
       .width-filter-section .slick-track {
            display: flex !important;
        }

       .width-filter-section .slick-slide {
          
            margin: 0 !important;
        }

       .width-filter-section .slick-list {
            overflow: hidden;
        }


        /* ========================
           SHOP SIDEBAR STYLES
           ======================== */

        .shop-sidebar {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
        }

        /* Search Box */
        .shop-sidebar__search-box {
            margin-bottom: 25px;
        }

        .shop-sidebar .search-box {
            position: relative;
        }

       .shop-sidebar  .search-box__input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

      .shop-sidebar   .search-box__input:focus {
            border-color: #008080;
        }

       .shop-sidebar  .search-box__input::placeholder {
            color: #999999;
        }

       .shop-sidebar  .search-box__icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666666;
            font-size: 14px;
        }

        /* Filter Section */
        .shop-sidebar__filter-section {
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        .shop-sidebar__filter-section:first-of-type {
            padding-top: 0;
        }

        .shop-sidebar__filter-section:last-of-type {
            border-bottom: none;
        }

        .filter-section__title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 15px;
            color: #000000;
            user-select: none;
        }

        .filter-title__icon {
            font-size: 12px;
            color: #666666;
            transition: transform 0.3s ease;
        }

        .filter-title__icon.rotated {
            transform: rotate(180deg);
        }

        .filter-section__title:hover .filter-title__icon {
            color: #008080;
        }

        /* Filter Options */
        .filter-section__options {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 500px;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.4s ease;
        }

        .filter-section__options.collapsed {
            max-height: 0;
            opacity: 0;
        }

        .filter-options__item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 14px;
        }

        .filter-option__checkbox {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            cursor: pointer;
            accent-color: #008080;
        }

        .filter-option__label {
            flex: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            color: #333333;
            transition: color 0.3s ease;
        }

        .filter-option__label:hover {
            color: #008080;
        }

        .filter-option__badge {
            background-color: #008080;
            color: #ffffff;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 3px;
            margin-right: 8px;
            font-weight: 600;
        }

        .filter-option__ship-icon {
            color: #008080;
            margin-right: 8px;
            font-size: 16px;
        }

        .filter-option__count {
            color: #999999;
            font-size: 13px;
            margin-left: auto;
            padding-left: 10px;
        }

        /* Range Inputs */
        .filter-section__range-inputs {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
        }

        .range-inputs__group {
            flex: 1;
        }

        .range-inputs__label {
            display: block;
            font-size: 12px;
            color: #666666;
            margin-bottom: 5px;
        }

        .range-inputs__input {
            width: 100%;
            padding: 8px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 13px;
            outline: none;
        }

        .range-inputs__input:focus {
            border-color: #008080;
        }

        /* Apply Button */
        .filter-section__apply-btn {
            width: 100%;
            padding: 10px;
            background-color: #008080;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 12px;
        }

        .filter-section__apply-btn:hover {
            background-color: #006666;
        }

        /* Search Within Results */
        .shop-sidebar__search-within {
            padding-top: 20px;
        }

        .search-within__label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 10px;
        }

        .search-within__box {
            display: flex;
            gap: 5px;
        }

        .search-within__input {
            flex: 1;
            padding: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            font-size: 13px;
            outline: none;
        }

        .search-within__input:focus {
            border-color: #008080;
        }

        .search-within__btn {
            padding: 10px 15px;
            background-color: #008080;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .search-within__btn:hover {
            background-color: #006666;
        }

        /* ========================
           SHOP PRODUCTS STYLES
           ======================== */

        .shop-products {
            background-color: #ffffff;
        }

        /* Products Header */
        .shop-products__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 2px solid #e0e0e0;
            margin-bottom: 30px;
        }

        .products-header__text {
            font-size: 14px;
            font-weight: 600;
            color: #666666;
            letter-spacing: 0.5px;
        }

        .products-header__sort select {
            padding: 10px 35px 10px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            background-color: #ffffff;
            cursor: pointer;
            outline: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            transition: border-color 0.3s ease;
        }

        .products-header__sort select:focus {
            border-color: #008080;
        }

        /* Product Grid */
        .shop-products__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        /* Product Card */
        .product-grid__item {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .product-grid__item:hover {
            box-shadow: 0 8px 20px rgba(0, 128, 128, 0.15);
            transform: translateY(-5px);
        }

        /* Product Badge */
        .product-card__badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #008080;
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        /* Product Wishlist */
        .product-card__wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .product-card__wishlist:hover {
            background-color: #008080;
            border-color: #008080;
        }

        .product-card__wishlist:hover i {
            color: #ffffff;
        }

        .product-card__wishlist i {
            font-size: 16px;
            color: #666666;
            transition: color 0.3s ease;
        }

        /* Product Image */
        .product-card__image {
            width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background-color: #f8f8f8;
            border-radius: 8px;
            overflow: hidden;
        }

        .product-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-grid__item:hover .product-card__image img {
            transform: scale(1.05);
        }

        /* Product Colors */
        .product-card__colors {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            justify-content: center;
        }

        .product-colors__item {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid #ffffff;
            box-shadow: 0 0 0 1px #e0e0e0;
            transition: all 0.3s ease;
        }

        .product-colors__item:hover {
            box-shadow: 0 0 0 2px #008080;
            transform: scale(1.1);
        }

        /* Product Name */
        .product-card__name {
            font-size: 16px;
            font-weight: 600;
            color: #000000;
            text-align: center;
            margin-bottom: 12px;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Product Price */
        .product-card__price {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: #008080;
            margin-bottom: 15px;
        }

        .product-card__price del {
            font-size: 14px;
            color: #999999;
            font-weight: 400;
            margin-left: 8px;
        }

        /* Add to Cart Button */
        .product-card__btn {
            width: 100%;
            padding: 14px;
            background-color: #000000;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: 0.5px;
        }

        .product-card__btn:hover {
            background-color: #008080;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
        }

        .product-card__btn i {
            font-size: 14px;
        }

        /* ========================
           PAGINATION STYLES
           ======================== */

        .shop-products__pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 30px 0;
        }

        .pagination-section__arrow {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #ffffff;
        }

        .pagination-section__arrow:hover {
            border-color: #008080;
            background-color: #f0f8f8;
        }

        .pagination-section__arrow img {
            width: 12px;
            height: 12px;
        }

        .pagination-section__number {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: #666666;
            background-color: #ffffff;
            transition: all 0.3s ease;
        }

        .pagination-section__number:hover {
            border-color: #008080;
            color: #008080;
            background-color: #f0f8f8;
        }

        .pagination-section__number.active {
            background-color: #008080;
            color: #ffffff;
            border-color: #008080;
        }

        /* ========================
           RESPONSIVE STYLES
           ======================== */

        @media (max-width: 1200px) {
            .shop-products__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .shop-content  .row {
                flex-direction: column;
            }
            
          .shop-content  .col-lg-3,
            .col-lg-9 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .shop-content  .shop-sidebar {
                margin-bottom: 30px;
            }

           .shop-content   .slick-prev {
                left: -30px;
            }

           .shop-content   .slick-next {
                right: -30px;
            }
        }

        @media (max-width: 768px) {
            .shop-products__grid {
                grid-template-columns: 1fr;
            }
            
            .shop-products__header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .products-header__sort {
                width: 100%;
            }
            
            .products-header__sort select {
                width: 100%;
            }

            .width-filter-section__container {
                flex-direction: column;
                align-items: flex-start;
            }

          .shop-content    .slick-prev {
                left: 10px;
            }

            .shop-content  .slick-next {
                right: 10px;
            }
        }

        /* ========================
           SCROLLBAR STYLES
           ======================== */

        .shop-sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .shop-sidebar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .shop-sidebar::-webkit-scrollbar-thumb {
            background: #008080;
            border-radius: 10px;
        }

        .shop-sidebar::-webkit-scrollbar-thumb:hover {
            background: #006666;
        }
        /* Products Grid Section */
        .shop-products {
            padding-left: 30px;
        }
        
        .shop-products .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
        }
        
        .shop-products .showing-text {
            font-size: 13px;
            color: #5B5757;
        }
        
        .shop-products .sort-dropdown {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
     .shop-products .sort-dropdown select {
    padding: 10px 40px 10px 18px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 17px;
    color: #5B5757;
    background-color: #ffffff;
    cursor: pointer;
    appearance: none;
    background-image: url(../img/icons/down-arrow.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    border-radius: 100px;
}
        .shop-products .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }
        
.shop-products .product-card {
    background-color: #f8f8f8;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    transition: all 0.1s ease;
}
        .shop-products .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }
        
        .shop-products .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #FFA500;
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 4px;
            z-index: 2;
        }
        
        .shop-products .product-wishlist {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .shop-products .product-wishlist:hover {
            background-color: #008080;
        }
        
        .shop-products .product-wishlist:hover i {
            color: #ffffff;
        }
        
        .shop-products .product-wishlist i {
            font-size: 14px;
            color: #5B5757;
        }
        
        .shop-products .product-image {
            width: 100%;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .shop-products .product-image img {
            max-width: 80%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .shop-products .product-colors {
            display: flex;
            gap: 8px;
            margin-bottom: 12px;
        }
        
        .shop-products .product-color {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .shop-products .product-color:hover {
            border-color: #161413;
        }
        
        .shop-products .product-name {
            font-size: 15px;
            font-weight: 500;
            color: #161413;
            margin-bottom: 8px;
        }
        
        .shop-products .product-price-tag {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
        }
        
        .shop-products .product-price-tag del {
            font-size: 13px;
            color: #999;
            margin-left: 10px;
            font-weight: 400;
        }
        
        .shop-products .add-to-cart-btn {
            display: none;
            width: 100%;
            padding: 12px;
            background-color: #008080;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
     .shop-products .product-card:hover .add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -25px;
    position: relative;
    z-index: 9;
    transition: .3s;
}
        
        .shop-products .add-to-cart-btn:hover {
            background-color: #006666;
        }
        
        /* Pagination Section */
.pagination-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 17px;
    margin-top: 50px;
}
        
     .pagination-section .page-arrow img {
    width: 15px;
}
.pagination-section .page-arrow {
    width: 40px;
    height: 40px;
    /* border: 1px solid #E0E0E0; */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #F6F6F6;
    border-radius: 100px;
    padding: 10px;
}
        
        .pagination-section .page-arrow:hover {
            background-color: #008080;
            border-color: #008080;
            color: #ffffff;
        }
        
        .pagination-section .page-number {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #5B5757;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .pagination-section .page-number:hover {
            background-color: #F7F4EE;
        }
        
     .pagination-section .page-number.active {
    background-color: transparent;
    color: #000000;
    font-weight: bold;
}
        
        /* Recommendations Section */
        .recommendations-section {
            padding: 80px 0;
            background-color: #ffffff;
        }
        
        .recommendations-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
      .recommendations-section .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #161413;
    margin: 0;
    padding: 0;
}
        
        .recommendations-section .nav-arrows {
            display: flex;
            gap: 10px;
        }
        
        .recommendations-section .nav-arrow {
            width: 45px;
            height: 45px;
            border: 1px solid #E0E0E0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background-color: #ffffff;
        }
        
        .recommendations-section .nav-arrow:hover {
            background-color: #008080;
            border-color: #008080;
        }
        
        .recommendations-section .nav-arrow:hover i {
            color: #ffffff;
        }
        
        .recommendations-section .nav-arrow i {
            color: #161413;
        }
        
        .recommendations-section .product-carousel {
            position: relative;
        }
        
        .recommendations-section .slick-slide {
            padding: 0 15px;
        }
        
        .recommendations-section .slick-list {
            margin: 0 -15px;
        }
        
        /* Custom Slick Arrows */
  .recommendations-section .slick-arrow {
    position: absolute;
    top: -13%;
    transform: translateY(-50%);
    width: auto;
    height: 51px;
    background-color: #ffffff;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
        
        
    .recommendations-section .slick-arrow::before {
    content: '';
    display: block;
    width: 35px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
        
      .recommendations-section .slick-prev {
    right: 62px;
    left: auto;
}
        
        .recommendations-section .slick-prev::before {
            background-image: url("../img/icons/long-left-arrow.png");
        }
        
        .recommendations-section .slick-prev:hover::before {
                       background-image: url("../img/icons/long-left-arrow.png");
        }
        
.recommendations-section .slick-next {
    right: 0px;
}
        .recommendations-section .slick-next::before {
            background-image: url("../img/icons/long-right-arrow.png");
        }
        
        .recommendations-section .slick-next:hover::before {
             background-image: url("../img/icons/long-right-arrow.png");
        }
        
        .recommendations-section .slick-dots {
            display: none !important;
        }
        
 .recommendations-section .recommendation-card

 {
    background-color: #F6F6F6;
    border-radius: 0px;
    padding: 0;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0px 15px;
}
     .recommendations-section .recommendation-card   .bottom {
    background: #fff;
    padding: 20px 0px 0px;
} 
       
        
        .recommendations-section .recommendation-badge {
            position: absolute;
            top: 25px;
            left: 25px;
            background-color: #FFA500;
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 4px;
        }
        
        .recommendations-section .recommendation-wishlist {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 35px;
            height: 35px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .recommendations-section .recommendation-wishlist:hover {
            background-color: #008080;
        }
        
        .recommendations-section .recommendation-wishlist:hover i {
            color: #ffffff;
        }
        
        .recommendations-section .recommendation-wishlist i {
            font-size: 14px;
            color: #5B5757;
        }
        
     .recommendations-section .recommendation-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
       .recommendations-section .recommendation-image img {
    max-width: 73%;
    max-height: 100%;
    object-fit: cover;
    padding: 66px 0;
    height: 322px !important;
}
        
     .recommendations-section .star-rating {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 10px;
}
        
      .recommendations-section .star-rating i {
    font-size: 14px;
    color: #FFA500;
    margin-right: 1px;
    margin-top: 3px;
}
        
       .recommendations-section .recommendation-name a {
    color: #000;
    text-decoration: none;
}

.recommendations-section .recommendation-name {
    font-size: 17px;
    font-weight: 500;
    color: #161413;
    margin-bottom: 10px;
}
        .recommendations-section .recommendation-price {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
        }
        
        .recommendations-section .recommendation-price del {
            font-size: 13px;
            color: #999;
            margin-left: 10px;
            font-weight: 400;
        }
        
        /* Features Section */
       .features-footer {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid #F0F0F0;
}
        
        .features-footer .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        } .woocommerce-shop .star-rating::before {
            display: none !important;
        }
        
        .features-footer .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .features-footer .feature-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .features-footer .feature-icon i {
            font-size: 28px;
            color: #161413;
        }
        
        .features-footer .feature-text {
            font-size: 14px;
            font-weight: 500;
            color: #161413;
        }
        
        /* Responsive */
        @media (max-width: 1199px) {
            .shop-products .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .recommendations-section .slick-prev {
                left: -50px;
            }
            
            .recommendations-section .slick-next {
                right: -50px;
            }
        }
        
        @media (max-width: 991px) {
            .shop-sidebar {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .shop-products {
                padding-left: 0;
            }
            
            .features-footer .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .recommendations-section .slick-prev {
                left: -40px;
            }
            
            .recommendations-section .slick-next {
                right: -40px;
            }
        }
        
        @media (max-width: 767px) {
            .shop-products .product-grid {
                grid-template-columns: 1fr;
            }
            
            .features-footer .features-grid {
                grid-template-columns: 1fr;
            }
            
            .recommendations-section .slick-prev {
                left: 10px;
            }
            
            .recommendations-section .slick-next {
                right: 10px;
            }
        }
        /* =============End=========== */


/* 
        =============Product Details start here===== */
   
        /* Product Hero Section */
        .product-hero {
            padding: 60px 0 80px;
            background-color: #ffffff;
        }
        
        /* Product Gallery Section */
        .product-gallery {
            position: relative;
        }
        
  .product-gallery .main-image-slider {
    margin-bottom: 0;
    background-color: #F7F4EE;
    border-radius: 0;
    overflow: hidden;
}
       .product-gallery .main-slide {
    position: relative;
    height: 588px;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}
   .product-gallery .main-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
}
        .product-gallery .thumbnail-slider {
            margin-top: 20px;
        }
        
       .product-gallery .thumbnail-slide {
    padding: 0;
    cursor: pointer;
}
        .product-gallery .thumbnail-slide:nth-child(odd) img {
    padding: 0px 20px !important;
    
}
     .product-gallery .thumbnail-wrapper {
    background-color: transparent;
    border-radius: 8px;
    padding: 0;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
        
        .product-gallery .thumbnail-slide.slick-current .thumbnail-wrapper {
            border-color: #008080;
        }
        
        .product-gallery .thumbnail-wrapper:hover {
            border-color: #008080;
        }
        
      .product-gallery .thumbnail-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
        /* Custom Arrows for Main Gallery */
        .product-gallery .slick-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border: 1px solid #E0E0E0;
            border-radius: 50%;
            background-color: #ffffff;
            cursor: pointer;
            z-index: 10;
            display: flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .product-gallery .slick-arrow:hover {
            background-color: #008080;
            border-color: #008080;
        }
        
        .product-gallery .slick-arrow::before {
            content: '';
            display: block;
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .product-gallery .slick-prev {
            left: 20px;
        }
        
        .product-gallery .slick-prev::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23161413' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .product-gallery .slick-prev:hover::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .product-gallery .slick-next {
            right: 20px;
        }
        
        .product-gallery .slick-next::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23161413' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .product-gallery .slick-next:hover::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .product-gallery .thumbnail-slider .slick-arrow {
            display: none !important;
        }
        
        /* Product Info Section */
        .product-info {
            padding-left: 50px;
        }
        
      .product-info .product-title {
    font-size: 66px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 15px;
    line-height: 1.1;
}
        
        .product-info .rating-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .product-info .star-rating {
            display: flex;
            gap: 4px;
        }
        
        .product-info .star-rating i {
            font-size: 16px;
            color: #FFA500;
        }
        
        .product-info .review-count {
            font-size: 14px;
            color: #5B5757;
        }
        
        .product-info .sku-code {
            font-size: 14px;
            color: #5B5757;
            margin-left: 15px;
            padding-left: 15px;
            border-left: 1px solid #E0E0E0;
        }
        
       .product-info .product-description {
    font-size: 18px;
    color: #5B5757;
    line-height: 1.8;
    margin-bottom: 13px;
}
        
        .product-info .product-price {
            font-size: 42px;
            font-weight: 600;
            color: #161413;
            margin-bottom: 25px;
        }
        
        .product-info .material-section {
            margin-bottom: 25px;
        }
        
        .product-info .material-label {
            font-size: 13px;
            font-weight: 600;
            color: #161413;
            text-transform: uppercase;
            margin-bottom: 12px;
            display: block;
        }
        
        .product-info .material-name {
            font-size: 14px;
            color: #5B5757;
            margin-bottom: 12px;
        }
        
        .product-info .color-options {
            display: flex;
            gap: 12px;
        }
        
        .product-info .color-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .product-info .color-circle:hover {
            border-color: #161413;
        }
        
        .product-info .color-circle.active::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            font-size: 14px;
            font-weight: bold;
        }
        
      .product-info .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}
        
        .product-info .btn-add-cart {
            flex: 1;
            padding: 15px 30px;
            background-color: #008080;
            color: #ffffff;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .product-info .btn-add-cart:hover {
            background-color: #006666;
        }
        
        .product-info .btn-wishlist {
            flex: 1;
            padding: 15px 30px;
            background-color: transparent;
            color: #161413;
            border: 1.5px solid #E0E0E0;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .product-info .btn-wishlist:hover {
            border-color: #161413;
            background-color: #F7F4EE;
        }
        
      .product-info .product-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000000;
}
        
        .product-info .product-meta i {
            color: #008080;
            font-size: 16px;
        }
        
        /* Product Details Section */
       .product-details-section {
    padding: 60px 0;
    background-color: #ffffff;
    padding-top: 0;
}.product-details-section .detail-image2 {
    width: 100%;
    border-radius: 0;
    margin-bottom:0px;
    padding-left: 05px;
}
        
        .product-details-section .details-title {
    font-size: 48px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 15px;
}
        .product-details-section .details-description {
            font-size: 14px;
            color: #5B5757;
            line-height: 1.8;
            margin-bottom: 35px;
        }
        
        .product-details-section .details-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .product-details-section .details-table tr {
            border-bottom: 1px solid #E0E0E0;
        }
        
        .product-details-section .details-table td {
            padding: 18px 0;
            font-size: 14px;
        }
        
        .product-details-section .details-table td:first-child {
            color: #5B5757;
            width: 30%;
        }
        
        .product-details-section .details-table td:last-child {
            color: #161413;
            font-weight: 500;
            text-align: right;
        }
        
      .product-details-section .row {
    align-items: center;
}
.product-details-section .detail-image {
    width: 100%;
    border-radius: 0;
    margin-bottom: 30px;
    padding-left: 35px;
}
        
        /* Customer Reviews Section */
       .reviews-section {
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
}
        
      .reviews-section .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 10px;
   
}
        
        .reviews-section .reviews-slider {
            position: relative;
            overflow: visible;
        }
        
    .reviews-section .review-card {
    background-color: #F6F6F6;
    border-radius: 8px;
    padding: 35px;
    margin: 0 0px;
    opacity: 1;
    transform: scale(0.9);
    transition: all 0.3s ease;
    height: 313px;
}
        
        .reviews-section .slick-current .review-card {
            opacity: 1;
            transform: scale(1);
        }
        
        .reviews-section .reviewer-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .reviews-section .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .reviews-section .reviewer-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: #161413;
            margin-bottom: 5px;
        }
        
        .reviews-section .reviewer-info .review-date {
            font-size: 12px;
            color: #999;
        }
        
        .reviews-section .review-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 15px;
        }
        
        .reviews-section .review-rating i {
            font-size: 14px;
            color: #FFA500;
        }
        
        .reviews-section .review-text {
            font-size: 14px;
            color: #5B5757;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .reviews-section .product-name-tag {
            font-size: 13px;
            font-weight: 600;
            color: #161413;
        }
        
        /* Custom Arrows for Reviews Slider */
        .reviews-section .slick-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border: 1px solid #E0E0E0;
            border-radius: 50%;
            background-color: #ffffff;
            cursor: pointer;
            z-index: 10;
            display: flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .reviews-section .slick-arrow:hover {
            background-color: #008080;
            border-color: #008080;
        }
        
        .reviews-section .slick-arrow::before {
            content: '';
            display: block;
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }
        
        .reviews-section .slick-prev {
            left: 20px;
        }
        
        .reviews-section .slick-prev::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23161413' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .reviews-section .slick-prev:hover::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .reviews-section .slick-next {
            right: 20px;
        }
        
        .reviews-section .slick-next::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23161413' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .reviews-section .slick-next:hover::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
        }
        
        .reviews-section .slick-dots {
            display: none !important;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .product-info {
                padding-left: 0;
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .product-gallery .main-slide {
                height: 350px;
            }
            
            .product-info .product-title {
                font-size: 28px;
            }
            
            .product-info .product-price {
                font-size: 32px;
            }
            
            .product-info .action-buttons {
                flex-direction: column;
            }
        }





   .product-deatils-page-wrapper .product-showcase {
    background-color: #ffffff;
    padding: 60px 0;
}

.product-deatils-page-wrapper .product-showcase .product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.product-deatils-page-wrapper .product-showcase .product-content {
    padding-left: 0;
    padding-right: 100px;
}

.product-deatils-page-wrapper .product-showcase .designer-label {
    font-size: 48px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 15px;
}
.product-deatils-page-wrapper .product-showcase .product-description {
    font-size: 17px;
    color: #5B5757;
    line-height: 1.8;
    margin-bottom: 30px;
}
.product-deatils-page-wrapper .product-showcase .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 24px;
    color: #161413;
}
.product-deatils-page-wrapper .product-showcase .feature-item i {
    color: #161413;
    margin-right: 10px;
    font-size: 16px;
    transform: rotate(319deg);
}

.product-deatils-page-wrapper .product-showcase .btn-collection {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid #161413;
    border-radius: 50px;
    background: transparent;
    color: #161413;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.product-deatils-page-wrapper .product-showcase .btn-collection:hover {
    background-color: #161413;
    color: #ffffff;
}.product-deatils-page-wrapper .product-showcase .row {
    align-items: center !important;
}



.real-life-section {
    padding: 0px 0;
    background-color: #ffffff;
}
   .real-life-section .section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #212529;
    text-align: center;
}

    .real-life-section .container {
      --bs-gutter-x: 1.5rem; /* control horizontal spacing */
    }

    .real-life-section .row {
      --bs-gutter-x: 1.25rem; /* tighter control than default */
      --bs-gutter-y: 1.5rem;
      margin-left: calc(-1 * var(--bs-gutter-x) * 0.5);
      margin-right: calc(-1 * var(--bs-gutter-x) * 0.5);
    }

 .real-life-section .card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background-color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
}

  

    .real-life-section .card-img-top {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }

    /* White badge overlay for username */
.real-life-section .badge-username {
    position: absolute;
    bottom: 24px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.94);
    color: #212529;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.real-life-section .right img {
    height: 290px;
    padding-left: 0 !important;
}

.real-life-section .left img {
    height: 580px;
    padding-right: 0 !important;
    border-radius: 0;
}.real-life-section .col-md-6.left {
    margin: 0;
    padding: 0;
}

.real-life-section .col-md-6.right {
    margin: 0;
    padding: 0;
}
    /* Extra tight side spacing fix */
    @media (min-width: 576px) {
      .real-life-section .row {
        --bs-gutter-x: 1.5rem;
      }
    }

    @media (max-width: 575.98px) {
      .real-life-section .card-img-top {
        height: 220px;
       
      }
      .real-life-section .section-title {
        font-size: 1.6rem;
      }
    }
        /* =========End============= */





/* 
        ==========Cart Page========= */
 /* Cart Page Styles */
        .cart-page {
            padding: 60px 0 80px;
            background-color: #ffffff;
        }
        
        .cart-page .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .cart-page .page-title {
            font-size: 36px;
            font-weight: 600;
            color: #161413;
        }
        
        .cart-page .back-shopping {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #161413;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .cart-page .back-shopping:hover {
            color: #008080;
        }
        
        .cart-page .back-shopping i {
    font-size: 18px;
    border: 1px solid #000;
    padding: 3px;
    border-radius: 100px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
}
        
        /* Cart Table Header */
 .cart-page .cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 80px;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 0;
    border-top: 1px solid #E0E0E0;
}
  .cart-page .product-info {
    padding-left: 0;
}
        .cart-page .cart-table-header span {
            font-size: 14px;
            font-weight: 500;
            color: #5B5757;
            text-transform: uppercase;
        }
        
        /* Cart Items */
        .cart-page .cart-items {
            margin-bottom: 40px;
        }
        
        .cart-page .cart-item {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 80px;
            gap: 20px;
            align-items: center;
            padding: 30px 0;
            border-bottom: 1px solid #E0E0E0;
        }
        
        /* Product Info */
       .product-details h3 a {
    color: #000;
    text-decoration: none;
}
        
       .cart-page .product-image {
    width: 100px;
    height: 100px;
    background-color: #F7F4EE;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}
        
        .cart-page .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-page .product-details h3 {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
            margin-bottom: 8px;
        }
        
        .cart-page .product-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 8px;
        }
        
        .cart-page .product-rating i {
            font-size: 12px;
            color: #FFA500;
        }
        
        .cart-page .product-meta {
            font-size: 13px;
            color: #5B5757;
            margin-bottom: 4px;
        }
        
        .cart-page .product-meta strong {
            color: #161413;
            font-weight: 500;
        }
        
        /* Price */
        .cart-page .price-section {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .cart-page .current-price {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
        }
        
        .cart-page .original-price {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }
        
        /* Quantity Control */
      .cart-page .quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1.5px solid #E0E0E0;
    border-radius: 5px;
    padding: 3px 5px;
    width: fit-content;
}
        
    .cart-page .quantity-control button {
    background: none;
    border: none;
    color: #161413;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #e3e3e36b;
    width: 40px;
    height: 40px;
    border-radius: 100px;
}
        
        .cart-page .quantity-control button:hover {
            color: #008080;
        }
        
        .cart-page .quantity-control input {
            border: none;
            text-align: center;
            width: 40px;
            font-size: 14px;
            font-weight: 500;
            color: #161413;
        }
        
        .cart-page .quantity-control input:focus {
            outline: none;
        }
        
        /* Total Price */
        .cart-page .item-total {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
        }
        
        /* Remove Button */
     .cart-page .remove-btn {
    background: none;
    border: none;
    color: #4a4646;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
        .cart-page .remove-btn:hover {
            color: #ff0000;
        }
        
        /* Promo Code Section */
        .cart-page .promo-section {
            margin-bottom: 60px;
        }
        
        .cart-page .promo-input-wrapper {
            display: flex;
            gap: 15px;
            max-width: 500px;
        }
        
        .cart-page .promo-input {
            flex: 1;
            padding: 15px 25px;
            border: 1.5px solid #E0E0E0;
            border-radius: 50px;
            font-size: 14px;
            color: #161413;
        }
        
        .cart-page .promo-input:focus {
            outline: none;
            border-color: #008080;
        }
        
        .cart-page .promo-input::placeholder {
            color: #999;
        }
        
.cart-page .apply-btn img {
    width: 16px;
    margin-top: 3px;
}
.cart-page .apply-btn {
    padding: 15px 35px;
    background-color: #0000000f;
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
        
        .cart-page .apply-btn:hover {
            background-color: #008080;
            border-color: #008080;
            color: #ffffff;
        }
        
        /* Cart Totals */
       .cart-page .cart-totals {
    background-color: #F6F6F6;
    border-radius: 0;
    padding: 35px;
    margin-left: 34px;
}
        
     .cart-page .totals-title {
    font-size: 24px;
    font-weight: 600;
    color: #161413;
    margin-bottom: 5px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 17px;
}
        
        .cart-page .totals-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .cart-page .totals-row:last-of-type {
            border-bottom: none;
            padding-top: 20px;
            margin-top: 10px;
        }
        
        .cart-page .totals-label {
            font-size: 14px;
            color: #5B5757;
        }
        
        .cart-page .totals-value {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
        }
        
        .cart-page .totals-value.free {
            color: #008080;
        }
        
        .cart-page .totals-row.total .totals-label {
            font-size: 16px;
            font-weight: 600;
            color: #161413;
        }
        
        .cart-page .totals-row.total .totals-value {
            font-size: 20px;
        }
        
        .cart-page .checkout-btn {
            width: 100%;
            padding: 15px 30px;
            background-color: #008080;
            color: #ffffff;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            transition: all 0.3s ease;
        }a.checkout-btn {
    text-decoration: none;
}
        
        .cart-page .checkout-btn:hover {
            background-color: #006666;
        }
        
        /* Info Cards Section */
    .cart-page .info-cards {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid #000;
    padding-top: 50px;
}
        
       .cart-page .info-card {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}
        
        .cart-page .info-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .cart-page .info-card-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #008080;
            font-size: 20px;
        }
        
       .cart-page .info-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #161413;
    margin: 0;
}
        
  .cart-page .info-card-text {
    font-size: 17px;
    color: #5B5757;
    line-height: 1.5;
    margin-bottom: 15px;
}
        
        .cart-page .info-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #161413;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .cart-page .info-card-link:hover {
            color: #008080;
        }
        
        .cart-page .contact-info {
            margin-top: 15px;
        }
        
        .cart-page .contact-phone {
            font-size: 20px;
            font-weight: 600;
            color: #161413;
            display: block;
            margin-bottom: 10px;
        }
        
        .cart-page .contact-hours {
            font-size: 13px;
            color: #5B5757;
            line-height: 1.6;
        }
        
        .cart-page .payment-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .cart-page .payment-icon {
            width: 50px;
            height: 32px;
            background-color: #ffffff;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #E0E0E0;
        }
        
        .cart-page .payment-icon img {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .cart-page .cart-table-header,
            .cart-page .cart-item {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .cart-page .cart-table-header {
                display: none;
            }
            
            .cart-page .cart-item > div {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .cart-page .cart-item > div::before {
                content: attr(data-label);
                font-size: 13px;
                font-weight: 500;
                color: #5B5757;
                text-transform: uppercase;
            }
            
            .cart-page .product-info {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cart-page .info-cards {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 767px) {
            .cart-page .page-header {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .cart-page .page-title {
                font-size: 28px;
            }
            
            .cart-page .promo-input-wrapper {
                flex-direction: column;
                max-width: 100%;
            }
        }
       /* ============= End=========== */








       /* =====BLog Page====== */
 .blog-page {
           
            color: #333;
            background: #f8f9fa;
        }

        .blog-page .hero-section {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23a89f91" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

      .blog-page .hero-section h1 {
    font-size: 66px;
    font-weight: 300;
    margin-bottom: 1rem;
}
        .blog-page .hero-section p {
            font-size: 1.1rem;
            font-weight: 300;
        }

       .blog-page .main-content {
    padding: 60px 0;
    background: #fff;
}

       .blog-page .blog-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 40px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
    transition: transform 0.3s ease;
}

        .blog-page .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .blog-page .blog-card-img {
    position: relative;
    height: 450px;
    overflow: hidden;
}

        .blog-page .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-page .blog-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-page .blog-card-body {
            padding: 30px;
        }

        .blog-page .blog-meta {
            display: flex;
            gap: 15px;
            font-size: 0.8rem;
            color: #999;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-page .blog-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-page .blog-card-body h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #222;
        }

        .blog-page .blog-card-body p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .blog-page .read-more {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .blog-page .read-more:hover {
            gap: 12px;
            color: #000;
        }

      .blog-page .sidebar {
    position: sticky;
    top: 20px;
    background: #F6F6F6;
}

   .blog-page .sidebar-widget {
    /* background: white; */
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 0;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
}

 .blog-page .sidebar-widget h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    border-bottom: 1px solid #ddd;
    padding-bottom: 14px;
    margin-bottom: 22px;
}

       .blog-page .search-box {
    position: relative;
    margin-top: 15px;
}

        .blog-page .search-box input {
            width: 100%;
            padding: 12px 40px 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 25px;
            font-size: 0.9rem;
        }

        .blog-page .search-box i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }

        .blog-page .category-list {
            list-style: none;
        }

        .blog-page .category-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .blog-page .category-list li:last-child {
            border-bottom: none;
        }

     .blog-page .category-list a {
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

        .blog-page .category-list a:hover {
            color: #000;
        }

        .blog-page .popular-post {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .blog-page .popular-post:last-child {
            border-bottom: none;
        }

        .blog-page .popular-post img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 6px;
        }

        .blog-page .popular-post-content {
            flex: 1;
        }

        .blog-page .popular-post-meta {
            font-size: 0.7rem;
            color: #999;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .blog-page .popular-post h5 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
        }

        .blog-page .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

       .blog-page .tag-cloud a {
    padding: 8px 18px;
    background: #ffffff;
    border-radius: 20px;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid;
}

        .blog-page .tag-cloud a:hover {
            background: #333;
            color: white;
        }

        .blog-page .calendar-widget table {
            width: 100%;
            font-size: 0.85rem;
        }

        .blog-page .calendar-widget th,
        .blog-page .calendar-widget td {
            text-align: center;
            padding: 10px 5px;
        }

        .blog-page .calendar-widget th {
            font-weight: 600;
            color: #999;
            text-transform: uppercase;
            font-size: 0.75rem;
        }

        .blog-page .calendar-widget td {
            color: #666;
        }

        .blog-page .calendar-widget .active {
            background: #333;
            color: white;
            border-radius: 4px;
        }

        .blog-page .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .blog-page .calendar-header h5 {
            font-size: 1rem;
            font-weight: 600;
        }

       .blog-page .calendar-nav img {
    width: 22px;
}
.blog-page .calendar-nav {
    display: flex;
    gap: 10px;
    border: none;
    background: transparent;
}

        .blog-page .calendar-nav button {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 1rem;
        }

       .blog-page .archive-list li a {
    font-size: 16px;
}
.blog-page .archive-list {
    list-style: none;
    padding: 0;
}
        .blog-page .archive-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .blog-page .archive-list li:last-child {
            border-bottom: none;
        }

        .blog-page .archive-list a {
            color: #666;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

       .blog-page .comment-item

 {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
    display: flex;
    gap: 8px;
    font-size: 17px;
}

        .blog-page .comment-item:last-child {
            border-bottom: none;
        }

        .blog-page .comment-author {
            color: #333;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .blog-page .comment-text {
            color: #666;
            line-height: 1.6;
        }

        .blog-page .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

     .blog-page .pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    background:transparent;
    border-radius: 100px;
}.blog-page .pagination a.arrrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #F6F6F6 !important;
    border-radius: 100px;
}

      .blog-page .pagination a:hover, .blog-page .pagination a.active {
    color: #008080;
    border: none;
    background: transparent;
    font-weight: bold;
}

        @media (max-width: 768px) {
            .blog-page .hero-section h1 {
                font-size: 2rem;
            }

            .blog-page .hero-section {
                height: 300px;
            }

            .blog-page .sidebar {
                margin-top: 40px;
            }
        }
.blog-page .read-more i {
    border: 1px solid #000;
    padding: 3px;
    border-radius: 100px;
    font-size: 12px;
}



.blog-page .read-more {
    display: flex;
    align-items: center;
}.blog-page .category-list li img {
    width: 8px;
}

.blog-page .category-list {
    padding: 0;
}

.blog-page .category-list li {
    display: flex;
    gap: 9px;
}


.blog-page  .cal-box {
    border: 1px solid;
    padding: 0;
}

.blog-page .calendar-header {
    border-bottom: 1px solid;
    padding: 15px 15px 15px 13px;
}



.blog-page .calendar-widget table thead {
    padding: 15px;
}
       /* =====End=========== */


       /* ===========faq start======== */
.faq-page .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23c9c5c0" width="1200" height="400"/></svg>');
            background-size: cover;
            background-position: center;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }section.hero-section .hero-content {
    position: relative;
    z-index: 9;
}
.faq-page .hero-section {
    position: relative;
    background-size: cover !important;
}
section.hero-section .overlay {
    background: #0000005c;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
section.hero-section .container{
    position: relative;
}
      .faq-page .hero-content h1 {
    font-size: 66px;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

        .faq-page .hero-content p {
            font-size: 1.1rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-page .main-content {
    padding: 50px 0;
    background-color: #ffffff;
}

     .faq-page .faq-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 0;
}
      .faq-page .faq-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2c2c2c;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 5px;
}

        .faq-page .faq-item {
            
            padding: 5px 0;
        }

        .faq-page .faq-item:last-child {
            border-bottom: none;
        }
.faq-page .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    font-weight: 400;
    color: #2c2c2c;
    padding-right: 20px;
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
    /* border-top: 1px solid #ddd; */
    padding-bottom: 16px;
}
        .faq-page .faq-question:hover {
            color: #666;
        }

        /* .faq-page .faq-arrow {
            width: 12px;
            height: 12px;
            border-right: 2px solid #666;
            border-bottom: 2px solid #666;
            transform: rotate(45deg);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        } */
.faq-page .faq-item.active .faq-arrow

 {
    transform: rotate(0deg);
}
.faq-page .faq-item .faq-arrow {
    transform: rotate(267deg);
}


        .faq-page .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .faq-page .faq-answer-content {
    padding-top: 15px;
    padding-right: 30px;
    font-size: 17px;
}

        .faq-page .faq-item.active .faq-answer {
    max-height: 500px;
    border-bottom: 1px solid #ddd;
}

      .faq-page .contact-box {
    background: #F6F6F6;
    padding: 40px;
   
    margin-bottom: 30px;
}

      .faq-page .contact-box h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #2c2c2c;
}
    .faq-page .contact-info {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
        .faq-page .contact-box p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .faq-page .contact-info {
            display: flex;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .faq-page .contact-item {
            display: flex;
          
            gap: 5px;
        }
.faq-page .contact-item a {
    display: block;
    color: #000;
    font-size: 16px;
}
        .faq-page .contact-item a {
            color: #2c2c2c;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .faq-page .shop-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 30px;
            border: 1px solid #2c2c2c;
            border-radius: 25px;
            background: white;
            color: #2c2c2c;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .faq-page .shop-btn:hover {
            background: #2c2c2c;
            color: white;
        }
.faq-page .shop-btn:hover img {
    filter: brightness(0) invert(1);
}
       

    .faq-page .product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

       .faq-page .gallery-section {
    padding: 50px 0;
    background-color: #fff;
    overflow: hidden;
}

        .faq-page .slick-slider {
            margin: 0 -10px;
        }

        .faq-page .slick-slide {
            padding: 0 10px;
        }

        .faq-page .slick-slide img {
            width: 100%;
            height: auto;
          
            display: block;
        }

        .faq-page .slick-prev,
        .faq-page .slick-next {
            z-index: 1;
            width: 40px;
            height: 40px;
        }

        .faq-page .slick-prev {
            left: 10px;
        }

        .faq-page .slick-next {
            right: 10px;
        }

        .faq-page .slick-prev:before,
        .faq-page .slick-next:before {
            font-size: 40px;
            color: #2c2c2c;
        }

        @media (max-width: 768px) {
            .faq-page .hero-content h1 {
                font-size: 2.5rem;
            }

            .faq-page .faq-section {
                padding: 25px;
            }

            .faq-page .contact-box {
                padding: 25px;
            }

            .faq-page .contact-info {
                flex-direction: column;
                gap: 15px;
            }
        }
      /* ====== End===== */

      /* ==========Contact Us========= */

      /* ==========Contact Us========= */

  .contact-page .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%236b5d4f" width="1200" height="300"/></svg>');
            background-size: cover;
            background-position: center;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        } .contact-page .hero-section  .overlay {
         
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }section.hero-section {
    background-size: cover !important;
}
 
     .contact-page .hero-content {
        position: relative;
        z-index: 4;
     }
     .contact-page .hero-content h1 {
    font-size: 66px;
    
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

        .contact-page .hero-content p {
            font-size: 1rem;
            font-weight: 300;
        }

        .contact-page .contact-info-section {
            padding: 50px 0;
            background-color: #fff;
        }

        .contact-page .section-header {
            margin-bottom: 50px;
            display: flex;
            justify-content: left;
            align-items: center;
        }

        .contact-page .section-header h2 {
            font-size: 48px;
            font-weight: 400;
            color: #2c2c2c;
            margin-bottom: 15px;
            width: 50%;
        }

        .contact-page .section-header p {
            color: #666;
            font-size: 17px;
            width: 40%;
        }

     .contact-page .location-card {
    background: white;
    padding: 0;
    border-radius: 8px;
    margin-bottom: 30px;
}

        .contact-page .location-card h3 {
            font-size: 32px;
            border-bottom: 1px solid #E1DEDE;
            padding-bottom: 16px;
            margin-bottom: 20px;
        }

        .contact-page .location-card .address {
            color: #000;
            font-size: 17px;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .contact-page .location-card .contact-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: #666;
            font-size: 0.9rem;
        }

        .contact-page .location-card .contact-detail a {
            color: #000;
            text-decoration: none;
            font-size: 17px;
        }

        .contact-page .location-card .contact-detail a:hover {
            color: #2c2c2c;
        }

       .contact-page .map-container {
    margin: 50px 0;
    height: 540px;
    border-radius: 0;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

        .contact-page .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

       .contact-page .form-section {
    padding: 0px 0px 50px 0px;
    background-color: #fff;
}

        .contact-page .form-section h2 {
            font-size: 48px;
            font-weight: 400;
            color: #2c2c2c;
            margin-bottom: 10px;
            text-align: center;
        }

        .contact-page .form-section .subtitle {
            font-size: 1.1rem;
            font-weight: 500;
            color: #2c2c2c;
            margin-bottom: 10px;
            text-align: center;
        }

       .contact-page .form-section .description {
    color: #000;
    font-size: 17px;
    margin-bottom: 40px;
    text-align: center;
}

        .contact-page .contact-form {
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-page .form-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #999;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .contact-page .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 25px;
            padding: 12px 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .contact-page .form-control:focus {
            border-color: #1a9b8e;
            box-shadow: 0 0 0 0.2rem rgba(26, 155, 142, 0.1);
            outline: none;
        }

        .contact-page textarea.form-control {
            border-radius: 20px;
            min-height: 150px;
            resize: vertical;
        }

     .contact-page .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #008080;
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

      .contact-page .submit-btn:hover {
    background: #000000;
    transform: translateY(-2px);
}
       

        .contact-page .btn-container {
            text-align: center;
        }

       .contact-page .instagram-section {
    padding: 50px 0px 50px 0px;
    background-color: #fff;
}

     .contact-page .instagram-section h2 {
    font-size: 48px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 40px;
    padding: 0 15px;
}

        .contact-page .instagram-slider {
            margin: 0;
        }

        .contact-page .instagram-slide {
            padding: 0 5px;
            outline: none;
        }

        .contact-page .instagram-slide img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0;
        }

      .contact-page .instagram-slide.tall img {
    height: 383px;
    object-fit: cover;
}
        .contact-page .instagram-slide.short img {
            height: 300px;
            object-fit: cover;
        }

        .contact-page .slick-prev,
        .contact-page .slick-next {
            z-index: 1;
            width: 40px;
            height: 40px;
        }

        .contact-page .slick-prev {
            left: 10px;
        }

        .contact-page .slick-next {
            right: 10px;
        }

        .contact-page .slick-prev:before,
        .contact-page .slick-next:before {
            font-size: 40px;
            color: #2c2c2c;
        }

        @media (max-width: 768px) {
            .contact-page .hero-content h1 {
                font-size: 2.5rem;
            }

            .contact-page .location-card {
                padding: 20px;
            }

            .contact-page .instagram-slide.tall img,
            .contact-page .instagram-slide.short img {
                height: 250px;
            }
        }

      .contact-page .slick-track {
    align-items: center;
    display: flex;
}
      /* =========End========== */




      /* =====Error page=== */
 .error-page .error-container {
    display: flex;
    /* min-height: 100vh; */
    justify-content: space-between;
    background: #fff;
    align-items: center;
}
      .error-page .left-section {
    /* flex: 1; */

    /* display: flex; */
    /* flex-direction: column; */
    justify-content: center;
    padding: 60px 80px;
}.error-page .right-section img {
    width: 100%;
    object-fit: cover;
    height: 560px;
}
        

        .error-page .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .error-page .logo-plumbing {
            color: #1a9b8e;
        }

        .error-page .logo-objects {
            color: #2c2c2c;
        }

        .error-page .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

  .error-page .content h1 {
    font-size: 80px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1;
}
        .error-page .content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 500px;
        }

        .error-page .home-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: #1a9b8e;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            width: fit-content;
        }

        .error-page .home-btn:hover {
            background: #158276;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 155, 142, 0.3);
            color: white;
        }

        .error-page .arrow-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

       .error-page .right-section {
    position: relative;
    width: 50%;
}

        .error-page .right-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.05) 100%);
        }

        @media (max-width: 1200px) {
            .error-page .left-section {
                padding: 50px 60px;
            }

            .error-page .content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .error-page .error-container {
                flex-direction: column;
            }

            .error-page .left-section {
                padding: 40px;
                min-height: 70vh;
            }

            .error-page .right-section {
                min-height: 400px;
            }

            .error-page .content h1 {
                font-size: 2.5rem;
            }

            .error-page .logo {
                margin-bottom: 50px;
            }
        }

        @media (max-width: 768px) {
            .error-page .left-section {
                padding: 30px 25px;
            }

            .error-page .content h1 {
                font-size: 2rem;
            }

            .error-page .content p {
                font-size: 1rem;
            }

            .error-page .logo-text {
                font-size: 1.2rem;
            }

            .error-page .right-section {
                min-height: 300px;
            }
        }
      /* =========End========== */


      /* ===Thank you==== */
     .thankyou-page .thankyou-container {
            display: flex;
            align-items: center;
        }.thankyou-page .right-section img {
    width: 100%;
    height: 538px;
    object-fit: cover;
}.thankyou-page .secondary-btn {
    filter: brightness(0);
}

.thankyou-page .secondary-btn:hover {
    filter: brightness(1);
}

        .thankyou-page .left-section {
            flex: 1;
            background-color: #fafafa;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 60px 80px;
        }

        .thankyou-page .logo {
            margin-bottom: 100px;
        }

        .thankyou-page .logo-text {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .thankyou-page .logo-plumbing {
            color: #1a9b8e;
        }

        .thankyou-page .logo-objects {
            color: #2c2c2c;
        }

        .thankyou-page .content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .thankyou-page .success-icon {
            width: 80px;
            height: 80px;
            background: #1a9b8e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
        }

        .thankyou-page .success-icon::after {
            content: '✓';
            color: white;
            font-size: 3rem;
            font-weight: 300;
            line-height: 1;
        }

        .thankyou-page .content h1 {
            font-size: 3.5rem;
            font-weight: 400;
            color: #2c2c2c;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .thankyou-page .content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 500px;
        }

        .thankyou-page .btn-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .thankyou-page .home-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: #1a9b8e;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid #1a9b8e;
        }

        .thankyou-page .home-btn:hover {
            background: #158276;
            border-color: #158276;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(26, 155, 142, 0.3);
            color: white;
        }

        .thankyou-page .secondary-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 15px 35px;
            background: transparent;
            color: #2c2c2c;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid #2c2c2c;
        }

        .thankyou-page .secondary-btn:hover {
            background: #2c2c2c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(44, 44, 44, 0.2);
        }

     .thankyou-page .arrow-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* border: 2px solid currentColor; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

        .thankyou-page .right-section {
            flex: 1;
            background: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 800 1200"><defs><linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23e8f4f3;stop-opacity:1" /><stop offset="100%" style="stop-color:%23d4e8e6;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad2)" width="800" height="1200"/><circle fill="%231a9b8e" cx="400" cy="300" r="120" opacity="0.3"/><circle fill="%231a9b8e" cx="400" cy="300" r="80" opacity="0.5"/><circle fill="%231a9b8e" cx="400" cy="300" r="50"/><path d="M 350 300 L 380 330 L 450 260" stroke="white" stroke-width="8" fill="none" stroke-linecap="round" stroke-linejoin="round"/><rect fill="%23fff" x="100" y="500" width="600" height="200" rx="10" opacity="0.6"/><circle fill="%232c2c2c" cx="200" cy="600" r="30" opacity="0.3"/><circle fill="%232c2c2c" cx="600" cy="600" r="30" opacity="0.3"/><rect fill="%23f0f0f0" x="150" y="750" width="500" height="100" rx="5" opacity="0.4"/></svg>') center/cover;
            position: relative;
        }

        .thankyou-page .right-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(26,155,142,0.05) 100%);
        }

        @media (max-width: 1200px) {
            .thankyou-page .left-section {
                padding: 50px 60px;
            }

            .thankyou-page .content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .thankyou-page .thankyou-container {
                flex-direction: column;
            }

            .thankyou-page .left-section {
                padding: 40px;
                min-height: 70vh;
            }

            .thankyou-page .right-section {
                min-height: 400px;
            }

            .thankyou-page .content h1 {
                font-size: 2.5rem;
            }

            .thankyou-page .logo {
                margin-bottom: 50px;
            }
        }

        @media (max-width: 768px) {
            .thankyou-page .left-section {
                padding: 30px 25px;
            }

            .thankyou-page .content h1 {
                font-size: 2rem;
            }

            .thankyou-page .content p {
                font-size: 1rem;
            }

            .thankyou-page .logo-text {
                font-size: 1.2rem;
            }

            .thankyou-page .right-section {
                min-height: 300px;
            }

            .thankyou-page .btn-group {
                flex-direction: column;
            }

            .thankyou-page .home-btn,
            .thankyou-page .secondary-btn {
                width: 100%;
                justify-content: center;
            }

            .thankyou-page .success-icon {
                width: 60px;
                height: 60px;
            }

            .thankyou-page .success-icon::after {
                font-size: 2rem;
            }
        }

      /* ======End==== */

/* 
      ===========Category Css=========== */


.category-page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* Breadcrumb Section */
.category-page-wrapper .breadcrumb-section {
    background-color: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.category-page-wrapper .breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.category-page-wrapper .breadcrumb-item {
    font-size: 14px;
    color: #666666;
}

.category-page-wrapper .breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.category-page-wrapper .breadcrumb-item a:hover {
    color: #008080;
}

.category-page-wrapper .breadcrumb-item.active {
    color: #008080;
    font-weight: 500;
}

/* Hero Section */
.category-page-wrapper .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=800&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    position: relative;
}

.category-page-wrapper .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.category-page-wrapper .hero-content p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.95;
}

/* Main Categories Section */
.category-page-wrapper .main-categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.category-page-wrapper .category-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border: 1px solid #e0e0e0;
}

.category-page-wrapper .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.15);
}

.category-page-wrapper .category-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-page-wrapper .category-card:hover .category-card-img {
    transform: scale(1.05);
}

.category-page-wrapper .category-card-body {
    padding: 25px;
    padding-bottom: 0;
}section.equipment-grid .row {
    justify-content: center;
    gap: 0;
}

.category-page-wrapper .category-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.category-page-wrapper .category-link {
    color: #008080;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.category-page-wrapper .category-link:hover {
    gap: 10px;
}

.category-page-wrapper .subcategory-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.category-page-wrapper .subcategory-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #666666;
    transition: color 0.3s;
}

.category-page-wrapper .subcategory-list li:last-child {
    border-bottom: none;
}

.category-page-wrapper .subcategory-list li:hover {
    color: #008080;
    cursor: pointer;
    padding-left: 5px;
}

/* Equipment Grid Section */
.category-page-wrapper .equipment-grid {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.category-page-wrapper .equipment-item {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.category-page-wrapper .equipment-item:hover {
    box-shadow: 0 5px 20px rgba(0, 128, 128, 0.1);
    transform: translateY(-5px);
}

.category-page-wrapper .equipment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #008080;
}

.category-page-wrapper .equipment-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

/* Additional Categories Section */
.category-page-wrapper .additional-categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.category-page-wrapper .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    padding-bottom: 0;
}

.category-page-wrapper .additional-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    
    transition: all 0.3s;
    height: 100%;
}

.category-page-wrapper .additional-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-page-wrapper .additional-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-page-wrapper .additional-card-body {
    padding: 25px;
}

.category-page-wrapper .additional-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

/* Top Products Section */
.category-page-wrapper .top-products {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.category-page-wrapper .product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 0;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.category-page-wrapper .product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.15);
    transform: translateY(-5px);
}

.category-page-wrapper .product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 141px;
    background: #f5f5f5;
}
.category-page-wrapper .product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 0;
    transition: transform 0.3s;
}

.category-page-wrapper .product-card:hover .product-img {
    transform: scale(1.05);
}

.category-page-wrapper .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #008080;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.category-page-wrapper .product-body {
    padding: 20px;
}

.category-page-wrapper .product-title {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 12px;
   
    display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-page-wrapper .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.category-page-wrapper .stars {
    color: #ffa500;
    font-size: 14px;
}
.category-page-wrapper .product-price {
    font-size: 17px;
    font-weight: 700;
    color: #008080;
    margin-bottom: 15px;
}

.category-page-wrapper .product-price span {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.category-page-wrapper .add-to-cart-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-page-wrapper .qty-selector {
    width: 50px;
    padding: 4px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
}
.category-page-wrapper .add-to-cart-btn {
    flex: 1;
    background: #008080;
    color: #ffffff;
    border: none;
    padding: 7px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
}

.category-page-wrapper .add-to-cart-btn:hover {
    background: #006666;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {

    .category-page-wrapper .hero-content h1 {
        font-size: 32px;
    }

    .category-page-wrapper .hero-content p {
        font-size: 16px;
    }

    .category-page-wrapper .section-title {
        font-size: 28px;
    }

    .category-page-wrapper .hero-section {
        padding: 60px 0;
    }

}

      /* ====End==== */


      /* ========Product Details ========= */
 .product-detail-page-wrapper {
          
            background-color: #f5f5f5;
            color: #333333;
            line-height: 1.6;
            padding: 60px 0;
        }

        .product-detail-page-wrapper .container {
            max-width: 1400px;
        }

        /* Product Gallery Section */
       .product-detail-page-wrapper .product-gallery {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #ddd;
}

        .product-detail-page-wrapper .main-image-container {
            position: relative;
            margin-bottom: 25px;
            border-radius: 12px;
            overflow: hidden;
            background: #f5f5f5;
           
        }

       .product-detail-page-wrapper .main-image-slider .slick-slide {
    outline: none;
    background: #fff;
}
  .product-detail-page-wrapper .main-image-slider .slick-slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
    padding: 0;
}

    .product-detail-page-wrapper .gallery-badge {
    position: absolute;
    top: 48px;
    left: 41px;
    background: #008080;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 10;
}

        /* Thumbnail Slider */
        .product-detail-page-wrapper .thumbnail-slider {
            margin-top: 20px;
        }

       .product-detail-page-wrapper .thumbnail-slider .slick-slide {
    padding: 0 0px;
    outline: none;
    margin: 0px 4px;
}

        .product-detail-page-wrapper .thumbnail-item {
            cursor: pointer;
            border: 3px solid transparent;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f5f5f5;
            aspect-ratio: 1;
        }

  .product-detail-page-wrapper .thumbnail-item img {
    width: 100%;
    height: 161px;
    object-fit: cover;
    padding: 6px;
}.product-detail-page-wrapper .thumbnail-slider .slick-track {
    padding-top: 6px;
}
        .product-detail-page-wrapper .thumbnail-item:hover {
            border-color: #008080;
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
        }

        .product-detail-page-wrapper .thumbnail-item.slick-current {
            border-color: #008080;
            background: #ffffff;
        }

        /* Slick Arrows Custom */
        .product-detail-page-wrapper .slick-prev, .product-detail-page-wrapper .slick-next {
            width: 40px;
            height: 40px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .slick-prev:hover, .product-detail-page-wrapper .slick-next:hover {
            background: #008080;
        }

        .product-detail-page-wrapper .slick-prev:before, .product-detail-page-wrapper .slick-next:before {
            color: #333333;
            font-size: 20px;
        }

        .product-detail-page-wrapper .slick-prev:hover:before, .product-detail-page-wrapper .slick-next:hover:before {
            color: #ffffff;
        }

        .product-detail-page-wrapper .slick-prev {
            left: -15px;
        }

        .product-detail-page-wrapper .slick-next {
            right: -15px;
        }

        /* Product Details Section */
       .product-detail-page-wrapper .product-details {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #ddd;
}
        .product-detail-page-wrapper .product-title {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .product-detail-page-wrapper .product-subtitle {
            font-size: 14px;
            color: #666666;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .product-detail-page-wrapper .product-subtitle span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .product-detail-page-wrapper .rating-stars {
            color: #FFA500;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .product-detail-page-wrapper .rating-count {
            color: #666666;
            font-size: 13px;
        }

        /* Pricing Section */
        .product-detail-page-wrapper .pricing-section {
            background: #f5f5f5;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .price-container {
            display: flex;
            align-items: baseline;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .product-detail-page-wrapper .current-price {
            font-size: 36px;
            font-weight: 700;
            color: #008080;
        }

        .product-detail-page-wrapper .original-price {
            font-size: 24px;
            color: #666666;
            text-decoration: line-through;
        }

        .product-detail-page-wrapper .discount-badge {
            background: #dc3545;
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
        }

        .product-detail-page-wrapper .savings-text {
            color: #28a745;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-detail-page-wrapper .savings-text svg {
            width: 18px;
            height: 18px;
        }

        /* Stock Status */
        .product-detail-page-wrapper .stock-status {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            padding: 15px;
            background: #d4edda;
            border-radius: 10px;
            border-left: 4px solid #28a745;
        }

        .product-detail-page-wrapper .stock-status svg {
            color: #28a745;
            width: 22px;
            height: 22px;
        }

        .product-detail-page-wrapper .stock-status-text {
            font-weight: 600;
            color: #155724;
        }

        /* Product Options */
        .product-detail-page-wrapper .product-options {
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .option-group {
            margin-bottom: 25px;
        }

        .product-detail-page-wrapper .option-label {
            font-weight: 600;
            font-size: 15px;
            color: #333333;
            margin-bottom: 12px;
            display: block;
        }

        .product-detail-page-wrapper .custom-select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            color: #333333;
            background: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .custom-select:focus {
            outline: none;
            border-color: #008080;
            box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
        }

        /* Quantity Selector */
        .product-detail-page-wrapper .quantity-selector {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .product-detail-page-wrapper .quantity-label {
            font-weight: 600;
            font-size: 15px;
            color: #333333;
        }

        .product-detail-page-wrapper .quantity-controls {
            display: flex;
            align-items: center;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
        }

        .product-detail-page-wrapper .qty-btn {
            background: #ffffff;
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            color: #333333;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .qty-btn:hover {
            background: #008080;
            color: #ffffff;
        }

        .product-detail-page-wrapper .qty-input {
            border: none;
            border-left: 2px solid #e0e0e0;
            border-right: 2px solid #e0e0e0;
            padding: 12px 20px;
            width: 80px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
        }

        .product-detail-page-wrapper .qty-input:focus {
            outline: none;
        }

        /* Action Buttons */
        .product-detail-page-wrapper .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .btn-primary-custom {
            background: #008080;
            color: #ffffff;
            border: none;
            padding: 18px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .product-detail-page-wrapper .btn-primary-custom:hover {
            background: #006666;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
        }

        .product-detail-page-wrapper .btn-secondary-custom {
            background: #ffffff;
            color: #333333;
            border: 2px solid #e0e0e0;
            padding: 18px 30px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .product-detail-page-wrapper .btn-secondary-custom:hover {
            border-color: #008080;
            color: #008080;
            background: rgba(0, 128, 128, 0.05);
        }

        .product-detail-page-wrapper .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* Features List */
        .product-detail-page-wrapper .features-section {
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .section-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-detail-page-wrapper .section-title svg {
            color: #008080;
            width: 24px;
            height: 24px;
        }

        .product-detail-page-wrapper .features-list {
            list-style: none;
            padding: 0;
        }

        .product-detail-page-wrapper .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            color: #666666;
        }.product-card h3.product-title a {
    color: rgb(0 0 0) !important;
    text-decoration: none !important;
}
a {
    
    text-decoration: none !important;
}
.additional-card a {
	 color: rgb(0 0 0) !important;
    text-decoration: none !important;
}

        .product-detail-page-wrapper .features-list li:last-child {
            border-bottom: none;
        }

        .product-detail-page-wrapper .features-list li svg {
            color: #008080;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .product-detail-page-wrapper .feature-label {
            font-weight: 600;
            color: #333333;
            min-width: 120px;
        }

        /* Trust Badges */
        .product-detail-page-wrapper .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 10px;
        }

        .product-detail-page-wrapper .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: #ffffff;
            border-radius: 8px;
            font-size: 13px;
            color: #666666;
            flex: 1;
            min-width: 140px;
        }

        .product-detail-page-wrapper .trust-badge svg {
            color: #008080;
            width: 20px;
            height: 20px;
        }

        /* ============================================ */
        /* ADDITIONAL SECTIONS BELOW MAIN PRODUCT */
        /* ============================================ */

        /* Works With Section */
      .product-detail-page-wrapper .works-with-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #ddd;
}

        .product-detail-page-wrapper .works-with-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .product-detail-page-wrapper .works-with-section h2 svg {
            color: #008080;
            width: 28px;
            height: 28px;
        }

        .product-detail-page-wrapper .works-with-subtitle {
            color: #666666;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .product-card {
            background: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-detail-page-wrapper .product-card:hover {
            border-color: #008080;
            box-shadow: 0 6px 20px rgba(0, 128, 128, 0.15);
            transform: translateY(-5px);
        }

        .product-detail-page-wrapper .product-card-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: contain;
            background: #f5f5f5;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .product-detail-page-wrapper .product-card-title {
            font-size: 14px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 8px;
            line-height: 1.4;
            flex-grow: 1;
        }

        .product-detail-page-wrapper .product-card-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 12px;
            font-size: 12px;
        }

        .product-detail-page-wrapper .product-card-rating .stars {
            color: #FFA500;
            display: flex;
            gap: 2px;
        }

        .product-detail-page-wrapper .product-card-price {
            font-size: 18px;
            font-weight: 700;
            color: #008080;
            margin-bottom: 15px;
        }

        .product-detail-page-wrapper .product-card-btn {
            background: #008080;
            color: #ffffff;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .product-card-btn:hover {
            background: #006666;
            transform: translateY(-2px);
        }

        /* Product Description Section */
        .product-detail-page-wrapper .description-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
           border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .description-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .description-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .product-detail-page-wrapper .description-text p {
            color: #666666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .description-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .product-detail-page-wrapper .feature-icons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .product-detail-page-wrapper .feature-icon-item {
            text-align: center;
            padding: 25px 15px;
            background: #f5f5f5;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .feature-icon-item:hover {
            background: #008080;
            color: #ffffff;
            transform: translateY(-5px);
        }

        .product-detail-page-wrapper .feature-icon-item svg {
            width: 40px;
            height: 40px;
            margin-bottom: 15px;
            color: #008080;
        }

        .product-detail-page-wrapper .feature-icon-item:hover svg {
            color: #ffffff;
        }

        .product-detail-page-wrapper .feature-icon-title {
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .product-detail-page-wrapper .feature-icon-desc {
            font-size: 12px;
            color: #666666;
        }

        .product-detail-page-wrapper .feature-icon-item:hover .feature-icon-desc {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Detailed Features Section */
        .product-detail-page-wrapper .detailed-features-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
           border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .detailed-features-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
        }

        .product-detail-page-wrapper .detailed-features-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 25px;
        }

        .product-detail-page-wrapper .detailed-features-text p {
            color: #666666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .product-detail-page-wrapper .detailed-features-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* Questions & Answers Section */
        .product-detail-page-wrapper .qa-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .qa-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 10px;
        }

        .product-detail-page-wrapper .qa-subtitle {
            color: #666666;
            font-size: 14px;
            margin-bottom: 25px;
        }

        .product-detail-page-wrapper .qa-search-box {
            display: flex;
            gap: 15px;
            margin-bottom: 35px;
        }

        .product-detail-page-wrapper .qa-search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
        }

        .product-detail-page-wrapper .qa-search-input:focus {
            outline: none;
            border-color: #008080;
        }

        .product-detail-page-wrapper .qa-search-btn {
            background: #008080;
            color: #ffffff;
            border: none;
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .qa-search-btn:hover {
            background: #006666;
        }

        .product-detail-page-wrapper .faq-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .faq-item {
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        .product-detail-page-wrapper .faq-question {
            font-weight: 600;
            color: #333333;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .product-detail-page-wrapper .faq-answer {
            color: #666666;
            line-height: 1.7;
            font-size: 14px;
        }

        /* Related Products Carousel Section */
        .product-detail-page-wrapper .related-products-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px;
            margin-top: 40px;
           border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .related-products-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .product-carousel {
            margin: 0 -10px;
        }

        .product-detail-page-wrapper .product-carousel .slick-slide {
            padding: 0 10px;
        }

        /* Customer Reviews Section */
     .product-detail-page-wrapper .reviews-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #ddd;
}

        .product-detail-page-wrapper .reviews-section h2 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 30px;
        }

        .product-detail-page-wrapper .review-summary {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 2px solid #e0e0e0;
        }

        .product-detail-page-wrapper .review-score {
            text-align: center;
            padding: 30px;
            background: #f5f5f5;
            border-radius: 12px;
        }

        .product-detail-page-wrapper .review-score-number {
            font-size: 64px;
            font-weight: 700;
            color: #008080;
            line-height: 1;
            margin-bottom: 10px;
        }

        .product-detail-page-wrapper .review-score-stars {
            color: #FFA500;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .product-detail-page-wrapper .review-score-count {
            color: #666666;
            font-size: 14px;
        }

        .product-detail-page-wrapper .review-bars {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 15px;
        }

        .product-detail-page-wrapper .review-bar-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .product-detail-page-wrapper .review-bar-label {
            font-size: 14px;
            color: #666666;
            min-width: 60px;
        }

        .product-detail-page-wrapper .review-bar-bg {
            flex: 1;
            height: 12px;
            background: #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
        }

        .product-detail-page-wrapper .review-bar-fill {
            height: 100%;
            background: #008080;
            border-radius: 6px;
        }

        .product-detail-page-wrapper .review-bar-count {
            font-size: 14px;
            color: #666666;
            min-width: 40px;
            text-align: right;
        }

        /* Customer Photos Section */
        .product-detail-page-wrapper .customer-photos-section {
            margin-top: 40px;
        }

        .product-detail-page-wrapper .customer-photos-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .customer-photos-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .product-detail-page-wrapper .customer-photo {
            aspect-ratio: 1;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .customer-photo:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .product-detail-page-wrapper .customer-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Leave Review Button */
        .product-detail-page-wrapper .leave-review-section {
            text-align: center;
            margin-top: 40px;
            padding: 40px;
            background: #f5f5f5;
            border-radius: 12px;
        }

        .product-detail-page-wrapper .leave-review-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }

        .product-detail-page-wrapper .leave-review-btn {
            background: #008080;
            color: #ffffff;
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .leave-review-btn:hover {
            background: #006666;
            transform: translateY(-2px);
        }

        /* ============================================ */
        /* SIDEBAR ADDITIONAL SECTIONS */
        /* ============================================ */

        /* Style Options Section */
        .product-detail-page-wrapper .style-options {
            margin-bottom: 25px;
        }

        .product-detail-page-wrapper .style-option {
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: #333333;
        }

        .product-detail-page-wrapper .style-option:hover {
            border-color: #008080;
            background: rgba(0, 128, 128, 0.05);
        }

    .product-detail-page-wrapper .style-option.selected {
    background: #008080;
    border-color: #008080;
    color: #ffffff;
    font-weight: 600;
}
        .product-detail-page-wrapper .style-option.selected svg {
            stroke: #ffffff;
        }

        .product-detail-page-wrapper .power-type-section {
            margin-top: 25px;
        }

        .product-detail-page-wrapper .power-type-label {
            font-size: 15px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 12px;
        }

        .product-detail-page-wrapper .power-type-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .product-detail-page-wrapper .power-type-btn {
            padding: 14px;
            border: 2px solid #e0e0e0;
            background: #ffffff;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            color: #333333;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .power-type-btn:hover {
            border-color: #008080;
        }

        .product-detail-page-wrapper .power-type-btn.active {
            border-color: #008080;
            background: #008080;
            color: #ffffff;
        }

        /* Brand Logo Section */
        .product-detail-page-wrapper .brand-logo-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
          border: 1px solid #ddd;
            text-align: center;
        }

        .product-detail-page-wrapper .brand-logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .product-detail-page-wrapper .brand-logo {
            width: 200px;
            height: auto;
        }

        .product-detail-page-wrapper .brand-link {
            color: #008080;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .brand-link:hover {
            color: #006666;
            text-decoration: underline;
        }

        /* Need Parts & Accessories Section */
        .product-detail-page-wrapper .need-parts-section {
            background: #333333;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .product-detail-page-wrapper .need-parts-content {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .need-parts-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .product-detail-page-wrapper .need-parts-icon svg {
            width: 35px;
            height: 35px;
            stroke: #ffffff;
        }

        .product-detail-page-wrapper .need-parts-text h3 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .product-detail-page-wrapper .need-parts-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            line-height: 1.5;
        }

        .product-detail-page-wrapper .need-parts-btn {
            width: 100%;
            background: #28a745;
            color: #ffffff;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .need-parts-btn:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        /* Resources and Downloads Section */
        .product-detail-page-wrapper .resources-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
           border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .resources-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .resources-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .resource-item {
            text-align: center;
        }

        .product-detail-page-wrapper .resource-thumbnail {
            width: 100%;
            aspect-ratio: 3/4;
            background: #f5f5f5;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            border: 2px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-detail-page-wrapper .resource-thumbnail:hover {
            border-color: #008080;
            box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
        }

        .product-detail-page-wrapper .resource-thumbnail svg {
            width: 40px;
            height: 40px;
            stroke: #666666;
        }

        .product-detail-page-wrapper .resource-label {
            font-size: 13px;
            font-weight: 600;
            color: #008080;
        }

        .product-detail-page-wrapper .resources-note {
            font-size: 12px;
            color: #666666;
            line-height: 1.6;
            margin-top: 15px;
        }

        .product-detail-page-wrapper .resources-note a {
            color: #008080;
            text-decoration: none;
        }

        .product-detail-page-wrapper .resources-note a:hover {
            text-decoration: underline;
        }

        /* Warranty Section */
        .product-detail-page-wrapper .warranty-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
          border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .warranty-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }

        .product-detail-page-wrapper .warranty-text {
            font-size: 13px;
            color: #666666;
            line-height: 1.7;
        }

        /* Resources Links */
        .product-detail-page-wrapper .resources-links {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
          border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .resources-links-title {
            font-size: 16px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }

        .product-detail-page-wrapper .resource-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #008080;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            padding: 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .product-detail-page-wrapper .resource-link:hover {
            background: rgba(0, 128, 128, 0.05);
        }

        .product-detail-page-wrapper .resource-link svg {
            stroke: #008080;
        }

        /* Specs Section */
        .product-detail-page-wrapper .specs-section {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
          border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .specs-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .specs-table {
            display: flex;
            flex-direction: column;
        }

        .product-detail-page-wrapper .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .product-detail-page-wrapper .spec-row:last-child {
            border-bottom: none;
        }

        .product-detail-page-wrapper .spec-label {
            font-weight: 600;
            color: #333333;
            font-size: 14px;
        }

        .product-detail-page-wrapper .spec-value {
            color: #666666;
            font-size: 14px;
        }

        /* Sidebar Customer Photos Section */
        .product-detail-page-wrapper .sidebar-customer-photos {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
           border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .sidebar-photos-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
        }

        .product-detail-page-wrapper .sidebar-photos-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .product-detail-page-wrapper .sidebar-photo-item {
            aspect-ratio: 1;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .product-detail-page-wrapper .sidebar-photo-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .product-detail-page-wrapper .sidebar-photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-detail-page-wrapper .sidebar-photo-item.video-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .product-detail-page-wrapper .sidebar-photo-item.video-item svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            fill: #ffffff;
            z-index: 2;
        }

        /* Sidebar Leave Review Section */
        .product-detail-page-wrapper .sidebar-leave-review {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
            margin-bottom: 30px;
           border: 1px solid #ddd;
        }

        .product-detail-page-wrapper .sidebar-review-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 12px;
        }

        .product-detail-page-wrapper .sidebar-review-text {
            font-size: 13px;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

     .product-detail-page-wrapper .sidebar-review-btn {
    width: 100%;
    background: #008080;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

        .product-detail-page-wrapper .sidebar-review-btn:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .product-detail-page-wrapper .product-gallery {
                position: relative;
                top: 0;
                margin-bottom: 30px;
            }

            .product-detail-page-wrapper .main-image-slider .slick-slide img {
                height: 400px;
            }

            .product-detail-page-wrapper .description-content,
            .product-detail-page-wrapper .detailed-features-content {
                grid-template-columns: 1fr;
            }

            .product-detail-page-wrapper .review-summary {
                grid-template-columns: 1fr;
            }

            .product-detail-page-wrapper .feature-icons {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-detail-page-wrapper .customer-photos-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .product-detail-page-wrapper .resources-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .product-detail-page-wrapper .sidebar-photos-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .product-detail-page-wrapper {
                padding: 30px 0;
            }

            .product-detail-page-wrapper .product-gallery, 
            .product-detail-page-wrapper .product-details, 
            .product-detail-page-wrapper .works-with-section,
            .product-detail-page-wrapper .description-section, 
            .product-detail-page-wrapper .detailed-features-section,
            .product-detail-page-wrapper .qa-section, 
            .product-detail-page-wrapper .related-products-section, 
            .product-detail-page-wrapper .reviews-section {
                padding: 20px;
            }

            .product-detail-page-wrapper .product-title {
                font-size: 22px;
            }

            .product-detail-page-wrapper .current-price {
                font-size: 28px;
            }

            .product-detail-page-wrapper .main-image-slider .slick-slide img {
                height: 300px;
            }

            .product-detail-page-wrapper .action-buttons {
                flex-direction: column;
            }

            .product-detail-page-wrapper .trust-badge {
                min-width: 100%;
            }

            .product-detail-page-wrapper .feature-icons {
                grid-template-columns: 1fr;
            }

            .product-detail-page-wrapper .qa-search-box {
                flex-direction: column;
            }

            .product-detail-page-wrapper .customer-photos-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .product-detail-page-wrapper .review-score-number {
                font-size: 48px;
            }

            .product-detail-page-wrapper .resources-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .product-detail-page-wrapper .sidebar-photos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .product-detail-page-wrapper-top .breadcrumb-wrapper {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .product-detail-page-wrapper-top .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .product-detail-page-wrapper-top .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 13px;
            line-height: 1.4;
        }

        .product-detail-page-wrapper-top .breadcrumb-item {
            display: flex;
            align-items: center;
            position: relative;
        }

        .product-detail-page-wrapper-top .breadcrumb-item:not(:last-child) {
            margin-right: 8px;
        }

        .product-detail-page-wrapper-top .breadcrumb-link {
            color: #008080;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 4px 0;
        }

        .product-detail-page-wrapper-top .breadcrumb-link:hover {
            color: #006666;
            text-decoration: underline;
        }

        .product-detail-page-wrapper-top .breadcrumb-separator {
            width: 16px;
            height: 16px;
            margin: 0 6px;
            color: #008080;
            flex-shrink: 0;
        }

        .product-detail-page-wrapper-top .breadcrumb-current {
            color: #333333;
            font-weight: 600;
            font-size: 13px;
        }

        .product-detail-page-wrapper-top .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .product-detail-page-wrapper-top .breadcrumb-wrapper {
                padding: 10px 0;
            }

            .product-detail-page-wrapper-top .breadcrumb-list {
                font-size: 12px;
            }

            .product-detail-page-wrapper-top .breadcrumb-item:not(:nth-last-of-type(2)):not(:last-child) {
                display: none;
            }

            .product-detail-page-wrapper-top .breadcrumb-separator {
                width: 14px;
                height: 14px;
                margin: 0 4px;
            }

            .product-detail-page-wrapper-top .breadcrumb-current {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .product-detail-page-wrapper-top .breadcrumb-list {
                font-size: 11px;
            }

            .product-detail-page-wrapper-top .breadcrumb-current {
                font-size: 11px;
                line-height: 1.3;
            }
        }

        .product-detail-page-wrapper-top .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}
      /* ====End=== */


      .product-title-details .product-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}.product-title-details .product-subtitle span {
    display: flex;
    align-items: center;
    gap: 6px;
}.product-title-details .rating-stars {
    color: #FFA500;
    display: flex;
    align-items: center;
    gap: 4px;
}.product-title-details .rating-count {
    color: #666666;
    font-size: 13px;
}.product-title-details .product-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-title-details h1 {
    font-size: 43px !important;
}

.product-title-details {
    padding-bottom: 20px;
}

/*  */

.blog-page .blog-card-body a {
    text-decoration: none;
}

.blog-page .popular-post a {
    text-decoration: none;
}


.product-detail-page-wrapper .product-carousel .product-card img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    background: #dddddd4a;
    padding: 15px;
    margin-bottom: 10px;
}

.product-detail-page-wrapper .product-carousel .product-card a {
    color: #000;
    text-decoration: none;
}

.product-detail-page-wrapper .product-carousel .product-card a.product-card-btn {
    color: #fff;
    text-align: center;
}
.product-detail-page-wrapper .product-card img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    background: #dddddd4a;
    padding: 15px;
    margin-bottom: 10px;
}

.product-detail-page-wrapper .product-card a {
    color: #000;
    text-decoration: none;
}

.product-detail-page-wrapper .product-card .add_to_cart_button {
    background: #008080;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}.woocommerce #review_form #respond .form-submit input {
background: #008080;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;

}
ol.commentlist {
    display: none;
}.woocommerce #reviews #comments ol.commentlist li .comment-text {
    margin: 0 0 0 50px;
    border: 1px solid #e1dde7;
    border-radius: 4px;
    padding: 1em 1em 0;
    display: none;
}
div#reviews h2.woocommerce-Reviews-title {
    font-size: 19px;
    padding-bottom: 10px;
    display: none;
}

div#reviews textarea#comment {
    border-radius: 10px;
    border-color: #008080;
}



.woocommerce #review_form a {
    color: #008080;
}
/* ===== MY ACCOUNT PAGE ===== */
#customer_login {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

/* ===== BOX DESIGN ===== */
#customer_login .col-1,
#customer_login .col-2 {
    width: 50%;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

#customer_login .col-1:hover,
#customer_login .col-2:hover {
    transform: translateY(-5px);
}

/* ===== HEADINGS ===== */
#customer_login h2 {
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
}

#customer_login h2::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #008080;
    display: block;
    margin-top: 8px;
}

/* ===== INPUT FIELDS ===== */
#customer_login input[type="text"],
#customer_login input[type="email"],
#customer_login input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    transition: 0.3s;
    font-size: 14px;
}

#customer_login input:focus {
    border-color: #008080;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,128,128,0.1);
}

/* ===== LABEL ===== */
#customer_login label {
    font-size: 14px;
    font-weight: 500;
}

/* ===== BUTTON ===== */
#customer_login button {
    width: 100%;
    padding: 12px;
    background: #008080;
    color: #fff;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 15px;
    cursor: pointer;
}

#customer_login button:hover {
    background: #006666;
}

/* ===== CHECKBOX ===== */
#customer_login input[type="checkbox"] {
    margin-right: 6px;
}

/* ===== LOST PASSWORD ===== */
#customer_login a {
    font-size: 13px;
    color: #008080;
    text-decoration: none;
}

#customer_login a:hover {
    text-decoration: underline;
}

/* ===== ERROR / SUCCESS ===== */
.woocommerce-error,
.woocommerce-message {
    max-width: 1100px;
    margin: 20px auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #customer_login {
        flex-direction: column;
    }

    #customer_login .col-1,
    #customer_login .col-2 {
        width: 100%;
    }
}
/* ===== MY ACCOUNT WRAPPER ===== */
.woocommerce-account .woocommerce {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
    padding: 20px;
}

/* ===== SIDEBAR MENU ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* REMOVE BULLETS */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
}

/* MENU LINKS */
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

/* ACTIVE + HOVER */
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    background: #008080;
    color: #fff;
}

/* ===== CONTENT AREA ===== */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ===== DASHBOARD BOX ===== */
.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 15px;
}

/* ===== BUTTON ===== */
.woocommerce-account .button {
    background: #008080;
    color: #fff;
    border-radius: 6px;
    padding: 10px 18px;
    transition: 0.3s;
}

.woocommerce-account .button:hover {
    background: #006666;
}

/* ===== TABLE STYLE ===== */
.woocommerce-account table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-account table th,
.woocommerce-account table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}
/* ===== SAME WIDTH AS MY ACCOUNT ===== */
.woocommerce-lost-password .woocommerce {
    max-width: 1100px; /* same as account page */
    margin: 60px auto;
    padding: 20px;
}

/* ===== CENTER CARD ===== */
.woocommerce-lost-password form {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ===== TEXT ===== */
.woocommerce-lost-password p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== LABEL ===== */
.woocommerce-lost-password label {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

/* ===== INPUT SAME AS ACCOUNT ===== */
.woocommerce-lost-password input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.woocommerce-lost-password input:focus {
    border-color: #008080;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,128,128,0.1);
}

/* ===== BUTTON SAME STYLE ===== */
.woocommerce-lost-password button {
    width: 100%;
    padding: 12px;
    background: #008080;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.woocommerce-lost-password button:hover {
    background: #006666;
}

/* ===== ALIGN CENTER ===== */
.woocommerce-lost-password .woocommerce {
    text-align: center;
}

/* ===== ERROR / MESSAGE ===== */
.woocommerce-message,
.woocommerce-error {
    max-width: 500px;
    margin: 20px auto;
}
/* ===== INPUT FIX ===== */
.woocommerce-lost-password input.input-text {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
}

/* ===== BUTTON FIX ===== */
.woocommerce-lost-password button.button {
    width: 100% !important;
    padding: 14px !important;
    background: #008080 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    cursor: pointer;
}

/* HOVER */
.woocommerce-lost-password button.button:hover {
    background: #006666 !important;
}

/* ===== FORM WIDTH FIX ===== */
.woocommerce-lost-password form {
    max-width: 500px !important;
    margin: auto;
}

/* ===== FIELD WRAPPER FIX ===== */
.woocommerce-lost-password .form-row {
    width: 100%;
}



/* ==========Shop Product============= */

.shop-products { padding: 1.5rem 0; }

.shop-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #008080;
}

.products-header__text {
  font-size: 13px;
  font-weight: 500;
  color: #008080;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sort-dropdown__select {
  border: 1.5px solid #008080;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: #000;
  background: #fff;
  cursor: pointer;
  outline: none;
}
.sort-dropdown__select:focus {
  box-shadow: 0 0 0 2px rgba(0,128,128,.25);
}

.shop-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.product-card:hover {
  border-color: #008080;
  box-shadow: 0 4px 16px rgba(0,128,128,.12);
}

.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s;
}
.product-card__wishlist:hover { border-color: #008080; }
.product-card__wishlist i { font-size: 14px; color: #888; transition: color .2s; }
.product-card__wishlist:hover i { color: #008080; }

.product-card__image {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }

.product-card__name { padding: .6rem 1rem .2rem; margin: 0; }
.product-card__name a { font-size: 14px; font-weight: 500; color: #000; text-decoration: none; line-height: 1.4; }
.product-card__name a:hover { color: #008080; }

.variations_form {
  padding: .5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.variations { width: 100%; border: none; border-collapse: collapse; }
.variations .label label { font-size: 12px; color: #555; font-weight: 500; }
.woo-selected-variation-item-name { font-size: 12px; color: #008080; font-weight: 500; }

.variable-items-wrapper {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  flex-wrap: wrap;
}
.variable-item {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .15s;
}
.variable-item:hover { transform: scale(1.1); }
.variable-item.selected {
  border-color: #008080;
  outline: 2px solid rgba(0,128,128,.3);
  outline-offset: 1px;
}
.variable-item-span-color {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
}

.reset_variations { font-size: 11px; color: #008080; text-decoration: none; margin-top: 2px; }
.reset_variations:hover { text-decoration: underline; }

.woocommerce-variation-price .price {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}
.woocommerce-Price-currencySymbol { color: #008080; }

.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .4rem;
}

.quantity input {
  width: 52px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 13px;
  color: #000;
  text-align: center;
  outline: none;
}
.quantity input:focus { border-color: #008080; }

.single_add_to_cart_button {
    flex: 1;
    background: #008080 !important;
    color: #fff;
    border: none;
    border-radius: 6px !important;
    padding: 15px 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: background .2s;
}.woocommerce-variation-add-to-cart .quantity {
    width: 100%;
}
.single_add_to_cart_button:hover { background: #006666; }
.single_add_to_cart_button:active { background: #004d4d; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}


/* ==========End========= */



/* =====Recommendation section======== */


.recommendations-section .recommendation-card .bottom {
    background: #fff;
    padding: 20px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* =========ENd============ */


.woocommerce-cart .woocommerce-message, .woocommerce-cart .woocommerce-error {
    max-width: 100%;
    margin: 20px auto;
    margin-bottom: 0;
}.woocommerce-message {
    border-top-color: #008080;
}.woocommerce-message::before {
    content: "\e015";
    color: #018181;
}a.button.wc-forward {
    background: #008080;
    color: #fff;
}.woocommerce-cart .cart-page .product-info {
    padding-left: 0;
    display: flex;
    gap: 5px;
}
.woocommerce-cart .cart-page .product-info img {
    border-radius: 10px;
}button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
    background: #008080;
    border: navajowhite;
    border-radius: 100px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
}


/* ===Sigle product sticky=== */
/* ===== STICKY PRODUCT BAR ===== */
.sticky-product-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 2px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  transform: translateY(-110%);
  transition: transform .28s ease;
}
.sticky-product-bar.spb-visible {
  transform: translateY(0);
}

.spb-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.spb-thumb {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #f5f5f5;
}
.spb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.spb-meta { flex: 1; min-width: 0; }
.spb-name {
  font-size: 14px; font-weight: 700; color: #000;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.spb-sub { display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.spb-stars { color: #f5a623; font-size: 13px; }
.spb-sku { font-size: 11px; color: #888; }

.spb-price { font-size: 22px; font-weight: 700; color: #c0392b; flex-shrink: 0; }
.spb-price .woocommerce-Price-currencySymbol { font-size: 16px; }

.spb-pre-add { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.spb-qty {
  width: 54px; border: 1.5px solid #ccc; border-radius: 4px;
  padding: 7px 8px; font-size: 14px; text-align: center;
}
.spb-qty:focus { outline: none; border-color: #008080; }

.spb-btn-cart {
  background: #c0392b; color: #fff; border: none;
  border-radius: 4px; padding: 9px 20px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.spb-btn-cart:hover { background: #a93226; }

.spb-post-add {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.spb-added-txt { font-size: 12px; color: #555; line-height: 1.4; white-space: nowrap; }

.spb-btn-viewcart {
  display: flex; align-items: center; gap: 6px;
  background: #2ecc71; color: #fff; border: none;
  border-radius: 4px; padding: 9px 16px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  white-space: nowrap; cursor: pointer; transition: background .2s;
}
.spb-btn-viewcart:hover { background: #27ae60; }

.spb-btn-checkout {
  display: flex; align-items: center; gap: 6px;
  background: #e67e22; color: #fff; border: none;
  border-radius: 4px; padding: 9px 16px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  white-space: nowrap; cursor: pointer; transition: background .2s;
}
.spb-btn-checkout:hover { background: #d35400; }

.spb-close {
  background: none; border: none; font-size: 18px;
  color: #aaa; cursor: pointer; flex-shrink: 0; padding: 4px 8px;
}
.spb-close:hover { color: #333; }

.spb-nav {
  border-top: 1px solid #ebebeb;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1300px; margin: 0 auto;
}
.spb-nav-links { display: flex; }
.spb-nav-links a {
  font-size: 13px; color: #333; text-decoration: none;
  padding: 9px 16px; border-bottom: 3px solid transparent;
  white-space: nowrap; transition: color .15s, border-color .15s;
}
.spb-nav-links a:hover, .spb-nav-links a.spb-active {
  color: #008080; border-bottom-color: #008080;
}
.spb-back-top {
  font-size: 13px; color: #008080; text-decoration: none; white-space: nowrap;
}
.spb-back-top:hover { text-decoration: underline; }
/* End */


/* ==========Menu======== */
@media (max-width: 768px) {
  .nav-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
  }
  .nav-link-wrap .nav-link {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
  }
  .mega-toggle-btn {
    background: none;
    border: none;
    border-left: 1px solid #eee;
    padding: 14px 18px;
    cursor: pointer;
    color: #555;
    flex-shrink: 0;
  }
  .mega-toggle-btn i {
    transition: transform 0.3s ease;
    display: block;
  }
  .nav-item.has-mega.active .mega-toggle-btn i {
    transform: rotate(180deg);
  }
  .nav-item.has-mega .mega-menu {
    display: none;
    background: #f9f9f9;
    padding: 10px 0;
  }
  .nav-item.has-mega.active .mega-menu {
    display: block;
  }
  .nav-item.has-mega .mega-menu-container {
    flex-direction: column;
  }
  .nav-item.has-mega .category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #000;
  }
  .nav-item.has-mega .category-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .nav-item.has-mega .category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .nav-item.has-mega .category-name {
    font-size: 13px;
    color: #333;
  }
  .nav-item.has-mega .mega-menu-right {
    padding: 10px 16px;
  }
  .nav-item.has-mega .sidebar-title {
    font-size: 13px;
    font-weight: 600;
    color: #008080;
    margin: 10px 0 6px;
  }
  .nav-item.has-mega .sidebar-link {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-item.has-mega .sidebar-link:hover {
    color: #008080;
  }
}.nav.active {
    max-height: 100% !important;
}
/* End */

/* Hover disable karo — JS se control hoga */
.navigation .nav-item:hover .mega-menu {
    display: none;
}

/* Sirf active class pe open hoga */
.navigation .nav-item.has-mega.active .mega-menu {
    display: block;
}
   .mega-toggle-btn {
    cursor: pointer;
    color: rgb(85, 85, 85);
    flex-shrink: 0;
    background: none;
    border-width: medium medium medium 1px;
    border-style: none none none solid;
    border-color: currentcolor currentcolor currentcolor rgb(238, 238, 238);
    border-image: initial;
    border-left: none;
    padding: 14px 18px;
    padding-left: 0;
}  .nav-link-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none;
    }
/* Mobile same rahega */
@media (max-width: 768px) {
    .navigation .nav-item.has-mega.active .mega-menu {
        display: block;
    }
}


/* ===== MAIN WRAPPER ===== */
.woocommerce-variation-add-to-cart {
  background: #ffffff;
  border: 1.5px solid #008080;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

/* ===== SECTION TITLE ===== */
.woocommerce-variation-add-to-cart .tc-section-label-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #008080;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid #008080;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* ===== SELECT DROPDOWNS ===== */
.woocommerce-variation-add-to-cart .tmcp-field.tmcp-select {
  width: 100%;
  height: 42px;
  padding: 0 2.5rem 0 0.85rem;
  font-size: 14px;
  color: #111111;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23008080' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #008080;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  margin-bottom: 0.85rem;
}

.woocommerce-variation-add-to-cart .tmcp-field.tmcp-select:hover {
  border-color: #005f5f;
}

.woocommerce-variation-add-to-cart .tmcp-field.tmcp-select:focus {
  border-color: #005f5f;
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

/* ===== SELECT OPTIONS ===== */
.woocommerce-variation-add-to-cart .tmcp-field.tmcp-select option {
  color: #111111;
  background: #ffffff;
  font-size: 14px;
}

/* ===== FIELD LABEL ===== */
.woocommerce-variation-add-to-cart .tm-epo-field-label {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  display: block;
  margin-bottom: 4px;
}

/* ===== LIST CONTAINER ===== */
.woocommerce-variation-add-to-cart .tmcp-ul-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-variation-add-to-cart .tmcp-field-wrap {
  margin-bottom: 0.75rem;
}

/* ===== TOTALS BOX ===== */
.woocommerce-variation-add-to-cart #tm-epo-totals {
  background: #f0fbfb;
  border: 1.5px solid #008080;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 0;
}

/* ===== TOTALS LABELS ===== */
.woocommerce-variation-add-to-cart .tm-options-totals {
  font-size: 14px;
  color: #555555;
  font-weight: 400;
}

.woocommerce-variation-add-to-cart .tm-final-totals {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  border-top: 1px solid #c3e8e8;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}

/* ===== TOTALS AMOUNTS ===== */
.woocommerce-variation-add-to-cart .tm-options-totals + dd .amount,
.woocommerce-variation-add-to-cart .tm-final-totals + dd .amount {
  color: #008080;
  font-weight: 500;
font-size: 21px !important;
}

.woocommerce-variation-add-to-cart .tm-final-totals + dd .amount {
  font-size: 18px;
  font-weight: 600;
}

.woocommerce-variation-add-to-cart .woocommerce-Price-currencySymbol {
  color: #008080;
}

/* ===== QUANTITY INPUT ===== */
.woocommerce-variation-add-to-cart .qty {
  width: 72px;
  height: 42px;
  border: 1.5px solid #008080;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  color: #111111;
  background: #ffffff;
  outline: none;
  transition: box-shadow 0.18s;
}

.woocommerce-variation-add-to-cart .qty:focus {
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

/* ===== ADD TO CART BUTTON ===== */
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
  background: #008080;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  height: 42px;
  padding: 0 1.5rem;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background: #006666;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:active {
  transform: scale(0.98);
}

/* ===== HIDE UNWANTED PRICE TAG ===== */
.woocommerce-variation-add-to-cart .tc-price-wrap.tc-hidden {
  display: none !important;
}

/* ===== SELECT WRAPPER - OVERFLOW FIX ===== */
.woocommerce-variation-add-to-cart .tmcp-field-wrap-inner {
  overflow: hidden;
  max-width: 100%;
}

/* ===== SELECT BOX ===== */
.woocommerce-variation-add-to-cart .tmcp-field.tmcp-select {
  width: 100%;
  max-width: 100%;
  height: 42px;
  padding: 0 2.5rem 0 0.85rem;
  font-size: 14px;
  color: #111111;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23008080' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #008080;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  margin-bottom: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

/* ===== DROPDOWN OPTIONS - SIZE FIX ===== */
.woocommerce-variation-add-to-cart .tmcp-field.tmcp-select option {
  font-size: 13px;
  color: #111111;
  background: #ffffff;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  padding: 6px 8px;
  white-space: pre-wrap;
}

.product-details button.single_add_to_cart_button.button.alt {
    display: inline;    background: #c0392b !important;
    width: 100%;
    margin-top: 0 !important;
}

.tm-extra-product-options .tc-row, .tc-row {
    gap: 4px;
}

.post-type-archive-product  .woocommerce-variation-price {
  display: block;
}
.reset_variations {
    font-size: 11px;
    color: #008080;
    text-decoration: none;
    margin-top: 2px;
    display: none;
}.post-type-archive-product .woocommerce-variation-add-to-cart {
    background: #ffffff;
    border: navajowhite;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: row;
}.post-type-archive-product .woocommerce-variation-add-to-cart .quantity {
    width: 56px;
}

@media (min-width: 992px) {
	.product-detail-page-wrapper .thumbnail-slider .slick-slide {
    padding: 0 0px;
    outline: none;
    margin: 0px 4px;
    height: 100px !important;
    width: 100px !important;
}.product-detail-page-wrapper .thumbnail-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 6px;
}
	
}




