﻿html {
  position: relative;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
  background-color: #ffffff;
  color: #353535;
  position: relative;
}

a, a:hover {
  color: inherit;
  text-decoration: none;
}

.fw-500 {
  font-weight: 500;
}


@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .content .container {
    max-width: 1200px;
  }
}

@media (min-width: 1470px) {
  .container {
    max-width: 1320px;
  }
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  margin-right: auto;
  margin-left: auto;
}

/* General styles for the offcanvas */
.offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  color: white;
  z-index: 1000;
  transform: translateY(-100%); /* Hidden above the viewport */
  transition: transform 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

  /* Offcanvas content */
  .offcanvas .content {
    background-color: #fff;
    color: #fff;
    padding: 20px 50px 20px 20px;
    width: 100%;
    text-align: center;
  }

    .offcanvas .content .search-container {
      display: block !important;
      width: 100%;
    }

/* Close button styles */
.close-btn {
  position: absolute;
  top: 23px;
  right: 10px;
  font-size: 30px;
  color: #0B2222;
  background: none;
  border: none;
  cursor: pointer;
}

/* Show the offcanvas */
.offcanvas.show {
  transform: translateY(0);
  z-index: 1;
}

.sale-promo {
  background-color: #0B2222;
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding: 11px;
  overflow: hidden;
}

.sale-text {
  display: block;
}

/* Marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.top-nav {
  background-color: #076466;
  padding: 11px 0px;
}

.tn-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tn-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  transition: all 0.2s ease-in-out;
}

.tn-data a:hover, .tn-data a:hover svg path {
  color: #d67a26;
  stroke: #d67a26;
}

.tn-data a svg path {
  transition: all 0.2s ease-in-out;
}

/*Header*/
.header {
  background-color: #fff;
  padding: 16px 0px;
}

.h-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-container, .dropdown-container {
  position: relative;
  width: 350px;
}

.search-input, .dropdown-selected {
  width: 100%;
  padding: 12px 50px 13px 20px;
  border-radius: 5px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  outline: none;
  box-sizing: border-box;
  font-size: 16px;
  cursor: pointer;
}

  .search-input::placeholder {
    color: #353535;
    font-family: "Roboto", serif;
    font-size: 16px;
  }

.search-icon {
  position: absolute;
  top: 55%;
  right: 12px;
  transform: translateY(-48%);
  cursor: pointer;
}

  .search-icon img {
    width: 20px;
  }

.flex-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dropdown-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

  .dropdown-icon img {
    width: 12px;
  }

.dropdown-list {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: none;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 400px;
  overflow-y: scroll;
}

  .dropdown-list.active {
    display: block;
  }

.dropdown-list-item {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

  .dropdown-list-item:hover {
    background-color: #f0f0f0;
  }

.scrollbar {
  float: left;
  overflow-y: scroll;
  /*    margin-bottom: 25px;*/
}

  /*
 *  STYLE 1
 */

  .scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #fff;
  }

  .scrollbar::-webkit-scrollbar {
    border-radius: 10px;
    width: 5px;
    background-color: #fff;
  }

  .scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #908a8a;
  }

.offcanvas-menu .scrollbar {
  overflow: auto;
  width: 100%;
  height: calc(100vh - 52px);
}

.flex-box1 {
  display: flex;
  align-items: center;
  gap: 26px;
}

.mobi-search-icon {
  display: none;
}

.mobi-select {
  display: none;
}

.login {
  position: relative;
}

