.add-cart-colors{
    width: calc(100% - 40px);
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.add-cart-colors-categories-container{
    width: 100%;
    display: flex;
    justify-content: center;
}


.color-cart-tabs-category{
    display: flex;
    list-style-type: none;
    padding: 5px;
    margin: 0;
    background-color: rgba(118, 118, 128, 0.12);
    border-radius: 34px;
    width: 50%;
    margin: 0 auto;
}

.color-cart-tabs-category .color-active {
    background-color: #FFFFFF; 
    color: #000000; 
}

.add-selection-container{
    width: 100%;
    display: flex;
    gap: 2%;
}
.add-selection-right-container{
    width: 49%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.add-selection-left-container{
    border-radius: 34px;
    background-color: #FFFFFF; 
    box-shadow: 0 20px 76px rgba(0, 0, 0, 0.2); 
    width: 49%;
    padding: 20px 40px;
    height: fit-content;
}

.add-main-image-container {
  aspect-ratio: 1 / 1; 
  width: 100%;        
  overflow: hidden;    
  border-radius: 20px; 
}

.add-main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  display: block;
}

.add-sub-image-container{
    width: 100%;
    position: relative;
}

.sub-image-container {
  aspect-ratio: 1 / 1;
  width: 50%;             
  margin: 20px auto 0;     
  overflow: hidden;
  border-radius: 12px;
  
}

.add-sub-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.right-add{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.right-add h1{
    font-weight: 590;
    font-style: semibold;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: 0px;
    color: rgba(127, 127, 127, 0.5);
}

.right-add span{
    color: rgba(60, 60, 67, 0.7);
}

.common-footer-cart{
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* align-items: center; */
}
.common-footer-cart h1{
    font-weight: 590;
    font-style: semibold;
    font-size: 40px;
    line-height: 47px;
    letter-spacing: 0px;
    color: rgba(127, 127, 127, 0.5);
}

.common-footer-cart span{
    color: rgba(60, 60, 67, 0.7);
}

.common-footer-cart p{
    width: 100%;
    padding: 0 70px;
    font-weight: 400;
    font-style: regular;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
    color: rgba(60, 60, 67, 0.6);
}

.add-panels p {
    font-weight: 400;
    font-style: regular;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
    color: rgba(60, 60, 67, 0.6);
}


.custom-dropdown, .custom-thickness {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F2F2;
  border-radius: 34px;
  padding: 8px 14px;
  width: 60%; 
  font-family: system-ui, sans-serif;
  cursor: pointer;
}

.dropdown-label, .thickness-label {
  color: #999999;
  font-family: 400;
  font-style: regular;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.43px;
}

.dropdown-label.active, .thickness-label.active {
  color: #0088FF;
  font-weight: 590;
  opacity: 1;
  font-style: semibold;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.43;
}

.dropdown-colors.active{
   color: #0088FF;
}
.dropdown-right, .thickness-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.double-chevron {
  position: relative;
  width: 10px;
  height: 12px; 
}

.double-chevron::before,
.double-chevron::after {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid #007AFF;
  border-bottom: 2px solid #007AFF;
}

.double-chevron::before {
  top: 0;
  transform: rotate(-135deg); 
}

.double-chevron::after {
  bottom: 0;
  transform: rotate(45deg); 
}

.swatch-carousel {
  place-content: center;
  width: 100%;
  max-width: 1240px;
  overflow: hidden;
  margin: 0 auto;
  padding:24px;
  position: relative;
}

.color-swatches {
  display: flex;
  gap: 14px;
  transition: transform 0.4s ease;
  align-items: center;
  will-change: transform;
}

.swatch {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(171, 170, 170, 0.43);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(171, 170, 170, 0.3);
  padding: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}

.swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 27px;
}

.swatch.active {
  background: rgba(171, 170, 170, 0.43);
    border-radius: 28px;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid rgba(171, 170, 170, 0.3);
    padding: 4px;
    width: 60px;
    height: 60px;
    
}

.swatch-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}


.swatch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(150, 150, 150, 0.5);
  transition: background 0.3s ease, transform 0.3s ease;
  display: flex;
  cursor: pointer;
}

.swatch-dot.active {
  background: rgba(60, 60, 60, 0.9);
}

.swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 27px;
}

.swatch-dot.overflow-dot {
  width: 6px;
  height: 6px;
  opacity: 0.5;
  pointer-events: none;
  align-self: center;
}

