/* ---------- Full CSS (updated image slider + original styles) ---------- */
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
a{
	text-decoration:none;
	color: #000;
}

.cart-header {
    position: relative;
    top: 6px;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center; 
}

.back-arrow {
	font-size: 18px;
	cursor: pointer;
    padding: 15px;
	margin-left:10px;
}

.cart-header a {
    font-size: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}

.bag-count{
	width: 100%;
	padding: 10px 20px 10px 30px;
}

.bag-count span{
	font-size: 16px;
    font-family: montserrat, sans-serif;
    color: #181818;
    padding-left: 5px;
}
.content-main{
	width: 90%;
	height: auto;
	margin: 0 auto;
}

.content-main .top {
    width: 100%;
    height: auto; 
    display: flex;
    align-items: center; 
    justify-content: end; 
	margin: 10px 0px;
}

.top .delivery-detail {
    height: auto; 
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
	width: 100%;
	text-align: center;
}

.top .delivery-detail label {
    font-size: 16px; 
}

.top .coupon-detail {
    margin-left: 10px;
	width: 100%;
}

.top .coupon-detail button {
	width: 100%;
    padding: 11px 20px; 
    background-color: #000; 
    color: #fff; 
    border: none;
    border-radius: 5px; 
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.top .coupon-detail button:hover {
    background: none;
	border: 1px solid black;
	color: #000;
}


/*Referal Code Button*/
/* .input-field {
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: 20px;
}

.input-field input[type="text"] {
    height: 100%;
    width: 100%;
    background: none;
    outline: none;
    font-size: 0.95rem;
    padding: 0 15px;
    border: 1px solid #717171;
    border-radius: 3px;
}

.input-field input[type="tel"] {
    height: 100%;
    width: 100%;
    background: none;
    outline: none;
    font-size: 0.95rem;
    padding: 0 15px;
    border: 1px solid #717171;
    border-radius: 3px;
}

.input-field input[type="text"]:focus{
    border: 1px solid #a04d8c;
}

.input-field input[type="tel"]:focus{
    border: 1px solid #a04d8c;
}

.input-field label {
    position: absolute;
    top: 45%;
    left: 15px;
    transform: translateY(-50%);
    color: #4a4646;
    pointer-events: none;
    transition: 0.2s ease;
}
.input-field input[type="text"]:is(:focus) {
    padding: 16px 15px 0;
}

.input-field input[type="tel"]:is(:focus) {
    padding: 16px 15px 0;
}

.input-field input[type="text"]:is(:focus)~label {
    transform: translateY(-110%);
    color: #a04d8c;
    font-size: 0.75rem;
}

.input-field input[type="tel"]:is(:focus)~label {
    transform: translateY(-110%);
    color: #a04d8c;
    font-size: 0.75rem;
} */

.coupon-input input{
    width: 100%;
    padding: 5px 10px;
    border-radius: 4px;
}

.address-options .bottom {
    display: flex;
	gap: 0px 10px;
	margin-top: 10px;
}

.address-type-button1 {
    background-color: transparent;
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
	border: 1px solid #000;
}

.address-type-button1:hover {
    background-color: #fff;
}


.input-field-r input[type="radio"] {
    display: none;
}

.input-field-r label {
    margin: 0;
    padding: 0;
}

.input-field-r input[type="radio"]:checked + label .address-type-button1 {
    background-color: #ADB5BD;
}



/*Referal Code Button*/


.cart-data{
	width: 100%;
	height: auto;
	display: flex;
}

.cart-data .left{
	width: 60%;
	height: auto;
	justify-content: space-around;
	align-items: center;	
}

.left .cart-product-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px;
    box-sizing: border-box;
}

.cart-product-list .cart-product {
	display: flex;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.cart-product .image {
    flex: 0 0 30%;
	max-height: 180px;
	padding: 10px;
    overflow: hidden;
}

.cart-product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius: 5px;
}