.login-cart-box {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #deebeb;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  width: 150px;
  display: none;
}

  .dropdown-menu a {
    display: block;
    padding: 10px;
    color: #353535;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }

    .dropdown-menu a:hover {
      background-color: #076466;
      color: #fff;
    }

.show {
  display: block;
}


.login-cart-box svg path {
  transition: all 0.2s ease-in-out;
}

.login-cart-box:hover, .login-cart-box:hover svg path {
  color: #076466;
  stroke: #076466;
}

.mobi-ham-icon {
  display: none;
  margin-top: 5px;
}

.ham-icon {
  width: 35px;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -380px; /* Initially hidden off-screen */
  width: 350px;
  height: 100%;
  background-color: #fff;
  color: #353535;
  overflow-y: auto;
  transition: right 0.3s ease;
  overflow-y: scroll;
  box-shadow: 0px 0px 10px #00000030;
}

.side-menu-title {
  padding: 10px 20px 20px;
  font-weight: 600;
}

.offcanvas-menu ul {
  list-style: none;
  padding-left: 0px;
  margin: 0;
}

  .offcanvas-menu ul li {
    padding: 10px 10px 10px 20px;
  }

    .offcanvas-menu ul li:hover {
      background-color: #f0f0f0;
    }

    .offcanvas-menu ul li a {
      text-decoration: none;
      color: #353535;
    }

.close-btn1 {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 24px;
  color: #353535;
  text-decoration: none;
  cursor: pointer;
}

  .close-btn1:hover {
    color: #353535;
  }

/* When the menu is open */
.offcanvas-menu.open {
  right: 0;
  z-index: 2;
}


/*Content*/
.content {
  padding: 35px 0px 140px;
}

.title-box {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px 5px 0 0;
  background: #076466;
  padding: 11px 31px;
  width: fit-content;
}

.box001 {
  border-radius: 0 5px 0 0;
  border: 1px solid #076466;
  padding: 44px 34px;
}

.sub-title {
  color: #076466;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #DBDBDB;
}

.specification-box .text-box:last-child {
  margin-bottom: 0px;
}

.text-box p {
  color: #353535;
  font-weight: 500;
  line-height: 28px;
  margin: 0px;
}

  .text-box p:last-child {
    text-align: right;
  }

/*Flooring Accessories*/
.hero-sec,
.flooring-accessories-sec {
  margin-bottom: 100px;
}

.box002 {
  max-width: 1120px;
}

.accessories-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  color: #353535;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DBDBDB;
}

.accessories-img img {
  border-radius: 5px;
}

.accessories-name {
  margin-bottom: 5px;
  font-size: 18px;
}

.expand-specification {
  color: #076466;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  margin-bottom: 10px;
  cursor: pointer;
}

