  /*****************************************************/
  /*****************   Typography   ********************/
  /*****************************************************/

  :root {
    --brand-color: #FE7300;
    --secondary-color: #262626;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --mb-color: #2c3e50;
  }

  html {
    overflow-x: hidden;
  }

  * {
    margin: 0;
    padding: 0;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid var(--brand-color);
    outline-offset: -2px;
  }

  body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black-color);
    background-color: var(--white-color);
    overflow-x: hidden;
  }

  body.active {
    position: relative;
  }

  body.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000065;
    z-index: 999;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
    display: inline-block;
  }

  a:focus {
    outline: none;
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
  }

  img {
    border: none;
    max-width: 100%
  }

  button {
    border: none;
    transition: all 0.3s ease;
  }

  button:focus {
    border: none;
    outline: none;
    box-shadow: none;
  }

  button:not(.menu-close-btn):not(.minicart-trigger):not(.mobile-menu-trigger):not(.header-search-box button):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .align_center {
    align-items: center;
  }

  .no_padding {
    padding: 0;
  }

  .section_padding {
    padding: 50px 0px;
  }

  .container {
    max-width: 1440px;
    width: 100%;
  }

  .container::before,
  .container::after {
    display: none;
  }

  .loader {
    width: 35px;
    height: 35px;
    border: 5px solid var(--brand-color);
    border-bottom-color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateY(-50%);
  }

  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /*****************************************************/
  /******************   Header Area   ******************/
  /*****************************************************/

  /* Top Bar */

  .header-top {
    background: var(--mb-color);
    color: var(--white-color);
    font-size: 13px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
  }

  .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-top-right {
    display: flex;
    gap: 25px;
  }

  .header-top-right a {
    text-transform: uppercase;
    color: #e0e0e0;
    transition: 0.3s;
    font-size: 12px;
    font-weight: 500;
  }

  .header-top-right a:hover {
    color: var(--brand-color);
  }

  .header-top-right i {
    margin-right: 8px;
    color: var(--brand-color);
  }

  .header-top-center strong {
    color: var(--white-color);
  }

  .header-top-right select {
    background: transparent;
    color: var(--white-color);
    border: none;
    margin-left: 14px;
    font-size: 12px;
  }

  /* Main Header */
  .header-main {
    background: var(--white-color);
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    /* z-index: 100; */
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-logo a img {
    height: 60px;
    object-fit: contain;
  }

  /* Navigation */

  /* Navigation */

  .header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 45px;
    font-size: 15px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
  }

  .header-nav ul li ul {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    padding: 15px 0;
    gap: 0;
    position: absolute;
    z-index: 102;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
  }

  .header-nav ul li:hover ul {
    top: 40px;
    opacity: 1;
    visibility: visible;
  }

  .header-nav a {
    color: var(--secondary-color);
    text-transform: uppercase;
    transition: 0.3s;
    display: block;
    position: relative;
    letter-spacing: 0.5px;
    padding: 5px 0;
  }

  .header-nav ul li ul li a {
    padding: 10px 20px;
    text-transform: capitalize;
    font-weight: 500;
    color: #555;
    border-bottom: 1px solid #f9f9f9;
  }

  .header-nav ul li ul li:last-child a {
    border-bottom: none;
  }

  .header-nav ul li ul li a:hover {
    background: #f9f9f9;
    color: var(--brand-color);
    padding-left: 25px;
  }

  .header-nav a:hover {
    color: var(--brand-color);
  }

  /* Underline effect */
  .header-nav>ul>li>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-color);
    transition: width 0.3s ease;
  }

  .header-nav>ul>li>a:hover::after,
  .header-nav>ul>li.active>a::after {
    width: 100%;
  }

  .header-nav>ul>li.active>a {
    color: var(--brand-color);
  }

  /* Right Side */
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-google-reviews a img {
    height: 45px;
  }

  .header-reviews {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
  }

  .header-reviews img {
    height: 22px;
  }

  .header-cart {
    position: relative;
    margin-left: 10px;
  }

  .header-cart>button {
    background: transparent;
    font-size: 20px;
    color: var(--secondary-color);
    position: relative;
    padding: 5px;
  }

  .header-cart>button:hover {
    color: var(--brand-color);
  }

  .header-cart-count {
    font-size: 10px;
    background: var(--brand-color);
    color: var(--white-color);
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  .header-cart .cartInfo button {
    font-size: 10px;
    background: var(--brand-color);
    color: var(--white-color);
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }

  .header-cart i {
    margin-right: 0;
  }

  .mobile-menu-header,
  .mobile-menu-trigger {
    display: none;
  }

  .mobile-nav-bottom {
    display: none;
  }

  /* Mini Cart Styles follow... */
  /* (Keeping existing Mini Cart logic as it functions well, just ensuring z-index) */

  /* Mini Cart Styles follow... */
  /* (Keeping existing Mini Cart logic as it functions well, just ensuring z-index) */

  .sidebar-cart {
    width: 400px;
    position: fixed;
    background: var(--white-color);
    z-index: 1001;
    top: 0px;
    right: -400px;
    border-left: 4px solid var(--brand-color);
    border-top: none;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .minicart.active .sidebar-cart {
    right: 0;
  }

  .minicart.just-count .sidebar-cart {
    display: none;
  }

  /* Top Header of Sidecart */
  .sidebar-cart .sidebar-cart-top {
    background-color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
  }

  .sidebar-cart-top h3 {
    font-size: 18px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
  }

  .sidebar-cart-top button {
    background-color: transparent;
    color: #999;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
  }

  .sidebar-cart-top button:hover {
    color: var(--brand-color);
  }

  /* Main Cart Content Area */
  .sidebar-cart .cartInputBox {
    padding: 25px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
  }

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

  .sidebar-cart .cartInputBox::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
  }

  /* Product List */
  .cart-products-list {
    flex-grow: 1;
    margin-bottom: 20px;
  }

  .minicart-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
    gap: 15px;
    align-items: center;
    /* Center content vertically */
  }

  .minicart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .minicart-img {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
  }

  .minicart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .minicart-item-info {
    flex-grow: 1;
    padding-right: 25px;
    /* Space for remove button */
    word-break: break-word;
  }

  .minicart-item-info a.product-name {
    font-size: 14px;
    line-height: 1.4;
    color: var(--secondary-color);
    transition: 0.3s;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
  }

  .minicart-item-info a.product-name:hover {
    color: var(--brand-color);
  }

  .product-options small {
    display: block;
    color: #777;
    font-size: 11px;
    line-height: 1.3;
  }

  .minicart-quantity-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
  }

  .minicart-qty {
    font-size: 12px;
    color: #777;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
  }

  .minicart-price {
    font-weight: 700;
    color: var(--brand-color);
    font-size: 14px;
  }

  .minicart-remove {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
    padding: 0;
  }

  .minicart-remove:hover {
    color: #ff4d4d;
  }

  /* Cart Totals & Buttons (Bottom) */
  .cart-totals {
    margin-top: auto;
    border-top: 2px solid #f9f9f9;
    padding-top: 20px;
  }

  .cart-totals table {
    width: 100%;
    margin-bottom: 15px;
  }

  .cart-totals table td {
    padding: 5px 0;
    font-size: 14px;
    color: #555;
  }

  .cart-totals table td strong {
    color: var(--secondary-color);
  }

  .cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .minicart-btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    border-radius: 35px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none !important;
    display: block;
  }

  .minicart-view-cart {
    background-color: #f5f5f5;
    color: var(--secondary-color) !important;
  }

  .minicart-view-cart:hover {
    background-color: #e0e0e0;
    color: var(--black-color) !important;
  }

  .minicart-checkout {
    background-color: var(--brand-color);
    color: var(--white-color) !important;
  }

  .minicart-checkout strong {
    color: var(--white-color) !important;
  }

  .minicart-checkout:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }

  .empty-cart-message {
    text-align: center;
    padding: 40px 0;
    color: #777;
  }

  /* Search Section Polish */
  .header-search {
    background: var(--brand-color);
    padding: 10px 0;
    position: relative;
  }

  .header-search::before {
    /* Optional: subtle gradient overlay for depth */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .header-search-inner {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .header-categories {
    background: transparent;
    color: var(--white-color);
    font-weight: bold;
    position: relative;
    min-width: 260px;
  }

  .header-categories button {
    background: rgba(0, 0, 0, 0.2);
    color: var(--white-color);
    display: block;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
    padding: 12px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-categories button:hover {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
  }

  .header-search-box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 0;
    overflow: hidden;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .header-search-category {
    background: transparent;
    border: none;
    padding: 0 20px;
    border-right: 1px solid #eee;
    height: 100%;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    outline: none;
  }

  .header-search-category option {
    white-space: normal;
  }

  .header-search-category:focus {
    outline: none;
    background-color: #f0f0f0;
  }

  #input-search {
    border: none;
    padding: 0 20px;
    height: 100%;
    font-size: 15px;
    width: 100%;
  }

  #input-search:focus {
    outline: none;
    box-shadow: none;
  }

  #button-search2 {
    background: var(--brand-color);
    color: #fff;
    border: none;
    width: 60px;
    height: 100%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #button-search2:hover {
    background: #e66800;
  }

  .header-phone {
    margin-left: auto;
  }

  .header-phone p {
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    text-align: right;
  }

  .header-phone .header-phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }

  .header-phone i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    float: left;
    margin-right: 15px;
    margin-top: 5px;
  }

  .category-list {
    position: absolute;
    z-index: 99;
    background: var(--white-color);
    left: 0;
    top: 90px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* Slightly softer radius */
    padding: 10px 0;
    border: 1px solid #f5f5f5;
  }

  .category-list.active {
    top: 66px;
    opacity: 1;
    visibility: visible;
  }

  .category-list li {
    position: relative;
  }

  /* Submenu Container */
  .category-list li .cat-submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: var(--white-color);
    width: 850px;
    left: 100%;
    top: 0;
    z-index: 10;
    /* Ensure above other elements */
    display: grid;
    grid-template-columns: 280px 1fr;
    /* More space for list */
    transition: all 0.2s ease-in-out;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.08);
    /* Side shadow */
    border-left: 1px solid #eee;
    min-height: 100%;
    border-radius: 0 8px 8px 0;
    /* rounded corners on right */
    padding: 25px;
    gap: 30px;
  }

  .category-list li:hover .cat-submenu {
    opacity: 1;
    visibility: visible;
  }

  .category-list li:last-child {
    margin-bottom: 0;
  }

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

  /* Main Category Items */
  .category-list li a {
    color: #444;
    /* Softer black */
    font-weight: 500;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    font-size: 14px;
    position: relative;
    border-bottom: none;
    /* Removed from here as per new styles */
  }

  .category-list li a img {
    height: 22px;
    width: 22px;
    object-fit: contain;
    opacity: 0.7;
    transition: 0.2s;
  }

  .category-list li:hover>a {
    background-color: #fcfcfc;
    color: var(--brand-color);
    font-weight: 600;
  }

  .category-list li:hover>a img {
    opacity: 1;
    transform: scale(1.1);
  }

  .category-list li a:hover {
    color: var(--brand-color);
  }

  .category-list li a i {
    margin-left: auto;
    font-size: 12px;
    color: #ccc;
  }

  .category-list>li>a {
    justify-content: space-between;
  }

  .category-list>li>a span {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Submenu List Styling */
  .cat-submenu ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .cat-submenu ul li a {
    padding: 8px 15px;
    font-size: 14px;
    color: #666;
    border-radius: 5px;
    border: none;
    /* Remove bottom border from parent styles */
  }

  .cat-submenu ul li a:hover {
    background: #f4f4f4;
    color: var(--brand-color);
    transform: translateX(5px);
    /* Slide effect */
  }

  /* Submenu Image Area */
  .cat-submenu-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 100%;
  }

  .cat-submenu-image img {
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
  }

  .mobile-category {
    display: none;
  }

  .header-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--white-color);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
  }

  .header-search-box input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
  }

  .header-search-box input:focus {
    box-shadow: none;
  }

  .header-search-box button {
    background: var(--brand-color);
    border: none;
    padding: 9px 14px;
    cursor: pointer;
    color: var(--white-color);
    margin-right: 4.2px;
    border-radius: 35px;
    transition: 0.3s;
  }

  .header-search-box button:hover {
    background-color: var(--black-color);
  }

  .header-phone a {
    color: var(--white-color);
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-phone a:hover {
    color: var(--black-color);
  }

  .header-phone a i {
    font-size: 40px;
  }

  .header-phone a p {
    font-size: 14px;
  }

  .header-phone a p span {
    font-size: 18px;
    font-weight: 600;
  }

  /*****************************************************/
  /******************   Item Area   ********************/
  /*****************************************************/

  /* Hero Section */

  .hero-slide {
    height: 600px;
    color: var(--white-color);
    overflow: hidden;
  }

  .hero-slide span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .hero-slide h1 {
    font-size: 75px;
    margin: 10px 0;
    font-weight: 600;
  }

  .hero-slide p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
  }

  .hero-button {
    background: var(--white-color);
    color: var(--black-color);
    padding: 12px 40px;
    font-weight: 500;
    border-radius: 35px;
    transition: 0.3s;
  }

  .hero-button:hover {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: var(--white-color);
    font-size: 30px;
    transition: 0.3s;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: var(--brand-color);
  }

  .hero-slider .swiper-pagination-bullet {
    background: var(--white-color);
    opacity: 1;
  }

  .hero-slider .swiper-pagination-bullet-active {
    background: var(--brand-color);
  }


  /* Features Section */
  .section-features {
    background: #F1F1F1;
    color: var(--white-color);
    padding: 25px 0;
  }

  .features-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .feature-icon {
    font-size: 50px;
  }

  .feature-icon img {
    max-height: unset !important;
    height: 45px;
    width: 45px !important;
    object-fit: contain;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .feature-content {
    color: var(--black-color);
  }

  .feature-item h4 {
    margin: 10px 0 5px;
  }

  /* Product Categories Grid */

  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 5px;
  }

  .category-item {
    height: 35rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .category-item:hover {
    background-size: 110%;
  }

  .category-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000057;
    transition: background 0.3s ease;
    z-index: -1;
  }

  .category-item:hover::after {
    background: #00000088;
  }


  .category-content {
    color: var(--white-color);
  }

  .category-content h4 {
    font-size: 16px;
    text-transform: uppercase;
  }

  .category-content h2 {
    font-size: 35px;
    margin: 5px 0;
    font-weight: 700;
  }

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

  .category-content span {
    margin-top: 20px;
    color: var(--brand-color);
    display: inline-block;
    font-weight: 500;
  }

  .category-content span:hover {
    text-decoration: underline;
  }

  /* Best Seller */

  .best-seller-area {
    background: #F1F1F1;
    padding: 70px 0;
  }

  .best-seller-title {
    text-align: center;
  }

  .best-seller-title h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .best-seller-title ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
  }

  .best-seller-title ul li button {
    padding: 6px 30px;
    border-radius: 35px;
    background: transparent;
    transition: 0.3s;
    text-transform: capitalize;
    font-weight: 500;
  }

  .best-seller-title ul li button.active,
  .best-seller-title ul li button:hover {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .best-seller-product-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }

  .single-product-item {
    background-color: var(--white-color);
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.05);
    /* Softer initial shadow */
    border-radius: 15px;
    /* Rounded corners */
    overflow: hidden;
    /* Clip content */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f9f9f9;
  }

  .single-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  }

  .single-product-item a {
    overflow: hidden;
    width: 100%;
  }

  .single-product-item a img {
    transition: 0.3s;
    width: 100%;
  }

  .single-product-item:hover a img {
    transform: scale(1.1);
  }

  .single-product-item-info {
    padding: 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .single-product-item-info h2 a {
    color: var(--black-color);
    font-size: 20px;
    transition: 0.3s;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .single-product-item-info h2 a:hover {
    color: var(--brand-color);
  }

  .single-product-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .single-product-reviews p {
    text-transform: capitalize;
    font-weight: 600;
  }

  .single-product-item-info ul {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
  }

  .single-product-item-info ul li i {
    color: var(--brand-color);
  }

  .best-sellers-item-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .save-price {
    background: #2ecc71;
    padding: 5px 15px;
    text-transform: capitalize;
    color: var(--white-color);
    border-radius: 30px;
  }

  .save-price p {
    font-size: 14px;
  }

  .best-sellers-item-price span {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-color);
    margin-right: 5px;
  }

  .best-sellers-item-price del {
    color: #555;
  }

  .single-product-btn-group {
    display: flex;
    gap: 10px;
  }

  .single-product-item-info button {
    padding: 10px 30px;
    background: var(--brand-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .single-product-item-info button:hover {
    background: var(--secondary-color);
  }

  .single-product-item-info button:first-child {
    width: 100%;
  }

  /* .single-product-item-info button:last-child {
    width: 100%;
    background: var(--mb-color);
  } */

  /* Featured Categories */

  .featured-categories {
    padding: 60px 0;
  }

  .category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-card {
    border-radius: 10px;
    background: var(--white-color);
    display: grid;
    align-items: center;
    padding: 20px;
    gap: 30px;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0px 0px 10px #e1e1e196;
  }

  .category-card img {
    width: 186px;
    display: block;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
  }

  .single-buy-get-free h2 {
    text-align: center;
  }

  .single-buy-get-free h2 a {
    color: var(--black-color);
    font-size: 20px;
    transition: 0.3s;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
  }

  .single-buy-get-free h2 a:hover {
    color: var(--brand-color);
  }

  .single-buy-get-free .best-sellers-item-price {
    margin: 0;
  }

  .single-buy-get-free .best-sellers-item-price span {
    font-size: 28px;
  }

  .single-buy-get-free .best-sellers-item-price del {
    font-size: 22px;
  }

  .category-content {
    padding: 20px;
    text-align: center;
  }

  .category-card-content h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .category-card-content p {
    font-size: 14px;
    margin: 15px 0;
    color: #555;
  }

  .category-card-content a {
    display: inline-block;
    background-color: var(--brand-color);
    color: var(--white-color);
    padding: 8px 30px;
    border-radius: 35px;
    transition: 0.3s;
    font-weight: 500;
    text-transform: capitalize;
  }

  .category-card-content a:hover {
    background-color: var(--brand-color);
  }

  .category-card-content span {
    font-size: 25px;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
  }

  .category-card-content span del {
    font-size: 20px;
  }

  .category-card-content span strong {
    color: var(--brand-color);
  }

  .buy-get-free-images {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .plus-sybol p {
    font-size: 40px;
    color: var(--brand-color);
  }

  .buy-one-get-on-free {
    padding: 70px 0;
  }

  .buy-one-get-on-free>.container>h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 700;
  }

  /* Features Section */
  .section-features {
    background: #F1F1F1;
    color: var(--white-color);
    padding: 25px 0;
    /* Increased padding */
  }

  /* ... (Features Content same) ... */

  /* Highlights Area */

  .hightlights-content-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    /* Increased gap */
    padding: 30px 0;
  }

  .single-highlights-item {
    height: 48rem;
    padding: 30px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    /* Modern Radius */
    overflow: hidden;
    text-align: center;
    background-size: cover;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .single-highlights-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .single-highlights-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    /* Gradient */
    transition: background 0.3s ease;
    z-index: -1;
  }

  .highlights-item-info {
    color: var(--white-color);
    margin-bottom: 20px;
  }

  .highlights-item-info span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 5px;
  }

  .highlights-item-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
  }

  .single-highlights-item a {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--brand-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    border: 2px solid transparent;
    /* Prepare for hover */
  }

  .single-highlights-item a:hover {
    background-color: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
  }

  /* Feature Item Polish */
  .feature-item h4 {
    font-weight: 600;
    font-size: 16px;
  }

  /* Product Grid Polish */
  .single-product-item {
    background-color: var(--white-color);
    text-align: center;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
  }

  .single-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #eee;
  }

  /* ... (Rest of product styles) ... */

  .single-product-item-info {
    padding: 25px;
  }

  .single-product-item-info h2 a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }

  .best-sellers-item-price span {
    font-size: 22px;
    font-weight: 700;
  }

  .single-product-item-info button {
    border-radius: 8px;
    /* Softer buttons */
    padding: 12px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* BOGO Section Polish */
  .buy-one-get-on-free {
    padding: 80px 0;
    /* Increase padding */
  }

  .category-cards {
    gap: 30px;
  }

  .category-card {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    padding: 40px;
    height: 100%;
  }

  .buy-get-free-images {
    justify-content: center;
  }

  .plus-sybol p {
    font-size: 30px;
    font-weight: 300;
    color: #ccc;
    /* More subtle plus */
  }

  .category-card-content h3 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 5px;
  }

  .category-card-content a {
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 126, 0, 0.3);
    /* Subtle orange shadow */
  }

  .single-highlights-item a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
  }

  /* Category Based Product */

  .single-category-based {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
  }

  .single-category-based-left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    text-align: center;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    width: 25%;
  }

  .single-category-based-left a {
    padding: 10px 20px;
    background-color: var(--white-color);
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
  }

  .single-category-based-right {
    width: 75%;
  }

  .single-category-based-right .best-seller-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Brand Logo Slider */

  .brand-logo-slider h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .brand-logo-slider {
    padding: 50px 0;
  }

  .brand-slider .swiper-slide {
    text-align: center;
  }

  /*****************************************************/
  /*****************   Footer Area   *******************/
  /*****************************************************/

  /* Newsletter */
  .footer-newsletter {
    background: var(--brand-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  /* Add subtle pattern or gradient/shadow for depth */
  .footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.05) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 1;
  }

  .newsletter-text {
    color: var(--white-color);
    position: relative;
    z-index: 2;
  }

  .footer-newsletter .newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .footer-newsletter h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .footer-newsletter p {
    margin: 10px 0 0;
    font-size: 16px;
    opacity: 0.9;
  }

  .newsletter-form-area {
    width: 45%;
  }

  .newsletter-form {
    display: flex;
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .footer-newsletter .newsletter-form input {
    padding: 15px 25px;
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: #555;
  }

  .footer-newsletter .newsletter-form button {
    padding: 12px 35px;
    border: none;
    background: var(--black-color);
    color: var(--white-color);
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
  }

  .footer-newsletter .newsletter-form button:hover,
  .footer-newsletter .newsletter-form button:focus {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  #subscribe_msg {
    padding: 10px 0 0 15px;
    display: block;
    color: #fff;
    font-weight: 600;
  }

  /* Footer Main */
  .footer-main {
    background: #111;
    /* Slightly lighter/black */
    color: #bbb;
    padding: 80px 0 50px;
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
  }

  .footer-logo img {
    height: 45px;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  .footer-about p {
    margin: 15px 0 25px;
    max-width: 300px;
  }

  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .footer-social ul {
    display: flex;
    gap: 15px;
  }

  .footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
  }

  .footer-social li a:hover {
    background: var(--brand-color);
    transform: translateY(-3px);
  }

  .footer-social a i {
    color: var(--white-color);
    font-size: 16px;
  }

  .footer-about h2,
  .footer-links h2,
  .footer-contact h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
  }

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

  .footer-links ul li a {
    color: #bbb;
    transition: 0.3s;
    display: inline-block;
  }

  .footer-links ul li a:hover {
    color: var(--brand-color);
    padding-left: 5px;
  }

  .footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-contact p i {
    color: var(--brand-color);
    font-size: 18px;
    width: 20px;
    text-align: center;
  }

  .footer-contact a {
    color: #bbb;
    transition: 0.3s;
  }

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

  .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-item i {
    font-size: 30px;
    color: var(--brand-color);
  }

  .contact-item h3 {
    margin: 0;
    font-size: 22px;
    color: var(--brand-color);
    line-height: 1.2;
  }

  .contact-item span {
    display: block;
    color: #bbb;
    font-size: 13px;
    margin-bottom: 3px;
  }

  /* Footer Bottom */
  .footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    color: #777;
    font-size: 14px;
    margin: 0;
  }

  .footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-payments img {
    height: 25px;
    opacity: 0.8;
    transition: 0.3s;
  }

  .footer-payments img:hover {
    opacity: 1;
  }

  /* Footer Links */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }

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

  .footer-links ul li a {
    color: var(--white-color);
    transition: 0.3s;
  }

  .footer-links ul li a:hover {
    color: var(--brand-color);
  }

  /* Footer Contact */
  /* Footer Contact */
  .footer-contact .contact-item {
    margin-bottom: 10px;
    color: var(--white-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    /* Tighter line height for container */
  }

  .footer-contact .contact-item:hover {
    opacity: 0.9;
  }

  .footer-contact .contact-item i {
    font-size: 20px;
    margin-right: 15px;
    color: var(--white-color);
  }

  .footer-contact .contact-item span {
    font-size: 15px;
    color: var(--white-color);
    position: relative;
    top: 2px;
    /* Micro alignment with icon */
  }

  .footer-contact h3 {
    margin: 2px 0 0 0;
    /* Reduced from 5px */
    color: var(--brand-color);
    font-size: 28px;
    font-weight: 700;
    width: 100%;
    /* Force new line */
    padding-left: 0;
    line-height: 1.1;
    /* Tighter line height */
  }

  .footer-contact p {
    margin: 8px 0;
    /* Reduced from 12px */
    display: flex;
    align-items: flex-start;
    /* Align top if text wraps */
    gap: 15px;
    font-size: 14px;
    color: #ccc;
  }

  .footer-contact p a {
    color: var(--white-color);
  }

  .footer-contact p:last-child {
    margin: 0;
  }

  /* Footer Bottom */

  .footer-bottom {
    background: var(--black-color);
    color: var(--white-color);
    border-top: 1px solid #222;
    padding: 15px 0;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-payments img {
    height: 35px;
  }


  /*****************************************************/
  /*****************   Category Page  ******************/
  /*****************************************************/


  .category-product-area {
    padding: 80px 0;
    background-color: #F8F8F8;
  }

  .category-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .category-title h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .category-title p {
    width: 75%;
    margin: 10px auto 0;
  }

  .category-filter-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .category-filter-area ul li button {
    padding: 10px 25px;
    border-radius: 50px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
    font-weight: 600;
    color: #555;
    font-size: 14px;
    text-transform: capitalize;
  }

  .category-filter-area ul li button:hover,
  .category-filter-area ul li button.active {
    background: var(--brand-color);
    color: var(--white-color);
    border-color: var(--brand-color);
    box-shadow: 0 4px 10px rgba(254, 115, 0, 0.3);
    transform: translateY(-2px);
  }

  .category-product-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }

  .category-info-area {
    padding: 50px 0;
  }

  .category-info-area .container>h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .category-content-area {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    /* Soft, premium shadow */
    margin: 30px 0;
    border: 1px solid #f9f9f9;
  }

  .category-content-area h1 {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    border-bottom: 1px solid #eee;
    /* Header separation */
    padding-bottom: 15px;
  }

  .category-content-area h2 {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--black-color);
  }

  .category-content-area p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    /* Cleaner block text */
  }

  .pagination {
    display: block;
    text-align: center;
  }

  .category-product-pagination {
    display: block !important;
    margin-top: 30px !important;
  }

  /* Video Section */

  .video-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 250px 0;
  }

  .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 0;
  }

  .video-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 0px 20px;
  }

  .video-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .video-content p {
    font-size: 1.2rem;
  }

  .video-content a {
    padding: 10px 30px;
    display: block;
    width: fit-content;
    margin-top: 20px;
    background: var(--brand-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
    margin: 20px auto 0;
  }

  .video-content a:hover {
    background: var(--white-color);
    color: var(--black-color);
  }

  /*****************************************************/
  /*****************   Product Page   ******************/
  /*****************************************************/

  .product-gallery-info {
    padding: 50px 0;
  }

  .product-main-content {
    display: flex;
    gap: 50px;
  }

  .product__carousel {
    overflow: hidden;
    width: 500px;
  }

  .product__carousel a {
    display: block;
    margin-bottom: 15px;
  }

  .product__carousel .gallery-top {
    border: 1px solid #ebebeb;
    border-radius: 3px;
    margin-bottom: 5px;
  }

  .product__carousel .gallery-top .swiper-slide {
    position: relative;
  }

  .product__carousel .gallery-top .swiper-slide a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .product__carousel .gallery-top .swiper-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
    min-width: 100%;
    min-height: 100%;
  }

  .product__carousel .swiper-button-next.swiper-button-white,
  .product__carousel .swiper-button-prev.swiper-button-white {
    color: #ff3720;
  }

  .product__carousel .gallery-thumbs .swiper-slide {
    position: relative;
    transition: border .15s linear;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    height: calc(100% - 2px);
  }

  .product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--brand-color);
  }

  .product__carousel .gallery-thumbs .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
  }

  /* Product Gallery Info */

  .product-info {
    color: #111;
    line-height: 1.6;
    flex: 1;
  }

  .product-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 45px;
  }

  .product-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
  }

  .ratingsAndReviews {
    margin-bottom: 5px;
  }

  .ratingsAndReviews .ratingInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .ratingsAndReviews .reviews {
    display: flex;
    gap: 10px;
  }

  .ratingsAndReviews .reviews p {
    font-size: 18px;
    font-weight: 500;
  }

  .ratingsAndReviews .reviews a {
    color: var(--black-color);
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
  }

  .ratingsAndReviews .reviews a:hover {
    color: var(--brand-color);
  }

  .product-variation {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }

  .pro-var-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .product-variation label {
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .pro-var-group input[type="radio"] {
    accent-color: red;
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }

  /* product-option-box */

  .product-option-box {
    margin-bottom: 10px;
  }

  .product-option-box label {
    font-weight: 500;
  }

  .product-option-box:last-child {
    margin: 0;
  }

  .product-option-box select,
  .product-option-box input {
    height: auto;
    border-radius: 35px;
    border-width: 1px;
    padding: 9px 20px;
    font-size: 15px;
  }

  .product-option-box select:focus,
  .product-option-box input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--brand-color);
  }

  .product-option-box select {
    background-image: url(../images/down-chevron.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 98%;
    appearance: none;
  }

  .product-option-box select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #555;
  }

  .product-current-price {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--brand-color);
  }

  .product-current-price del {
    color: var(--secondary-color);
    font-size: 25px;
    margin-left: 10px;
  }

  .more-quantity-area ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .more-quantity-area ul li button {
    background: transparent;
    color: var(--black-color);
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--brand-color);
    transition: 0.3s;
  }

  .more-quantity-area ul li button:hover {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .product-cart {
    display: flex;
    margin: 10px 0;
  }

  .quantity {
    display: flex;
    align-items: center;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 35px;
  }

  .quantity button {
    padding: 0px 15px;
    background: transparent;
    cursor: pointer;
    font-size: 25px;
  }

  .quantity input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
  }

  .add-to-cart {
    background: var(--brand-color);
    color: var(--white-color);
    border: none;
    padding: 12px 30px;
    margin-right: 10px;
    border-radius: 25px;
    font-weight: 700;
    width: 78%;
    transition: 0.3s;
  }

  .add-to-cart:hover {
    background: var(--black-color);
  }

  .extra-actions {
    display: flex;
    gap: 10px 20px;
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .extra-actions a {
    color: #555;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
  }

  .extra-actions a:hover {
    color: var(--brand-color);
  }

  .extra-actions a i {
    color: var(--brand-color);
    margin-right: 5px;
  }

  .secure-checkout {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
  }

  .secure-checkout p {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .secure-checkout .cards img {
    height: 50px;
    margin: 0 5px;
  }

  .delivery-info {
    margin-bottom: 20px;
  }

  .delivery-info p {
    margin-bottom: 5px;
  }

  .delivery-info p i {
    color: var(--brand-color);
    margin-right: 5px;
  }

  .delivery-info p span {
    font-weight: 500;
  }

  .meta p {
    color: #555;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .meta p span {
    font-weight: 500;
    color: var(--black-color);
  }


  /* Product Tabs */

  .product-tab-nav {
    display: flex;
    border-bottom: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .product-tab-nav li {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-right: 5px;
    background: #f7f7f7;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
  }

  .product-tab-nav li.active {
    background: var(--brand-color);
    color: var(--white-color);
    border-color: var(--brand-color);
  }

  .product-tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
  }

  .product-tab-content.active {
    display: block;
  }

  #description h2 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 20px;
  }

  #description h2:first-child {
    margin-top: 0;
  }

  #description p {
    margin-top: 15px;
  }

  #description ul li {
    list-style: disc;
    margin-left: 15px;
    margin-top: 10px;
  }

  #description ul li::marker {
    color: var(--brand-color);
  }

  /* Reviews Section */
  .reviews-list .review-item {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
  }

  .review-avatar {
    width: 60px;
    flex-shrink: 0;
    text-align: center;
  }

  .review-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f9f9f9;
  }

  .review-content {
    flex: 1;
  }

  .review-content .review-rating {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .review-content .review-author {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--mb-color);
  }

  .review-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
  }

  /* Add Review Form */
  .add-review {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
    border: 1px solid #e9ecef;
  }

  .add-review h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--mb-color);
  }

  .add-review>p {
    color: #777;
    margin-bottom: 30px;
  }

  .add-review label {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--mb-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 20px;
  }

  .rating-stars label {
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-size: 24px;
    color: #e4e4e4;
    transition: color 0.2s;
  }

  .rating-stars input[type="radio"] {
    display: none;
  }

  .rating-stars input[type="radio"]:checked~label,
  .rating-stars label:hover,
  .rating-stars label:hover~label {
    color: #ffc107;
  }

  .add-review input:not([type="checkbox"]):not([type="radio"]),
  .add-review textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    color: #495057;
    background: #fdfdfd;
    transition: all 0.3s;
  }

  .add-review input:focus,
  .add-review textarea:focus {
    border-color: var(--brand-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(254, 115, 0, 0.1);
  }

  .add-review textarea {
    min-height: 120px;
    resize: vertical;
  }

  .add-review input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 20px;
  }

  .add-review .checkbox-label {
    display: inline-block;
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
    color: #666;
    margin-top: 20px;
  }

  .add-review button {
    margin-top: 30px;
    background: var(--brand-color);
    color: var(--white-color);
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(254, 115, 0, 0.3);
    transition: all 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .add-review button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 115, 0, 0.4);
    background-color: #e66800;
  }

  .product-reviews-content .pagination {
    float: right;
    display: flex;
    align-items: center;
  }

  .product-reviews-content .pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    float: unset !important;
    line-height: 0;
  }

  .pro-policy {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .add-review .captcha>div {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
  }

  /* Product Featured Image Section */

  .product-featured-section {
    padding-top: 100px;
  }

  .single-product-featured {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15rem 0;
    position: relative;
    z-index: 1;
  }

  .single-product-featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000070;
    z-index: -1;
  }

  .single-product-featured .container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .single-product-featured:nth-child(even) .container {
    align-items: end;
  }

  .single-product-featured-content {
    width: 50%;
  }

  .single-product-featured-content h2 {
    font-size: 50px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
  }

  .single-product-featured-content p {
    font-size: 16px;
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
  }

  /* Related Products */

  .related-products-area {
    padding: 70px 0;
  }

  .related-products-slider>h2 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .related-products-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
  }

  .related-products-slider .swiper-button-next::after,
  .related-products-slider .swiper-button-prev::after {
    color: var(--brand-color);
  }

  .related-products-slider .swiper-pagination-bullet-active {
    background: var(--brand-color);
  }


  /* Pro Gallery */


  .product-page-gallery {
    display: grid;
    grid-template-columns: 2fr 2fr;
  }

  .pro-right-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-left-image a {
    width: 100%;
    height: 100%;
  }

  .product-page-gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
  }

  .product-page-gallery img:hover {
    height: 115%;
    width: 115%;
  }

  .pro-right-images img {
    border: 1px solid var(--white-color);
  }


  /* dimensions-area */

  .dimensions-area img {
    width: 100%;
  }

  /* product-info-container */

  /* product-info-container */

  .product-tech-info-area {
    background: #f8f9fa;
    color: var(--secondary-color);
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
  }

  .feature-description h1 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--mb-color);
  }

  .feature-description h2 {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
    color: var(--mb-color);
  }

  .feature-description h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--mb-color);
  }

  .feature-description ul {
    margin-bottom: 20px;
    padding-left: 20px;
  }

  .feature-description ul li {
    margin-bottom: 10px;
    list-style: disc;
    color: #555;
  }

  .feature-description {
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
    color: #555;
    line-height: 1.8;
  }

  .feature-description.expanded {
    max-height: unset !important;
  }

  .read-more-btn {
    color: var(--brand-color);
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
    font-weight: 600;
  }

  .product-info-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
  }

  .product-features {
    flex: 2;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  }

  .tech-specs {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  }

  .tech-specs h2 {
    text-transform: capitalize;
    color: var(--mb-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 24px;
  }

  .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--mb-color);
    position: relative;
    display: inline-block;
  }

  .feature-description p {
    margin-bottom: 20px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .feature-list li {
    margin-bottom: 10px;
  }

  strong {
    font-weight: bold;
    color: var(--mb-color);
  }

  .tech-specs ul li {
    /* display: flex; */
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    margin-bottom: 0;
    gap: 15px;
    /* text-align: right; */
    color: #555;
    font-size: 15px;
  }

  .tech-specs ul li:last-child {
    border-bottom: none;
  }

  .tech-specs ul li span {
    text-align: left;
    font-weight: 500;
    color: var(--mb-color);
  }

  .tech-specs ul li b {
    text-align: left;
    color: var(--mb-color);
  }

  /* Product Reviews */

  .product-reviews-content {
    padding: 70px 0 0;
  }

  .product-reviews-content .container>h2 {
    text-align: center;
    font-size: 35px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 700;
  }

  /*****************************************************/
  /******************   About Page   *******************/
  /*****************************************************/


  /* New About Start */

  .about-page-content {
    padding: 80px 0;
    background-color: #f9f9f9;
  }

  .about-page-content .container {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .about-page-content h1,
  .about-page-content h2,
  .about-page-content h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    line-height: 1.3;
  }

  .about-page-content h1 {
    font-size: 36px;
  }

  .about-page-content h2 {
    font-size: 28px;
    position: relative;
    display: inline-block;
    margin-top: 0;
  }

  .about-page-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--brand-color);
    margin-top: 10px;
    border-radius: 2px;
  }

  .about-page-content p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }

  .about-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
  }

  .about-page-content .sthumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .about-page-content .whiteShadowBox {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }

  .about-page-content .smallThumb img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .about-page-content .smallThumb img:hover {
    transform: scale(1.02);
  }

  .about-page-content button,
  .about-page-content .btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--brand-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(254, 115, 0, 0.3);
    cursor: pointer;
  }

  .about-page-content button:hover,
  .about-page-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 115, 0, 0.4);
    background-color: #e66800;
    /* Slightly darker shade */
  }

  .about-page-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
  }

  .about-page-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
  }

  .about-page-content ul li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-color);
  }

  .about-page-content .borderbox {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .about-page-content .container {
      padding: 30px;
    }

    .about-page-content h2 {
      font-size: 24px;
    }
  }

  /* New About End */

  .about-us-banner {
    text-align: center;
    padding: 50px 0;
  }

  .about-us-banner h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0;
  }

  .about-us-banner img {
    margin-top: 30px;
    border-radius: 10px;
  }

  /* Stats Section */

  .our-stats-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 75%;
    margin: 0 auto;
    gap: 30px;
  }

  .single-stats {
    text-align: center;
  }

  .single-stats span {
    font-size: 35px;
    font-weight: 700;
  }

  /* Mission Section */

  .mission-content-image {
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0px 2px 5px #ccc;
  }

  .mission-content-image .row {
    align-items: center;
  }

  .mission-content-image img {
    border-radius: 10px;
  }

  .mission-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
  }


  /* Features */
  .features-area {
    text-align: center;
    padding: 40px 20px;
  }

  .features-area h2 {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 35px;
    font-weight: 600;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
  }

  .single-feature i {
    color: var(--brand-color);
    font-size: 25px;
  }

  .single-feature p {
    font-weight: 600;
    margin-top: 10px;
  }

  /* World Content */

  .world-content {
    text-align: center;
    padding: 60px 20px;
  }

  .world-content h1 {
    font-size: 150px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-color);
  }

  .world-content h2 {
    font-size: 22px;
    margin-top: 20px;
  }

  .world-content p {
    max-width: 700px;
    margin: 10px auto;
    color: #555;
  }


  /* Stores */
  .stores-area {
    padding: 40px 20px;
    text-align: center;
  }

  .stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .stores-area h2 {
    margin-bottom: 30px;
  }

  /* .stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  } */

  .single-store a {
    font-size: 22px;
    color: var(--black-color);
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 5px;
  }

  .single-store a:hover {
    color: var(--brand-color);
  }

  .single-store img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    height: 300px;
    object-fit: cover;
  }


  /* Contact Page */

  .contact-us-area {
    padding: 70px 10px;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
  }

  .contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 0;
    gap: 20px;
  }

  .single-contact-info>i {
    color: var(--brand-color);
    font-size: 25px;
  }

  .single-contact-info h2 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 5px 0;
  }

  .single-contact-info {
    box-shadow: 1px 2px 5px #ccc;
    padding: 20px;
    border-radius: 10px;
  }

  .single-contact-info a {
    color: var(--black-color);
    text-decoration: underline;
    margin-bottom: 5px;
    transition: 0.3s;
  }

  .single-contact-info a:hover {
    color: var(--brand-color);
  }

  .contact-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
  }

  .contact-social a:hover i {
    color: var(--brand-color);
  }

  .contact-form {
    margin-top: 70px;
  }

  .contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 20px;
    background: #f1f1f1;
    border-color: transparent;
  }

  .contact-form form input:hover,
  .contact-form form textarea:hover,
  .contact-form form input:focus,
  .contact-form form textarea:focus {
    outline: 1px solid var(--brand-color);
  }

  .contact-captcha {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .single-input-item.contact-captcha>div {
    margin-left: 0;
    padding: 0;
  }

  .single-input-item {
    width: 100%;
  }

  .contact-form form textarea {
    min-height: 200px;
    max-height: 200px;
  }

  .contact-form .form-group {
    display: flex;
    gap: 20px;
  }

  .contact-form form button {
    background: var(--brand-color);
    color: var(--white-color);
    padding: 12px 35px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
    transition: 0.3s;
  }

  .contact-form form button:hover {
    background: var(--black-color);
  }

  .home-hightlights-area {
    padding: 3px;
  }

  .home-category-based-products {
    padding-top: 70px;
  }

  /*****************************************************/
  /******************   Login Page   *******************/
  /*****************************************************/

  .account-sidebar {
    box-shadow: 0px 0px 10px #cccccc52;
    border-radius: 5px;
    overflow: hidden;
  }

  .catListing.accountList a {
    width: 100%;
    padding: 10px 20px;
    transition: 0.3s;
    color: var(--black-color);
    box-shadow: 0 8px 10px #cccccc36;
  }

  .account-sidebar h2 {
    padding: 15px 20px;
    box-shadow: 0px 0px 3px #ccc;
  }

  .catListing.accountList a:hover,
  .catListing.accountList li.active a {
    background-color: var(--brand-color);
    color: var(--white-color);
  }

  .account-login-box {
    padding: 19px;
    margin-bottom: 20px;
    background-color: var(--white-color);
    border-radius: 4px;
    box-shadow: 0px 0px 10px #cccccc52;
  }

  .accountInformation {
    margin-top: 15px;
  }

  #input-country,
  #input-zone {
    padding: 0 15px !important;
    height: 50px;
  }

  .informationBox ul li {
    margin: 5px 0;
  }

  .login-title {
    padding-bottom: 15px;
  }

  .account-login-box h2 {
    font-size: 25px;
    font-weight: 600;
  }

  .account-login-box p {
    padding: 8px 0;
    font-weight: 500;
  }

  .form-control {
    border-radius: 0;
    padding: 22px 15px;
    border: 2px solid #cccccc61;
    box-shadow: unset;
  }

  .account-login-box input[type="submit"],
  .pull-right input[type="submit"] {
    padding: 10px 45px;
    background: var(--brand-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
    border: none;
  }

  .account-login-box input[type="submit"]:hover,
  .pull-right input[type="submit"]:hover {
    background: var(--black-color);
    color: var(--white-color);
  }

  .register-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .register-form-area {
    box-shadow: 0px 0px 10px #cccccc52;
    border-radius: 5px;
    overflow: hidden;
    padding: 20px;
  }

  .already_account_text {
    padding: 10px 0;
  }

  .already_account_text p {
    padding-bottom: 5px;
  }

  .acccount-section {
    padding: 60px 0 20px;
  }

  .breadcrumb {
    margin: 20px 0;
  }


  .best-seller-title button.active {
    background-color: var(--brand-color);
    color: #fff;
  }


  /* Cart Page */

  .cart-title {
    padding-top: 70px;
  }

  #preCheckout table {
    width: 100%;
  }

  #preCheckout table tr.tableHead td {
    color: #000;
    text-transform: uppercase;
    padding: 0;
    text-align: left;
    padding-left: 22px;
    font-size: 14px;
    font-style: normal;
    height: 50px;
    vertical-align: middle;
    border-bottom: none;
    font-weight: 500;
  }

  #preCheckout table tr {
    border: 1px solid #ccc;
  }

  #preCheckout table tr td {
    padding: 15px;
    font-size: 14px;
    color: #676766;
  }

  #preCheckout table tr td p {
    display: none;
  }

  #preCheckout .text-left button {
    background: transparent;
    margin-left: 10px;
  }

  .cart-coupon-info {
    margin-top: 30px;
  }

  .cart-coupon-info p {
    margin: 10px 0;
  }

  .cartCouponAccordion .panel-heading {
    padding: 15px;
  }

  .qtyValue,
  .qtyValue:focus {
    padding: 2px 10px;
    border-radius: 34px;
    border: 1px solid #ccc;
    width: 70px;
    text-align: center;
    outline: none;
  }

  .cartTotal {
    margin-bottom: 20px;
  }

  .cartAmount {
    display: flex;
    justify-content: right;
    margin-bottom: 5px;
    gap: 6px;
  }

  .cartbtnArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cartbtnArea a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    width: 100%;
    text-align: center;
  }

  /* .cartbtnArea a:nth-child(1) {
    background-color: var(--secondary-color);
    color: var(--white-color);
  } */

  .cartbtnArea a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }

  /* Checkout */

  div#shipping_method form.hidden {
    display: block !important;
    visibility: visible !important;
  }

  #payment_address label {
    font-size: 15px !important;
  }

  #d_quickcheckout .text-danger {
    font-size: 13px;
    padding-top: 5px;
    line-height: 18px;
  }

  #d_quickcheckout .btn-primary.active {
    background: var(--brand-color) !important;
  }

  .qc-name a {
    color: var(--brand-color) !important;
    text-align: left;
  }

  #d_quickcheckout .btn-danger {
    background-color: var(--brand-color);
    background-image: none;
    border-color: var(--brand-color);
  }

  #d_quickcheckout b,
  #d_quickcheckout strong {
    font-weight: 700;
    color: var(--brand-color);
  }

  #qc_confirm_order {
    background-image: none !important;
    background-color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
    outline: none;
  }

  .btn.increase,
  .btn.decrease,
  #button_login {
    background-image: none !important;
    background-color: var(--mb-color) !important;
    border-color: var(--mb-color) !important;
  }

  #d_quickcheckout .btn-danger {
    background: red !important;
    border-color: red !important;
  }

  #d_quickcheckout a {
    color: var(--brand-color) !important;
  }

  #remeber_password {
    margin-top: 10px;
  }

  #d_quickcheckout .modal-body {
    padding: 15px 25px !important;
  }

  #d_quickcheckout #login_view .modal .modal-header .close {
    margin-top: -4px !important;
    opacity: 1 !important;
    color: red;
    font-size: 25px;
  }

  #d_quickcheckout .qc-col-2.col-md-6 {
    display: none;
  }

  #d_quickcheckout .qc-col-3.col-md-6 {
    max-width: 100%;
    width: 100%;
  }

  .mobile-account-menu-toggle {
    display: none;
  }

  #d_quickcheckout #login_view .modal .modal-dialog {
    max-width: 385px !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 61px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  #d_quickcheckout form#login_form label {
    font-size: 14px;
  }

  .modal-content form#login_form input {
    padding: 20px 15px !important;
    border-radius: 3px !important;
    background: #f1f1f1 !important;
    border-color: transparent !important;
    box-shadow: none !important;
    font-size: 14px !important;
  }

  .modal-content form#login_form button {
    background: var(--brand-color) !important;
    border: none !important;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .modal-content a#remeber_password i {
    display: none;
  }

  #d_quickcheckout form#login_form label.control-label.hidden-lg {
    display: none !important;
  }

  .success-btn a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-color) !important;
    color: var(--white-color) !important;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 30px;
  }

  .place-order-content {
    text-align: center;
    padding: 30px 0 0;
  }

  .place-order-content i {
    font-size: 100px;
    color: var(--brand-color);
  }


  .place-order-content p:nth-child(2) {
    font-size: 28px;
    margin: 10px 0;
    font-weight: 500;
  }

  /* cart design */

  .cits-shopping-cart-layout .container {
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  .cits-shopping-tab-area {
    text-align: center;
    margin-bottom: 30px;
  }

  .cits-cart-left {
    flex-grow: 1;
  }

  .cits-cart-right {
    width: 380px;
    min-width: 380px;
    padding: 22px 25px 30px;
    background: #f9f9f9;
    border-radius: 8px;
  }

  .order-summary-top {
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 18px;
  }

  .cits-cart-right .cartAmount {
    justify-content: space-between;
  }

  .cits-shopping-tab-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .cits-shopping-tab-area ul li a,
  .cits-shopping-tab-area ul li p {
    color: var(--black-color);
    background: var(--white-color);
    border: 1px solid #ebebeb;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .cits-shopping-tab-area ul li span {
    position: relative;
  }

  .cits-shopping-tab-area ul li span span {
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    width: 50px;
    color: #191919;
    opacity: .15;
    transform: translateY(-50%) translateX(-15px);
  }

  .cits-shopping-tab-area ul li a.active {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .cits-shopping-tab-area ul li:last-child a {
    pointer-events: none;
  }

  .cits-cart-right-payment-image {
    border: 1px solid var(--brand-color);
    border-radius: 7px;
    margin-top: 30px;
  }

  .cits-cart-right-payment-image img {
    border-radius: 7px;
  }

  .cartCouponArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
  }

  .single-coupon-item .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .single-coupon-item input {
    min-width: 350px;
  }

  .single-coupon-item .input-group-btn input {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    text-align: center;
    font-size: 16px;
    border: none;
  }

  .single-coupon-item .input-group-btn input:hover {
    background-color: var(--brand-color);
  }

  .add-review p {
    display: none;
  }

  /* =========================================
     Mobile Responsive Queries
     ========================================= */

  @media (max-width: 991px) {

    /* Stack Search Bar */
    .header-search-inner {
      flex-direction: column;
      gap: 15px;
    }

    .header-categories {
      width: 100%;
      min-width: auto;
    }

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

    .header-phone {
      display: none;
      /* Hide phone on tablet header if crowded, or move */
    }

    /* Navigation - Mobile Menu */
    .header-nav>ul {
      position: fixed;
      top: 0;
      left: -300px;
      width: 280px;
      height: 100vh;
      background: #fff;
      flex-direction: column;
      padding: 20px;
      transition: 0.3s ease;
      z-index: 1005;
      gap: 0;
      overflow-y: auto;
    }

    .header-nav.active>ul {
      left: 0;
      top: 40px;
      width: 100%;
      padding-top: 0;
    }

    .header-nav ul li a {
      padding: 15px 0;
      border-bottom: 1px solid #f5f5f5;
      color: #333;
    }

    .footer-bottom .container {
      flex-direction: column;
      gap: 15px;
    }

    /* Mobile Trigger */
    .mobile-menu-trigger {
      display: block;
      background: transparent;
      font-size: 24px;
      color: #333;
      margin-left: 15px;
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
    }

    .mobile-menu-header img {
      max-height: 40px;
    }

    .menu-close-btn {
      font-size: 24px;
      background: transparent;
      color: #333;
    }

    /* Mobile Category Menu (Inside Nav) */
    .mobile-category {
      display: block;
      margin-top: 10px;
    }

    .mobile-category li a {
      font-weight: 500;
      display: flex;
      justify-content: space-between;
    }

    .mobile-category .cat-submenu {
      display: none;
      /* JS toggle */
      padding-left: 20px;
      background: #f9f9f9;
    }

    /* Header Top */
    .header-top {
      display: none;
      /* Hide top bar on mobile/tablet for simplicity */
    }
  }

  @media (max-width: 767px) {
    .header-inner {
      padding: 0 15px;
    }

    .header-logo a img {
      height: 40px;
      /* Smaller Logo */
    }

    .header-search-category {
      display: none;
      /* Hide category select on small mobile */
    }

    .header-search-box {
      height: 45px;
    }

    #button-search2 {
      width: 50px;
    }

    .header-right {
      gap: 10px;
    }

    .header-google-reviews,
    .header-reviews {
      display: none;
      /* Simplify header */
    }
  }

  /* =========================================
   Contact Page Polish
   ========================================= */

  .contact-us-area {
    padding: 60px 0;
    background-color: #fdfdfd;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
  }

  .contact-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Contact Info Cards */
  .contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }

  .single-contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f9f9f9;
  }

  .single-contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .single-contact-info i {
    font-size: 35px;
    color: var(--brand-color);
    margin-bottom: 20px;
    display: inline-block;
  }

  .single-contact-info h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black-color);
  }

  .single-contact-info a,
  .single-contact-info p {
    color: #666;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
    transition: 0.3s;
  }

  .single-contact-info a:hover {
    color: var(--brand-color);
  }

  .contact-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 10px;
  }

  .contact-social li a i {
    font-size: 20px;
    color: #999;
    margin: 0;
    transition: 0.3s;
  }

  .contact-social li a:hover i {
    color: var(--brand-color);
    transform: scale(1.1);
  }

  /* Contact Form Section */
  .contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #f9f9f9;
  }

  .contact-form h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--black-color);
  }

  .contact-form .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }

  .single-input-item {
    width: 100%;
    position: relative;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid #eee;
    background: #fdfdfd;
    padding: 15px 20px;
    border-radius: 8px;
    /* Slightly rounded */
    color: #555;
    font-size: 15px;
    transition: 0.3s;
    outline: none;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--brand-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(254, 115, 0, 0.1);
  }

  .contact-form textarea {
    min-height: 150px;
    resize: vertical;
  }

  /* Submit Button */
  .contact-form button.yellowbtn {
    background: var(--brand-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    cursor: pointer;
    transition: 0.3s;
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 5px 15px rgba(254, 115, 0, 0.3);
    letter-spacing: 1px;
  }

  .contact-form button.yellowbtn:hover {
    background: #e66800;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 115, 0, 0.4);
  }

  /* Mobile Responsive for Contact */
  @media (max-width: 767px) {
    .contact-content {
      grid-template-columns: 1fr;
    }

    .contact-form .form-group {
      flex-direction: column;
      gap: 20px;
    }

    .contact-form {
      padding: 30px 20px;
    }

    .contact-header h2 {
      font-size: 28px;
    }
  }

  /* =========================================
   Client Logos (Our Clients) Standard Polish
   ========================================= */

  .brand-logo-slider {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #f5f5f5;
  }

  .brand-logo-slider h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: var(--black-color);
    position: relative;
    padding-bottom: 15px;
  }

  .brand-logo-slider h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brand-color);
    border-radius: 2px;
  }

  .brand-logo-slider .swiper-wrapper {
    align-items: center;
    /* Vertically center logos */
    padding-bottom: 30px;
    /* Space for shadow */
  }

  .brand-logo-slider .swiper-slide {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    height: 100px;
    /* Fixed height for uniformity */
    margin-top: 5px;
  }

  /* Hover Effect */
  .brand-logo-slider .swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Premium shadow lift */
    border-color: var(--brand-color);
  }

  .brand-logo-slider .swiper-slide img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: 0.3s;
  }

  .brand-logo-slider .swiper-slide:hover img {
    filter: grayscale(0%);
    /* Color on hover */
    opacity: 1;
    transform: scale(1.05);
  }

  /* =========================================
   Account Page (Login, Register & Sidebar) Polish
   ========================================= */

  /* Account Sidebar (list-group) */
  .list-group {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Card shadow */
    border: 1px solid #f9f9f9;
    padding: 10px 0;
    overflow: hidden;
  }

  .list-group-item {
    border: none;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
  }

  .list-group-item:last-child {
    border-bottom: none;
  }

  .list-group-item:hover,
  .list-group-item.active,
  .list-group-item.active:hover,
  .list-group-item.active:focus {
    background-color: #fff8f2;
    /* Light brand hover */
    color: var(--brand-color);
    border-color: #f5f5f5;
    border-left: 3px solid var(--brand-color);
    padding-left: 22px;
    /* Adjust for border */
  }

  /* Page Title & Breadcrumbs */
  .pageTitle h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 20px;
    margin-top: 30px;
  }

  .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }

  .breadcrumb li a {
    color: #777;
    font-size: 14px;
  }

  .breadcrumb li a:hover {
    color: var(--brand-color);
  }

  /* Account Login Boxes */
  .account-login-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f9f9f9;
    height: 100%;
    /* Match heights */
    display: flex;
    flex-direction: column;
  }

  .account-login-box h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black-color);
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
  }

  .account-login-box p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* Forms & Inputs */
  .account-login-box .form-group {
    margin-bottom: 20px;
  }

  .account-login-box label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
  }

  .account-login-box input.form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    padding: 0 20px;
    background: #fdfdfd;
    transition: 0.3s;
  }

  .account-login-box input.form-control:focus {
    border-color: var(--brand-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(254, 115, 0, 0.1);
  }

  /* Buttons */
  .yellowbtn.btn2,
  .btna.yellowbtn {
    background: var(--brand-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    /* Pill */
    transition: 0.3s;
    font-size: 14px;
    /* Standardize font */
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(254, 115, 0, 0.2);
  }

  .yellowbtn.btn2:hover,
  .btna.yellowbtn:hover {
    background: #e66800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 115, 0, 0.3);
    color: #fff;
    text-decoration: none;
  }

  .account-login-box a {
    color: #666;
    font-size: 14px;
  }

  .account-login-box a:hover {
    color: var(--brand-color);
  }

  /* =========================================
   Global Account Pages Polish (Register, Forgot, etc.)
   ========================================= */

  /* Register Page specific wrapper */
  .register-form-area {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    /* Card shadow */
    border: 1px solid #f9f9f9;
    margin-bottom: 30px;
  }

  .register-form-area .theading h2 {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
  }

  /* Fieldset Legends */
  fieldset legend {
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--black-color);
  }

  /* Forgotten Password & General Account Content Cards */
  /* If a page doesn't have a specific wrapper, providing a class to #content > form might be tricky without modifying TPL.
   However, forgotten.tpl HAS .account-login-box, so it should inherit the previous polish.
   Let's ensure the form-horizontal inside it looks good.
*/

  /* General Form Polish */
  .form-horizontal .control-label {
    font-weight: 600;
    color: #555;
    padding-top: 10px;
    /* Align with input */
  }

  /* Polished Buttons (Global for Account Pages) */
  .buttons .btn-primary,
  .buttons .btn-default,
  .buttons .yellowbtn,
  .buttons input[type="submit"] {
    background: var(--brand-color);
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    /* Pill */
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(254, 115, 0, 0.2);
    font-size: 14px;
    cursor: pointer;
  }

  .buttons .btn-primary:hover,
  .buttons .btn-default:hover,
  .buttons .yellowbtn:hover,
  .buttons input[type="submit"]:hover {
    background: #e66800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 115, 0, 0.3);
  }

  .buttons .pull-right,
  .buttons .pull-left {
    margin-top: 10px;
  }

  /* Radio & Checkbox Polish */
  .radio label,
  .checkbox label {
    padding-left: 25px;
    font-size: 14px;
    color: #555;
  }

  .radio input[type="radio"],
  .checkbox input[type="checkbox"] {
    margin-top: 2px;
  }


  /* =========================================
   Register Page Input Polish (Match Login)
   ========================================= */

  .register-form-area input.form-control,
  .register-form-area select.form-control,
  .register-form-area textarea.form-control {
    height: 45px;
    border-radius: 8px;
    /* Rounded corners */
    border: 1px solid #e1e1e1;
    box-shadow: none;
    padding: 0 20px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #555;
    width: 100%;
  }

  .register-form-area textarea.form-control {
    height: auto;
    padding: 15px;
  }

  .register-form-area input.form-control:focus,
  .register-form-area select.form-control:focus,
  .register-form-area textarea.form-control:focus {
    border-color: var(--brand-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(254, 115, 0, 0.1);
    /* Soft orange glow */
  }

  /* Fix vertical alignment for labels */
  .register-form-area .control-label {
    padding-top: 12px;
    font-weight: 600;
    color: #555;
  }

  /* Adjust Select height matching input */
  .register-form-area select.form-control {
    padding: 0 15px;
  }

  /* =========================================
   Product Reviews & Pagination Fix
   ========================================= */
  .reviews-list {
    margin-bottom: 30px;
    clear: both;
  }

  .review-footer {
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    display: flex;
    align-items: center;
    /* Vertical Center */
    flex-wrap: wrap;
  }

  /* Flex fallback for older bootstraps if needed, but row/cols usually work */

  /* Pagination styling */
  .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    border-radius: 4px;
  }

  .pagination>li {
    display: inline;
  }

  .pagination>li>a,
  .pagination>li>span {
    position: relative;
    float: left;
    padding: 8px 14px;
    margin-left: 5px;
    /* Separation */
    line-height: 1.42857143;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    /* Squares/Rounded */
    font-weight: 600;
  }

  .pagination>li>a:hover,
  .pagination>li>a:focus {
    color: #fff;
    background-color: var(--brand-color);
    border-color: var(--brand-color);
  }

  .pagination>.active>a,
  .pagination>.active>span,
  .pagination>.active>a:hover,
  .pagination>.active>span:hover,
  .pagination>.active>a:focus,
  .pagination>.active>span:focus {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: var(--brand-color);
    border-color: var(--brand-color);
  }

  /* Return Policy Link in Reviews */
  .pro-policy a {
    color: var(--brand-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
  }

  .pro-policy a:hover {
    border-bottom-color: var(--brand-color);
    text-decoration: none;
  }

  /* Ensure it doesn't float weirdly */
  .pro-policy {
    margin-bottom: 10px;
    /* Mobile spacing */
  }

  @media (min-width: 768px) {
    .pro-policy {
      margin-bottom: 0;
    }
  }

  /* Fix for Add Review Section moving up */
  .add-review {
    clear: both;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
  }

  /* =========================================
   Cart & Checkout Steps (Restored Design)
   ========================================= */
  .cits-shopping-tab-area {
    margin-bottom: 40px;
    text-align: center;
  }

  .cits-shopping-tab-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .cits-shopping-tab-area ul li {
    display: block;
    margin: 0;
  }

  .cits-shopping-tab-area ul li a {
    display: flex;
    /* alignment */
    align-items: center;
    justify-content: center;
    width: 280px;
    /* Fixed width for uniformity */
    height: 60px;
    background: #fff;
    border: 1px solid #eee;
    /* Light border for inactive */
    border-radius: 8px;
    /* Slight radius, not 50px pill */
    color: #333;
    font-weight: 700;
    text-transform: capitalize;
    /* "Shopping Cart" vs "SHOPPING CART" */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    /* For number clipping if needed */
  }

  /* Active State */
  .cits-shopping-tab-area ul li a.active {
    background: var(--brand-color);
    color: #fff;
    border-color: var(--brand-color);
    box-shadow: 0 5px 15px rgba(254, 115, 0, 0.2);
  }

  /* Hover State */
  .cits-shopping-tab-area ul li a:hover:not(.active) {
    background: #fafafa;
    border-color: #ddd;
  }

  /* The Number Styling (01, 02, 03) */
  .cits-shopping-tab-area .num-text {
    font-size: 32px;
    font-weight: 700;
    margin-left: 10px;
    opacity: 0.15;
    /* Faded look */
    color: #000;
  }

  /* Active Number Styling */
  .cits-shopping-tab-area ul li a.active .num-text {
    color: #000;
    /* Keep it dark for contrast or white? Screenshot seems darkish faded overlay */
    opacity: 0.15;
  }

  }

  /* =========================================
   Polished Cart Page
   ========================================= */
  /* Cart Table Card */
  .cits-cart-left {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    padding: 20px;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
  }

  .orderTable table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .orderTable .tableHead td {
    background: #f9f9f9;
    color: #444;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .orderTable tr td {
    padding: 20px 15px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
  }

  .orderTable tr td img {
    border-radius: 6px;
    border: 1px solid #eee;
  }

  .orderTable tr td a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }

  .orderTable tr td a:hover {
    color: var(--brand-color);
  }

  /* Quantity Input */
  .orderTable .qtyValue {
    width: 50px;
    text-align: center;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 5px;
  }

  /* Action Buttons */
  .orderTable .refresh,
  .orderTable .crossIcon {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .orderTable .refresh:hover,
  .orderTable .crossIcon:hover {
    transform: scale(1.1);
  }

  /* Cart Right Column (Summary) */
  .cits-cart-right {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    padding: 25px;
    border: 1px solid #f0f0f0;
  }

  .order-summary-top h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid var(--brand-color);
    padding-bottom: 15px;
    display: inline-block;
    margin-bottom: 20px;
  }

  .cartTotal .cartAmount {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #555;
  }

  .cartTotal .cartAmount:last-child {
    border-bottom: none;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 15px;
  }

  .cartbtnArea a {
    display: block;
    width: 100%;
    background: var(--brand-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(254, 115, 0, 0.3);
    text-decoration: none;
  }

  .cartbtnArea a:hover {
    background: #e66900;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(254, 115, 0, 0.4);
  }

  /* =========================================
   Polished Checkout Page
   ========================================= */
  /* Accordion Panels */
  .panel-group .panel {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px !important;
    border-radius: 8px !important;
    overflow: hidden;
  }

  .panel-default>.panel-heading {
    background-color: #fff;
    border: none;
    padding: 18px 25px;
    border-bottom: 1px solid #f5f5f5;
  }

  .panel-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }

  .panel-title a {
    text-decoration: none;
    display: block;
    position: relative;
    color: #333;
  }

  .panel-title a:hover {
    color: var(--brand-color);
  }

  .panel-title a i {
    float: right;
    color: #ccc;
    font-size: 14px;
  }

  .panel-collapse .panel-body {
    padding: 25px;
    border-top: none;
    background: #fff;
  }

  /* Checkout Inputs & Textareas */
  .panel-body input[type="text"],
  .panel-body input[type="password"],
  .panel-body input[type="email"],
  .panel-body input[type="tel"],
  .panel-body select,
  .panel-body textarea {
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    height: 45px;
    padding: 0 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
  }

  .panel-body textarea {
    height: auto;
    padding: 15px;
  }

  .panel-body input:focus,
  .panel-body select:focus,
  .panel-body textarea:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 4px rgba(254, 115, 0, 0.1);
  }

  /* Checkout Buttons */
  #button-login,
  #button-register,
  #button-guest,
  #button-shipping-address,
  #button-shipping-method,
  #button-payment-address,
  #button-payment-method,
  #button-confirm {
    background: var(--brand-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(254, 115, 0, 0.3);
    transition: all 0.3s ease;
  }

  #button-confirm:hover,
  #button-login:hover {
    background: #e66900;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(254, 115, 0, 0.4);
  }

  /* Radio & Checkbox Polish */
  .panel-body .radio,
  .panel-body .checkbox {
    margin-bottom: 15px;
    padding-left: 25px;
  }

  .panel-body .radio input[type="radio"],
  .panel-body .checkbox input[type="checkbox"] {
    margin-left: -25px;
    margin-top: 2px;
  }

  .panel-body label {
    font-weight: 500;
    color: #555;
    cursor: pointer;
  }

  /* =========================================
   Professional Login Modal (And all Modals)
   ========================================= */

  /* Modal Content Card */
  .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }

  /* Modal Header */
  .modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 25px;
    background: #fff;
    position: relative;
  }

  .modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
  }

  .modal-title i {
    color: var(--brand-color);
    margin-right: 10px;
  }

  /* Close Button */
  .modal-header .close {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.6;
    font-size: 28px;
    font-weight: 300;
    transition: all 0.2s;
    color: #999;
    text-shadow: none;
    background: none;
    border: none;
    outline: none;
  }

  .modal-header .close:hover {
    opacity: 1;
    color: #e74c3c;
    /* Red on hover */
    transform: rotate(90deg);
  }

  /* Modal Body */
  .modal-body {
    padding: 30px 25px;
    background: #fdfdfd;
  }

  /* Form Groups in Modal */
  .modal-body .form-group {
    margin-bottom: 20px;
  }

  .modal-body label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .modal-body input.form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    box-shadow: none;
    padding: 0 20px;
    background: #fff;
    font-size: 14px;
    transition: all 0.3s;
  }

  .modal-body input.form-control:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 4px rgba(254, 115, 0, 0.1);
  }

  /* Links (Forgotten Password) */
  .modal-body a {
    color: var(--brand-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    margin-top: 5px;
    display: inline-block;
  }

  .modal-body a:hover {
    text-decoration: underline;
  }

  /* Modal Footer / Buttons */
  .modal-footer {
    border-top: none;
    padding: 0 25px 30px 25px;
    text-align: left;
    background: #fdfdfd;
  }

  .modal-footer .btn-primary,
  .modal-body .btn-primary,
  .modal button[type="submit"] {
    width: 100%;
    background: var(--brand-color);
    border: none;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 4px 15px rgba(254, 115, 0, 0.3);
    transition: all 0.3s;
  }

  .modal-footer .btn-primary:hover,
  .modal-body .btn-primary:hover,
  .modal button[type="submit"]:hover {
    background: #e66900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(254, 115, 0, 0.4);
  }

  /* Backdrop */
  .modal-backdrop.in {
    opacity: 0.6;
    background-color: #2c3e50;
    /* Darker, slightly blueish backdrop */
  }

  /* =========================================
   2-Column Checkout Layout & Professional Styling
   ========================================= */
  @media (min-width: 992px) {
    #accordion {
      display: block;
      /* Use block for floats if flex fails */
    }

    #accordion::after {
      content: "";
      display: table;
      clear: both;
    }

    #accordion .panel {
      float: left;
      width: calc(50% - 15px);
      margin-right: 30px;
      margin-bottom: 25px;
      border: 1px solid #ddd;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      /* Slight shadow */
      border-radius: 4px;
      overflow: hidden;
      clear: none;
    }

    /* Right Column (Even panels roughly, or by specific type) */
    /* FORCE 2-COLUMN split: 
       Left: 1 (Options/Login), 2 (Payment Addr), 3 (Shipping Addr/Method logic)
       Right: 4 (Ship Method), 5 (Pay Method), 6 (Confirm)
    */
    /* We use nth-of-type to force columns */
    #accordion .panel:nth-of-type(2n) {
      float: right;
      margin-right: 0;
    }

    #accordion .panel:nth-of-type(2n+1) {
      float: left;
      margin-right: 0;
      clear: left;
    }

    /* Specific overrides if order is fixed: 
       Login(1) -> Left
       PayAddr(2) -> Left! (Wait, screenshot shows Payment Address on Left, Payment Method on Right)
       Let's try:
       Left: 1, 2, 3
       Right: 4, 5, 6
    */
    #accordion .panel:nth-of-type(1),
    #accordion .panel:nth-of-type(2),
    #accordion .panel:nth-of-type(3) {
      float: left;
      margin-right: 30px;
      /* Gap */
      clear: left;
      width: calc(50% - 15px);
    }

    #accordion .panel:nth-of-type(4),
    #accordion .panel:nth-of-type(5),
    #accordion .panel:nth-of-type(6) {
      float: right;
      margin-right: 0;
      clear: right;
      width: calc(50% - 15px);
      margin-top: -20px;
      /* Pull up to align top */
    }

    /* Reset specific margins for first items to align tops */
    #accordion .panel:nth-of-type(1) {
      margin-top: 0;
    }

    #accordion .panel:nth-of-type(4) {
      margin-top: 0;
    }

    /* Actually 1 and 4 might be tops */

    /* Since simple CSS columns are hard without wrapper, we rely on the float order.
        If strict left/right is needed and height varies, we might get gaps.
        But this Float Left / Float Right approach is robust for 2 col.
     */
  }

  /* Panel Header Styling (Grey Bar) */
  .panel-default>.panel-heading {
    background-color: #f5f5f5;
    /* Light Grey */
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
  }

  .panel-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
  }

  /* Icons for Panels (Pseudo-elements) */
  /* Step 1: Checkout Options */
  #accordion .panel:nth-of-type(1) .panel-title::before {
    content: "\f007";
    /* User Icon */
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: normal;
  }

  /* Step 2: Payment Address */
  #accordion .panel:nth-of-type(2) .panel-title::before {
    content: "\f02d";
    /* Book/Address Icon */
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: normal;
  }

  /* Step 3: Shipping Address */
  #accordion .panel:nth-of-type(3) .panel-title::before {
    content: "\f0d1";
    /* Truck Icon */
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: normal;
  }

  /* Step 4: Shipping Method */
  #accordion .panel:nth-of-type(4) .panel-title::before {
    content: "\f0d1";
    /* Truck Icon */
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: normal;
  }

  /* Step 5: Payment Method */
  #accordion .panel:nth-of-type(5) .panel-title::before {
    content: "\f09d";
    /* Credit Card Icon */
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: normal;
  }

  /* Step 6: Confirm */
  #accordion .panel:nth-of-type(6) .panel-title::before {
    content: "\f07a";
    /* Shopping Cart Icon */
    font-family: "FontAwesome";
    margin-right: 10px;
    font-weight: normal;
  }

  /* =========================================
   Login/Guest "Segmented Tabs" Styling
   ========================================= */
  .checkout-login-tabs {
    display: flex;
    background: #e0e0e0;
    border-radius: 4px;
    padding: 1px;
    margin-bottom: 25px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .checkout-login-tabs label {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    background: linear-gradient(to bottom, #f9f9f9, #e9e9e9);
    /* Gradient Grey */
    border-right: 1px solid #cfcfcf;
    font-size: 14px;
    text-shadow: 0 1px 0 #fff;
    transition: all 0.2s;
  }

  .checkout-login-tabs label:first-child {
    border-radius: 3px 0 0 3px;
  }

  .checkout-login-tabs label:last-child {
    border-radius: 0 3px 3px 0;
    border-right: none;
  }

  .checkout-login-tabs input[type="radio"] {
    display: none;
  }

  /* Active Tab State (Orange Gradient) */
  .checkout-login-tabs label.active {
    background: linear-gradient(to bottom, #ff9900, #ff6600);
    /* Orange Gradient */
    color: #fff;
    text-shadow: none;
    border-color: #e65c00;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .checkout-login-tabs label:hover:not(.active) {
    background: #fff;
    color: #333;
  }

  /* Form Inputs - Blue Focus */
  .checkout-content input[type="text"],
  .checkout-content input[type="password"],
  .checkout-content input[type="tel"],
  .checkout-content input[type="email"],
  .checkout-content select,
  .checkout-content textarea,
  #login-form-area .form-control,
  .panel-body .form-control {
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    background: #fff;
  }

  .checkout-content input:focus,
  .panel-body .form-control:focus {
    border-color: #66afe9;
    /* Blue Focus Border */
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    /* Blue Glow */
  }

  /* Labels */
  .checkout-content label,
  .panel-body label.control-label {
    text-transform: none;
    /* Keep natural */
    font-weight: 600;
    color: #444;
  }

  /* Continue Button Area */
  #continue-area input[type="button"],
  #login-form-area input[type="button"],
  #button-payment-method,
  #button-shipping-method,
  #button-confirm {
    background: linear-gradient(to bottom, #ff9900, #ff6600);
    /* Orange Gradient */
    color: #fff;
    border: 1px solid #e65c00;
    height: 45px;
    font-weight: 700;
    font-size: 15px;
    text-transform: none;
    /* User might prefer normal case */
    border-radius: 3px;
    margin-top: 15px;
    width: 100%;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
  }

  #continue-area input[type="button"]:hover,
  #login-form-area input[type="button"]:hover,
  #button-payment-method:hover,
  #button-shipping-method:hover,
  #button-confirm:hover {
    background: linear-gradient(to bottom, #ffaa33, #ff7700);
    border-color: #d45500;
  }

  /* Order Summary Table (Confirm) */
  .table-confirm {
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }

  .table-confirm thead td {
    background: #f9f9f9;
    font-weight: bold;
    color: #333;
  }

  .table-confirm tbody td {
    vertical-align: top;
    padding: 12px;
  }

  .table-confirm tfoot {
    background: #fdfdfd;
  }

  .table-confirm tfoot td {
    font-weight: bold;
  }

  .trustpilot-widget {
    min-width: 300px;
  }


  a#button-confirm {
    background: #fe7300 !important;
    color: var(--white-color) !important;
    padding: 12px 35px !important;
    height: 50px;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    background-image: none !important;
    box-shadow: 0 4px 15px rgba(254, 115, 0, 0.3) !important;
    border-radius: 8px !important;
    border: none !important;
  }

  button#qc_confirm_order {
    background: #fe7300 !important;
    color: var(--white-color) !important;
    padding: 12px 35px !important;
    height: 50px;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    background-image: none !important;
    box-shadow: 0 4px 15px rgba(254, 115, 0, 0.3) !important;
    border-radius: 8px !important;
    border: none !important;
    text-transform: uppercase !important;
  }

  h4.panel-title .icon {
    margin-right: 5px;
  }