.color-info {
  width: 100%;
  display: flex;
  align-items: center; 
  gap: 10px;

  font-weight: 590;
  font-style: semibold;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 0px;
  color: #8E8E93;
}

.vertical-line-color {
  width: 2px;
  align-self: stretch;         
  background-color: #8E8E93;
}

.color-info .double-chevron::before,
.color-info .double-chevron::after {
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  border-right: 2px solid #8E8E93;
  border-bottom: 2px solid #8E8E93;
}


.quantity-info-container{
    width: 100%;
    display: flex;
    gap: 30px;

    font-weight: 400;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #000000 !important;
    text-transform: uppercase;
}
.quantity-info-container span{
    font-weight: 400;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #000000 !important;
}

.quantity-info-container i{
    font-weight: 700;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #000000 !important;
    cursor: pointer;
}
.quantity-panel{
    display: flex;
    gap: 10px;
}

.quantity-container,
.panel-quantity-container{
    padding: 6px 11px;
    background-color: rgba(118, 118, 128, 0.12);
    border-radius: 6px;
}

.quantity-adjust{
    background-color: rgba(118, 118, 128, 0.12);
    padding: 6px 15px;
    border-radius: 100px;
    display: flex;
    gap: 10px;
}

.quantity-adjust .vertical-line-color{
    background-color: rgba(142, 142, 147, 0.2);
    height: 90%;
    align-self: center;
}

.add-cart-button{
    padding: 10px 30px;
    background-color: #959393;
    border-radius: 1000px;
}

button.add-cart-button{
    padding: 15px 30px;
    background-color: #959393;
    border-radius: 1000px;
    border:none;
}

.add-cart-button span{
    font-weight: 510;
    font-style: medium;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 1);
}

.add-fav-button{
    padding: 6px 30px;
    background-color: #EDEDED;
    border-radius: 1000px;
    display: inline-flex;          
    flex-direction: column;      
    align-items: center;          
    justify-content: center;
}

button.add-fav-button{
    padding: 6px 30px;
    background-color: #EDEDED;
    border-radius: 1000px;
    display: inline-flex;          
    flex-direction: column;      
    align-items: center;          
    justify-content: center;
    border:none;
}

.add-fav-button span:first-child {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0px;
    color: #333333;
}

.add-fav-button span:last-child {
    font-weight: 510;
    font-style: medium;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    color: #333333;
}

.add-cart-container {
  display: flex;
  gap: 20px; 
}

.add-cart-container a {
  text-decoration: none;
  min-height: 40px;        
  display: flex;
  align-items: center;   
  justify-content: center; 
}


.get-discount-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.get-discount-container h1{
    font-weight: 400;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #000000;
}

.discount-switch {
  position: relative;
  display: inline-block;
  width: 70px;   
  height: 30px;  
}

.discount-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.discount-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: 0.4s;
  border-radius: 30px;
}

.discount-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 40px;       
  left: 3px;
  top: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 20px; 
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.discount-switch input:checked + .discount-slider {
  background-color: #4CAF50; 
}

.discount-switch input:checked + .discount-slider:before {
  transform: translateX(23px); 
}

.add-cart-common-section{
    width: 100%;
    display: flex;
    gap: 2%;
}

.add-cart-common-left{
    width: 49%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.add-cart-common-right{
    width: 49%;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.common-img-container {
  aspect-ratio: 5 / 3; 
  width: 100%;        
  overflow: hidden;  
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.common-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;   
  display: block;
}
.common-image-info{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.common-download-info{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.common-image-info h1{
    font-weight: 590;
    font-style: semibold;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
    color: #000000;
}

.common-image-info p{
    font-weight: 590;
    font-style: semibold;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #AEAEB2;
    padding: 0px;
}

.common-image-info a{
    font-weight: 400;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #0088FF;
    text-decoration: none;
}

.guides-download{
    display: flex;
    justify-content: space-between;
}
.guides-download h1{
    font-weight: 400;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #000000;
}
.download-button{
    display: flex;
    gap: 10px;
    align-items: center;
}

.download-button a{
    text-decoration: none;
    font-weight: 400;
    font-style: regular;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: rgba(60, 60, 67, 0.6);
}

.download-button i{
    color: darkgray;
}
 #swatch-dots {
            margin-top: 10px;
            text-align: center;
        }
        #swatch-dots .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #bbb;
            border-radius: 50%;
            margin: 0 5px;
            transition: background 0.3s;
        }
        #swatch-dots .dot.active-dot {
            background: #333;
        }