.extra-specification {
  display: flex;
  align-items: center;
  gap: 30px;
  max-height: 0px;
  font-size: 16px;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

  .extra-specification.active {
    max-height: 200px; /* adjust according to your content height */
    opacity: 1;
  }

.new-extra-specification {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  font-size: 16px;
}

  .extra-specification .title,
  .new-extra-specification .title {
    color: #076466;
    font-weight: 600;
  }

.specification-price-box p {
  margin-bottom: 10px;
}

  .specification-price-box p:last-child {
    margin-bottom: 0px;
  }

.speci-title {
  color: #076466;
  font-weight: 600;
  margin-bottom: 20px;
}
/*.table-form, 
.specification-price-box{
    margin-top: -40px;
}*/
.accessories-box .right-box {
  display: flex;
  align-items: start;
  justify-content: end width: 40%;
}

.table-form input {
  /*border-radius: 5px !important;
  border: 1px solid #DFDFDF !important;
  background: #FFF !important;
  padding: 10px 20px !important;
  color: #353535 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: normal !important;
  margin-right: 5px !important;
  transition: all 0.3s ease-in-out !important;*/
  max-width: 80px !important;
}

  .table-form input::placeholder {
    color: #353535;
  }

.sub-total {
  margin: 50px 20px;
  text-align: right;
}

  .sub-total .sub-title {
    justify-content: end;
    margin-bottom: 18px;
  }

.btn-theme {
  border-radius: 5px;
  background: #CC661E;
  padding: 15px 30px;
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

  .btn-theme:hover {
    background-color: #076466;
    color: #FFF;
  }

/*Hero Section*/
.hero-box {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

  .hero-box .left-side {
    width: 40%;
  }

  .hero-box .right-side {
    width: 60%;
  }

.hero-title {
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}

.price-title {
  color: #076466;
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
}

.sq-ft-text {
  color: #076466;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  margin-right: 15px;
}

.sku-size-box {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 7px;
}

.sku-size-title {
  color: #458A8C;
  font-size: 20px;
  font-weight: 500;
}

.cust-form .flex-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flex-inner-box {
  display: flex;
  flex-direction: column;
}

.cust-form label {
  margin-bottom: 6px;
  font-size: 18px;
}

.cust-form input {
  color: #353535;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid #DFDFDF;
  background: #FFF;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
  height: unset;
}

  .cust-form input::placeholder {
    color: #8D8D8D;
  }

.cust-radio {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

  .cust-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .cust-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border-radius: 5px;
    border: 2px solid #DFDFDF;
    transition: all 0.3s ease-in-out;
  }

    .cust-radio .checkmark.colorDefault {
      background-color: #fff;
      font-size: 20px;
      text-align: center;
      padding-top: 20%;
      border: 2px solid #076466;
    }

    .cust-radio .checkmark.color1 {
      background-color: #C69D77;
    }

    .cust-radio .checkmark.color2 {
      background-color: #A8683F;
    }

    .cust-radio .checkmark.color3 {
      background-color: #E6B998;
    }

    .cust-radio .checkmark.color4 {
      background-color: #42302C;
    }

    .cust-radio .checkmark.color5 {
      background-color: #CE9D7D;
    }

  .cust-radio input:checked ~ .checkmark {
    border: 2px solid #076466;
  }

  .cust-radio .checkmark:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    border-radius: 5px;
    background: #076466;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .cust-radio input:checked ~ .checkmark:after {
    visibility: visible;
    opacity: 1;
  }

.radio-sec {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.sub-total.hero-sub-total {
  margin: 0px;
  margin-top: 25px;
  text-align: left;
}

  .sub-total.hero-sub-total .sub-title {
    justify-content: start;
  }

  .sub-total.hero-sub-total .btn-theme {
    margin-left: 0px;
  }

.price-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.specification-text {
  color: #076466;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s ease-in-out;
}

  .specification-text:hover {
    color: #CC661E;
    text-decoration-line: underline;
  }

input:focus {
  border-color: #076466;
  box-shadow: none;
  outline: none;
}

.main-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

  .main-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
  }

.thumbnail-row {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .thumbnail:hover img {
    transform: scale(1.1);
  }

  .thumbnail.more::after {
    content: attr(data-more);
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

.new-flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

  .new-flex-box p {
    margin-bottom: 0px;
  }

.like-share-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.like-btn svg path,
.share-btn svg path {
  transition: all 0.3s ease-in-out;
  fill: transparent;
}

.like-btn:hover svg path,
.like-btn:focus svg path,
.like-btn:active svg path {
  fill: #CC661E;
  stroke: #CC661E;
}

.share-btn:hover svg path,
.share-btn:focus svg path {
  stroke: #CC661E;
  ;
}







.mt-40 {
  margin-top: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.op-7 {
  opacity: 0.7;
}

p {
  margin-top: 0px;
}

.text-theme {
  color: #353535 !important;
}

.regular {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500 !important;
}

.semi-bold {
  font-weight: 600 !important;
}

.bold {
  font-weight: 700 !important;
}


.top-level-link {
  display: inline-block;
  padding: auto;
}

  .top-level-link .mega-menu {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
  }

    .top-level-link .mega-menu .drop-icon {
      display: inline-flex;
      align-items: center;
      margin-left: 4px;
    }

  .top-level-link:hover .mega-menu {
    color: #333;
    font-weight: 400;
  }

.sub-menu-block .row {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.d-flex {
  display: flex;
}

.col-3-width {
  min-width: 25%;
  width: 25%;
}

.col-4-width {
  min-width: 33.33%;
  width: 33.33%;
}

.w-100 {
  width: 100%;
}

.sub-menu-block .col-3 {
  display: block;
  width: 25%;
  padding: 0px 12px;
}

.sub-menu-block .col-6 {
  display: block;
  width: 50%;
  padding: 0px 12px;
}

.sub-menu-block .col-4 {
  display: block;
  width: 29.2%;
  padding: 0px 12px;
}

.col-pad {
  padding: 0px 12px;
}

.drop-tb-pad {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.sub-menu-head {
  font-size: 24px;
  font-weight: 500;
  margin-top: 0px;
}

.left-drop-sidebar {
  background-color: #deebeb;
}

.top-level-link div.sub-menu-block {
  visibility: hidden;
  background-color: #f1f6f6;
  position: absolute;
  margin-top: 0px;
  min-width: 48.8%;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  left: 0px;
  right: 0px;
  color: #333;
  left: 0px;
  box-shadow: 0px 5px 5px #00000014;
  box-sizing: border-box;
  z-index: 3;
  font-size: 16px;
  opacity: 0;
  /*CSS animation applied for sub menu : Slide from Top */

  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-transform: rotateX(90deg);
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
}

.top-level-link:hover div.sub-menu-block {
  visibility: visible;
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.top-level-link div.sub-menu-block > * {
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  opacity: 0;
}

.top-level-link:hover div.sub-menu-block > * {
  opacity: 1;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.drop-categoty-img {
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-link-div {
  display: block;
  padding-bottom: 15px;
}

.pb-0 {
  padding-bottom: 0px;
}

.product-link-div p {
  margin-top: 0px;
}

.product-view-all-link {
  font-size: 14px;
  text-decoration: underline !important;
}

.drop-shop-post {
  font-size: 20px;
  font-weight: 600;
}

.theme-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 4px;
  background-color: #076466;
  color: #fff !important;
  box-shadow: none !important;
  outline: 0 !important;
  border: none;
  font-size: 16px;
}

.vertical-flex-between {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

  .tab.active {
    background-color: #076466;
    color: #fff;
  }

.tab-content {
  display: none;
  height: 100%;
}

  .tab-content.active {
    display: block;
  }

.h-100 {
  height: 100%;
}







/*resposive sidebar*/
.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

.accordion {
  max-width: 100%;
  margin-bottom: .75em;
  padding: 5px 20px;
}

  .accordion > input[type="checkbox"]:checked ~ .content {
    padding: 0px 0px 0px 30px;
  }

  .accordion .handle {
    margin: 0;
  }

  .accordion label {
    background-color: #fff !important;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
  }

  .accordion p:last-child {
    margin-bottom: 0;
  }

.gap-0 {
  gap: 0;
}

.tn-text:hover a {
  color: #d67a26;
}

.new-tab {
  display: none;
}

.text-center {
  text-align: center;
}

.pg-bg-img {
  background-size: cover;
  width: 100%;
  height: 430px;
  border-radius: 6px;
}

.accordion {
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
  font-family: 'Poppins', sans-serif;
}

.expand-box {
}

.expand-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #076466;
  border: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}

.expand-box {
  margin-top: 10px;
}

.expand-icon {
  font-size: 17px;
  background: rgb(159 155 155 / 15%);
  padding: 0px 6px;
  border-radius: 6px;
}

.expand-content {
  overflow: hidden;
  height: 0;
  transition: height .4s cubic-bezier(.2,.8,.2,1);
}

.expand-inner {
  background: #fff;
  font-size: 16px;
  border: 1px solid #e1e4ea;
  border-radius: 8px;
  /* padding: 16px; */
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

/* Zig-zag rows */
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  gap: 10px;
}

  .spec-row:last-child {
    border-bottom: none;
  }

  .spec-row:nth-child(odd) {
    background: #f9f9f9;
  }

.spec-key {
  color: #555;
}

.spec-val {
  font-weight: 600;
  color: #222;
}

.ac-d-flex {
  display: flex;
  gap: 30px;
  flex: 1;
}

.product-accordion-details {
   margin-top: 0; 
   border: none; 
   padding: 0px; 
   background-color: transparent; 
}