.cart-product .data {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.data .product-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.data .cart-product-price {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
}

.data .size-qyt {
    display: flex;
    margin-bottom: 10px;
}

.size-qyt .size,
.qyt {
    flex: 1;
    margin-right: 10px;
}

.data .cart-product-buttons {
    display: flex;
}

.data .cart-product-buttons .cart-product-removeBtn{
	flex: 1;
	width: 100%;
}

.data .cart-product-buttons .cart-product-wishlistBtn{
	flex: 1;
	width: 100%;
}

.data .cart-product-buttons button {
    padding: 8px 12px;
	width: 100%;	
    border: none;
    background: none;
    color: #000;
    border-radius: 0px;
    cursor: pointer;
	border-bottom: 1px solid #000;
	opacity: 0.9;
	
}

.data .cart-product-buttons button:hover {
    transition: 0.5s;
	background-color: #f1f1f1;
	color: #000;
}

.data .cart-product-buttons .line {
    border-left: 1px solid #000;
	border-bottom: 1px solid #000;
    margin: 0px 0px;
	opacity: 0.4;
}

.cart-data .right {
    width: 40%;
    height: auto;
    margin-left: 20px;
}


.cart-address-container1 {
	display: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
}

.cart-address-container1 .header {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-address-container1 .address-data {
    display: flex; 
    justify-content: space-between;
    align-items: center;
}

.cart-address-container1 .mrp {
    font-size: 16px; 
}


.cart-address-container1 .change-btn button {
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart-address-container1 .change-btn button:hover {
   background: none;
	border: 1px solid black;
	color: #000;
}

.cart-address-container2 {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
	margin-bottom: 20px;
}

.cart-address-container2 .header {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-address-container2 .address-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-address-container2 .mrp {
    font-size: 16px;
}


.cart-address-container2 .change-btn button {
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cart-address-container2 .change-btn button:hover {
    background: none;
	border: 1px solid black;
	color: #000;
}

.right .summary-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px 20px 5px 20px ;
	margin: 0px 0px 10px 0px;
}

.summary-container .header {
    font-weight: bold; 
    font-size: 18px;
    margin-bottom: 10px;
}

.summary-container .summary-data {
    margin-bottom: 20px;
}

.summary-container .summary-data > div {
    margin-bottom: 10px;
}

.summary-container .summary-data span {
    float: right;
}

.summary-container .sub-container {
    margin-top: 20px;
}

.payment-box button {
	width: 100%;
    padding: 7px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.payment-box button:hover {
    background: none;
	border: 1px solid black;
	color: #000;
}

.sub-container .bottom {
    display: flex;
    justify-content: space-between;
}

.bottom .imgs-data {
    display: inline-block;
    align-items: center;
	text-align: center;
}

.bottom .imgs-data img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.bottom .imgs-data .content {
    font-size: 9px;
	padding: 5px 0px;
	box-sizing: border-box;
}

/*coupon container*/
.modal-footer .btn-secondary1{
    padding: 7px 20px;
    background-color: #f1f1f1;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-footer .btn-primary1{
    padding: 7px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-footer .btn-secondary1:hover{
    background-color: #f2f2f2;
	color: #000;
}

.modal-footer .btn-primary1:hover{
    background-color: #f1f1f1;
	color: #000;
}

/*coupon container*/

/*Address Page Style*/



.address-data{
	width: 100%;
	height: auto;
	display: flex;
}

.address-data .left{
	width: 60%;
	height: auto;
	justify-content: space-around;
	align-items: center;	
}
.address-data .right {
    width: 40%;
    height: auto;
}
.address-data .right .address-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px;
    box-sizing: border-box;
}

.addresses {
	width: 100%;
	display: block;
    background-color: #fff;
    margin-bottom: 20px;
	border-radius: 8px;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}

.addresses .header{
	padding: 5px 10px;
	background-color: #000;
	color: #fff;
	font-family: "Lato", sans-serif;
	font-weight: 500;
	font-size: 14px;
	font-style: normal;
	border-radius: 8px 8px 0px 0px;
}

.btn-content {
    display: flex;
    flex-direction: column;
	padding: 20px;
}

.address-input{
	font-size: 20px;
	padding: 0px 10px 0px 0px;
}

.address-name {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.address-input input[type="radio"] {
    width: 15px;
    height: 15px;
}

.address-name p {
    margin: 0;
    font-weight: bold;
	font-size: 16px;
}

.address-name span {
    margin-left: 10px;
    color: #888;
	background-color: rgba(0,0,0,0.1);
	border-radius: 20px;
	padding: 0px 10px;
	box-sizing: border-box;
	font-size: 14px;
}

.full-address p {
    margin: 5px 0;
}

.full-address span {
    color: #888;
}

.mobile-section {
    display: flex;
    align-items: center;
	justify-content: space-between;
}

.edit-remove{
	display: flex;
}

.edit-remove span {
    padding: 8px 12px;
	width: 100%;	
    border: none;
    background: none;
    color: #000;
    border-radius: 0px;
    cursor: pointer;
	border-bottom: 1px solid #000;
	opacity: 0.9;
}

.edit-remove span:hover {
	transition: 0.5s;
	background-color: #f1f1f1;
	color: #000;
}
.edit-remove span a{
    text-decoration: none;
	color: #000;
	
}

.edit-remove .line {
    border-left: 1px solid #000;
	border-bottom: 1px solid #000;
    margin: 10px 0px 0px 0px;
	opacity: 0.4;
	
}

.margin-addb {
    margin: 0px 10px 10px 10px;
}

.margin{
	margin-top: 10px;
}

.confirm-address {
    background-color: #007bff;
    color: #fff; 
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    outline: none; 
}

.confirm-address:hover {
    background-color: #0056b3;
}

.add-address-container1 {
	display: none;
    background-color: #fff;
}

.error-block{
	margin-left: 10px;
	text-align: center;
}

.address-btn button {
	width: 100%;
    padding: 10px 20px; 
    background-color: #000; 
    color: #fff; 
    text-align: center;
    border: none;
    border-radius: 5px; 
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.address-btn button:hover {
    background: none;
	border: 1px solid black;
	color: #000;
}


/*product Detail css*/

.pd-container {
  width: 95%;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  margin: 0 auto;
  padding: 20px 0px;
}

.pd-container-left {
  width: 50%;
  /* allow image area to grow so big images don't get cropped */
  max-height: none;
  position: sticky;
  top: 70px; /* Adjust as needed */
  align-self: start;
  z-index: 1;
}

.pd-container-right {
  width: 50%;
  height: auto;
}


/* ---------- Image Slider (UPDATED) ---------- */
/* s-container stacks slides above thumbnails (main image on top, thumbs below) */
.s-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

/* Slides (main image wrapper) */
.s-container .slides {
    width: 100%;
    list-style: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 0px;
    text-align: center;
    overflow: hidden;
    min-height: 320px; /* base min height, will be overridden by media queries */
    display: block;
}

/* Each slide hidden by default; only .active shows */
.s-container .slides li {
    display: none;
    width: 100%;
    box-sizing: border-box;
}

/* Active slide becomes visible */
.s-container .slides li.active {
    display: block;
}

/* Main slide image - ensure full visibility */
.s-container .slides li img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 220px); /* keep image within viewport */
    object-fit: contain; /* show full image with correct aspect ratio */
    display: inline-block;
    cursor: pointer;
    border-radius: 6px;
}

/* Thumbnails row (below) - horizontally scrollable */
.s-container .thumbnails {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    list-style: none;
    margin: 10px 0px;
    padding: 10px 0px;
    box-sizing: border-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}

/* Customize scrollbar look */
.s-container .thumbnails::-webkit-scrollbar {
    height: 8px;
}
.s-container .thumbnails::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.12);
    border-radius: 6px;
}

/* Prevent thumbnails from shrinking; align center */
.s-container .thumbnails li {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

/* Thumbnail link and image */
.s-container .thumbnails li a.thumbnail-link {
    display: block;
    padding: 2px;
    border-radius: 6px;
}
.s-container .thumbnails li img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.s-container .thumbnails li img:active { transform: scale(.98); }

/* Active thumbnail highlight */
.s-container .thumbnails li.thumb-active img,
.s-container .thumbnails li a.thumbnail-link.active img {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
    outline: 2px solid rgba(0,0,0,0.06);
}

/* ---------- End Image Slider ---------- */

.pd-first {
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pd-first p {
  margin-bottom: 10px;
  font-weight: bold;
}

.pd-first .pd-rating{
	background-color: rgba(100,100,100,0.2);
	border-radius: 4px;
	padding: 1px 8px;
}

.pd-first .pd-rating i{
	color: rgb(244,100,10);
	padding: 0px 3px 0px 0px;
	font-size: 14px;
}

.pd-prices {
  display: flex;
  align-items: center;
  padding: 10px 0px 0px 0px;
}

.pd-price {
  font-size: 24px;
  font-weight: bold;
}

.pd-sub-price {
  margin-left: 10px;
}

.pd-off {
  margin-left: 5px;
  color: #000;
}

.pd-second {
  margin-top: 20px;
}

.pd-size-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pd-size-label label a{
  color: #000 !important;
}

.radio-container {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

.radio-label {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;

}

.radio-label:hover {
  background-color: #f2f2f2;
}

.radio-container input[type="radio"] {
  position: absolute;
  opacity: 0;
}

/* Style for the label container */
.pd-second .radio-container {
  display: inline-block;
  width: 40px; /* Adjust the width as needed */
  height: 30px; /* Set the same height as width for square shape */
  margin-right: 10px; /* Adjust spacing between radio buttons */
  position: relative;
}

/* Style for the label */
.radio-container .radio-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #000; /* Border color */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  padding: 15px 20px;
}

/* Show the label text */
.radio-container .radio-label span {
  display: block;
}

/* Show the inner dot when the radio button is checked */
.radio-container input[type="radio"]:checked + .radio-label {
  background-color: #000; /* Change background color when checked */
  color: #fff; /* Change text color when checked */
}

.pd-third {
  margin-top: 20px;
  width: 100%;
  display: flex;
}

.f-container input[type=number]::-webkit-inner-spin-button,
.f-container input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.f-container input[type=number] {
  -moz-appearance: textfield;
}

.pd-third .button1{
	flex: 1;
  padding: 14px 0px;
  font-size: 16px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
  text-align: center;
}

.pd-third .button2{
	flex: 1;
  padding: 10px 0px;
  font-size: 16px;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
  text-align: center;
}

.pd-third .button1:hover,
.pd-third .button2:hover {
  background: none;
  border: 1px solid #000;
  color: #000;
}

.fourth {
  margin-top: 20px;
}

.fourth label{
	margin: 5px 0px;
}

.fourth label i{
  margin: 0px 5px 0px 0px;
}

.fourth p{
	margin: 5px 0px;
}

.fourth img{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin: 0px 0px 5px 5px;
	
}

/*Foutrh 2 which will active after the check*/
.fourth2 .pd-vc {
	display: flex;
	justify-content: space-between;
	padding: 0px 10px 0px 0px;
}

.fourth2 .pd-vc button{
	padding: 5px 10px;
  font-size: 16px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 10px;
}


.fourth2 label{
	margin: 5px 0px;
}

.fourth2 label i{
  margin: 0px 5px 0px 0px;
}

.fourth2 span i{
	padding-right: 5px;
}
/*Foutrh 2 which will active after the check*/

.f-container {
	display: flex;
	width: 100%;
	align-items: center;
	margin: 10px 0px; 
	position: relative;
}

.f-container input[type="number"] {
	flex: 1; /* Allow the input to grow and shrink */
	padding: 8px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.f-container button {
	padding: 8px 29px 8px 16px;
	font-size: 16px;
	border: none;
	background: transparent;
	color: #000;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	position: absolute;
	right: 0;
}

.pd-heading header {
  padding: 5px 0px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  text-align: center;
}

.faq-text {
    margin-top: 15px;
    padding-left: 10px;
    list-style-type: none;
}

.faq-text li {
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.faq-text li:last-child {
    border-bottom: none; /* Remove border for last item */
}

.faq-text li .question-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.faq-text li .question-arrow .icon {
    margin-right: 10px;
}

.faq-text li .question-arrow .question {
    font-size: 18px;
    font-weight: 500;
    color: #595959;
    transition: color 0.3s ease;
	margin: 2px 0px 0px 5px;
    flex-grow: 1; /* Allow question to grow and shrink */
}

.faq-text li .question-arrow .arrow {
    font-size: 20px;
    color: #595959;
    transition: transform 0.3s ease;
}

.faq-text li.showAnswer {
    border-color: #ADB5BD; /* Highlight border when answer is shown */
}

.faq-text li.showAnswer .arrow {
    transform: rotate(-180deg); /* Rotate arrow when answer is shown */
}

.faq-text li p {
    font-size: 15px;
    font-weight: 500;
    color: #595959;
    margin-left: 10px;
    display: none;
}

.faq-text li.showAnswer p {
    display: block; /* Show answer when question is clicked */
}



.pd-bottom {
    display: flex;
    justify-content: space-evenly;
	padding: 10px 0px;
}

.pd-bottom .imgs-data {
    display: inline-block;
    align-items: center;
	text-align: center;
}

.pd-bottom .imgs-data img {
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.pd-bottom .imgs-data .content {
    font-size: 14px;
	padding: 5px 0px;
	box-sizing: border-box;
}

.sixth header{
	margin-top: 20px;
	padding: 5px 0px;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}

.sixth label {
  padding: 5px 0px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/*product detail css*/

.address-btn button:hover {
    background: none;
	border: 1px solid black;
	color: #000;
}


/*Responsiveness*/
@media (max-width: 1200px) {
.pd-container-left {
  width: 35%;
  height: 400px;
}
.img-swiper {
  width: 100%;
  max-width: 350px;
  margin-right: auto;
}

.swiper-slide img {
  width: 100%;
  border-radius: 5px;
}
}

@media (max-width: 768px) {
	
	.pd-container-left {
  width: 100%;
  height: auto;
  position: relative;
  top: 20px; /* Adjust as needed */
}

.s-container .thumbnails li a img {
    width: 65px;
    height: 75px;
}

  .pd-container {
    flex-direction: column;
  }

  .pd-container-left,
  .pd-container-right {
    width: 100%;
  }

  .img-swiper {
    max-width: 100%;
    margin: 0 auto;
  }

  .pd-container-right {
    margin-top: 20px;
  }
  
  .faq-text li p {
    font-size: 12px;
    font-weight: 500;
    color: #595959;
    margin-left: 10px;
    display: none;
}

.faq-text li .question-arrow .question {
    font-size: 15px;
    font-weight: 500;
    color: #595959;
    transition: color 0.3s ease;
	margin: 2px 0px 0px 5px;
    flex-grow: 1; /* Allow question to grow and shrink */
}

.pd-bottom .imgs-data img {
    width: 40px;
    height: 40px;
    margin-right: 0px;
}

.pd-bottom .imgs-data .content {
    font-size: 7px;
	padding: 5px 10px;
	box-sizing: border-box;
}
}

@media (max-width: 992px) {

/*Cart Page Css*/
	.content-main .top {
    width: 100%;
    height: auto; 
    display: block;
    align-items: center; 
    justify-content: end; 
	margin: 10px 0px;
}

	.top .coupon-detail {
    margin: 10px 0px 0px 0px;
	width: 100%;
}

	.cart-data{
	width: 100%;
	height: auto;
	display: block;
}
	.cart-data .left{
	width: 100%;
	height: auto;
	justify-content: space-around;
	align-items: center;	
}

	.cart-data .right {
    width: 100%;
    height: auto;
    margin-left: 0px;
}

	
	.cart-address-container1{
	display: block;
	margin-bottom: 10px;
	}
	
	.cart-address-container2{
	display: none;
	}	
	/*Cart Page Css*/
	
	/*address page Css*/
	.address-data{
	width: 100%;
	height: auto;
	display: block;
}
	.address-data .left{
	width: 100%;
	height: auto;
	justify-content: space-around;
	align-items: center;	
}

	.address-data .right {
    width: 100%;
    height: auto;
    margin-left: 0px;
}


	.add-address-container1{
	display: block;
	margin-bottom: 10px;
	}
	
	.add-address-container2{
	display: none;
	}	
	
	/*Address page Css*/
}

/*New Changes*/
.disabled {
    background: #f1f1f1;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 1rem);
}

.modal-content {
    border-radius: 10px;
}

.myo-orders {
    text-align: center;
    /* Center align the content horizontally */
    margin: 20px 10px;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    /* Center align flex items horizontally */
    align-items: center;
    /* Center align flex items vertically */
}

.coupon-container {
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.coupon-container::-webkit-scrollbar {
    width: 10px;
}

.coupon-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

.coupon-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.coupon {
    width: 100%;
    border: 2px dashed #ccc;
    border-radius: 10px;
    color: #333;
    margin-bottom: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

.coupon-apply {
    display: flex;
    justify-content: space-between;
}

.coupon-code-details {}

.font-14 {
    font-size: 14px;
    padding-top: 5px;
    padding-left: 5px;
}

.ccu-btn {
    background: none;
    border: none;
    color: blue;
}

.ccr-btn {
    background: none;
    border: none;
    color: red;
}

.c-container {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 10px 0px;
    position: relative;
}

.c-container input[type="text"] {
    flex: 1;
    /* Allow the input to grow and shrink */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.c-container button {
    padding: 10px 15px 10px 16px;
    font-size: 16px;
    border: none;
    background: transparent;
    color: #000;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.c-container button:hover {
    background: rgba(0, 0, 0, 0.1);
    /* Darker shade for hover effect a0a1a3*/
}

.applied-coupon-info{
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.coupon-code-button{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.coupon-code-button label{
    font-weight: 600;
}
.c-des-poi{
    display: grid;
    font-size: 14px;
}

.login-container-coupon {
    text-align: right; /* Aligns content to the right within the container */
}

.login-btn-a {
    text-decoration: none; /* Remove underline from anchor tag */
}

.login-btn {
    width: 50%;
    padding: 7px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
}

.login-btn:hover{
    background: none;
	border: 1px solid black;
	color: #000;
}

/*Nnew Changes End*/

@media (max-width: 768px) {

.left .cart-product-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
    box-sizing: border-box;
}
}
@media (max-width: 555px) {
	
	/*Cart Page Css*/

	.cart-address-container1 .address-data {
    display: block; 
    justify-content: space-between;
    align-items: center;
	width: 100%;
}
	.cart-address-container1 .change-btn button {
    padding: 8px 16px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin: 10px 0px 0px 0px;
	}
	
	.cart-product-list .cart-product {
    display: grid;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 15px;
	}
	
	.cart-product .image {
    flex: 0 0 20%;
	padding: 10px;
    overflow: hidden;
	}
	
	.top .delivery-detail label {
    font-size: 12px; 
	}

	.top .coupon-detail button {
	width: 100%;
    padding: 10px 20px; 
    color: #fff; 
    border: none;
    border-radius: 5px; 
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.top .coupon-detail button:hover {
    background: none;
	border: 1px solid black;
	color: #000;
}
/*Cart Page Css*/

/*Address Page Css*/

.addresses {
    display: grid;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 15px;
	}
	
	.btn-content {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0px 20px;
	}

	.mobile-section {
    display: inline-block;
    align-items: center;
	justify-content: space-between;
}
	.edit-remove{
		margin: 10px 0px 0px 0px;
	}
	
	/*Address page Css*/
	
	/*product Detail Css*/
	
		.radio-label {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
}

	.radio-container .radio-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 2px solid #000; /* Border color */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  padding: 12px 15px;
}

	.pd-second .radio-container {
  display: inline-block;
  width: 30px; /* Adjust the width as needed */
  height: 30px; /* Set the same height as width for square shape */
  margin-right: 10px; /* Adjust spacing between radio buttons */
  position: relative;
}

.pd-third {
	margin-top: 20px;
	width: 100%;
	display: flex;
}

.pd-third .button1{
	flex: 1;
	padding: 7px 0px;
	font-size: 16px;
	border: none;
	background-color: #000;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	margin-right: 10px;
    text-align: center;
}

.pd-third .button2{
	flex: 1;
	padding: 7px 0px;
	font-size: 16px;
	border: 1px solid #000;
	color: #000;
	cursor: pointer;
	border-radius: 5px;
	margin-right: 10px;
    text-align: center;
}

.fourth label{
	margin: 5px 0px;
	font-size: 14px;
}

.fourth label i{
  margin: 0px 5px 0px 0px;
  font-size: 14px;
}

.fourth p{
	margin: 5px 0px;
	font-size: 14px;
}

.fourth img{
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin: 0px 0px 5px 5px;
	
}

.f-container {
	display: flex;
	width: 100%;
	align-items: center;
	margin: 10px 0px; 
	position: relative;
}

.f-container input[type="number"] {
	flex: 1; /* Allow the input to grow and shrink */
	padding: 4px 8px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.f-container button {
	padding: 4px 29px 4px 16px;
	font-size: 14px;
	border: none;
	background: transparent;
	color: #000;
	cursor: pointer;
	position: absolute;
	right: 0;
}

.fourth2 .pd-vc{
	margin: 6px 0px;
}

.fourth2 .pd-vc p{
	font-size: 14px;
}

.fourth2 .pd-vc button{
  font-size: 14px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.fourth2 label{
	margin: 5px 0px;
	font-size: 14px;
}

.fourth2 label i{
	margin-right: 5px;
	font-size: 14px;
}

.fourth2 span i{
	padding-right: 5px;
}

.faq-text li p {
    font-size: 12px;
    font-weight: 500;
    color: #595959;
    margin-left: 10px;
    display: none;
}

.faq-text li .question-arrow .question {
    font-size: 15px;
    font-weight: 500;
    color: #595959;
    transition: color 0.3s ease;
	margin: 2px 0px 0px 5px;
    flex-grow: 1; /* Allow question to grow and shrink */
}

.pd-bottom .imgs-data img {
    width: 30px;
    height: 30px;
    margin-right: 0px;
}

.pd-bottom .imgs-data .content {
    font-size: 6px;
	padding: 5px 10px;
	box-sizing: border-box;
}

.sixth label {
  padding: 5px 0px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}