.product-section {
    padding: 50px 0;
}

.product-section .section-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #000;
}

.product-section .cta-btn {
    background: #000;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.product-section .cta-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.product-detail-section {
    padding: 60px 10px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid #e5dbdb;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    border: 1px solid #e5dbdb;
}

/* Product Image */
.product-img-wrapper {
    position: relative;
    overflow: hidden;
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f5f5f5;
}

.product-img .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img .main-img {
    transform: scale(1.05);
}

/* Discount Name Tag (Top Left) */
.discount-name-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #eb2627;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-name-tag i {
    font-size: 10px;
    margin-right: 2px;
}

/* Rating Badge on Image (Bottom Left) */
.rating-badge-on-image {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.rating-badge-on-image .rating-value {
    color: #2c2c2c;
    font-weight: 700;
}

.rating-badge-on-image i {
    color: #ffc700;
    font-size: 11px;
}

.rating-badge-on-image .rating-separator {
    color: #d0d0d0;
    font-weight: 400;
}

.rating-badge-on-image .review-count {
    color: #686868;
    font-weight: 500;
}


/* Product Actions */
.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.action-btn {
    border: none;
    background:none;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn i {
    font-size: 18px;
    color: #2c2c2c;
}
.action-btn:hover .bi-heart::before {
    content: "\f415";
    color: #eb2627;
}

/* Product Info */
.product-info {
    padding-top: 12px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Brand Name */
.brand-name {
    font-size: 13px;
    font-weight: 700;
    color: #282c3f;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.product-category {
    color: #667eea;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    flex: 1;
}

.category-divider {
    margin: 0 6px;
    color: #dee2e6;
}

.product-title {
    font-size: 14px;
    color: #686868;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}

.product-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: #282c3f;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.stars {
    color: #ffc107;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-weight: 700;
    color: #495057;
    font-size: 0.85rem;
}

/* Price Section */
.price-section {
    margin-top: 8px;
}
.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-wrapper-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.product-card .current-price {
    font-size: 16px;
    font-weight: 700;
    color: #282c3f;
}

.original-price {
    font-size: 14px;
    font-weight: 400;
    color: #94969f;
    text-decoration: line-through;
}

.discount-percent {
    font-size: 13px;
    font-weight: 600;
    color: #eb2627;
}

.product-rating-price {
    width: 100%;
}
.price-section {
    text-align: right;
    min-width: 90px;
}


/* ===============NEW ARRIVALS PRODUCTS=========== */
.section-header{
    margin-top: 10px;
}
.new-arrivals-section {
    background: linear-gradient(to bottom, #fff 50%, #000 50%);
    position: relative;
    overflow: hidden;
	padding:10px;
}

.new-arrivals-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 24, 24, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.arrivals-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 10px;
}

.arrivals-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #555;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrivals-dot.active {
    background: #eb2627;
    width: 20px;
    border-radius: 4px;
}

/* ========== SECTION HEADER ========== */

.section-subtitle {
    display: inline-block;
    color: red;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* ========== EXPLORE BUTTON ========== */
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(5px);
}

/* ========== CAROUSEL WRAPPER ========== */
.products-carousel-wrapper {
    position: relative;
    padding: 0;
}

.products-carousel-container {
    overflow: hidden;
    cursor: grab;
    margin: 0 -15px;
}

.products-carousel-container:active {
    cursor: grabbing;
}

.products-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
}

.products-carousel.no-transition {
    transition: none;
}

.carousel-product-item {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    user-select: none;
}


/*=============WE RECOMENDED=============*/
.we-recommend-section {
    position: relative;
    overflow: hidden;
	padding:10px;
}

.we-recommend-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.recommend-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
	margin-bottom: 22px;
}
.recommend-title-wrapper {
    flex: 1;
}
.recommend-carousel-wrapper {
    position: relative;
    padding: 0;
}
.recommend-carousel-container {
    overflow: hidden;
    cursor: grab;
    margin: 0 -15px;
}

.recommend-carousel-container:active {
    cursor: grabbing;
}
.recommend-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px;
}

.recommend-carousel.no-transition {
    transition: none;
}
.recommend-product-item {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    user-select: none;
}

.recommend-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 10px;
}

.recommend-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recommend-dot.active {
    background: #eb2627;
    width: 20px;
    border-radius: 4px;
}


/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 992px) {
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .carousel-product-item {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
	.recommend-section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .recommend-product-item {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .explore-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .carousel-product-item {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
    
    .products-carousel {
        /* gap: 20px; */
        gap: 14px;
        padding: 10px;
    }
	.recommend-product-item {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
    
    .recommend-carousel {
        gap: 14px;
        padding: 10px;
    }
	.product-card {
        margin-bottom: 15px;
    }
    .product-section .section-title{
        font-size: 1.3rem;
    }
    .section-actions{
        display: none;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .explore-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 8px;
    }
}



@media (max-width: 439px) {    
    .carousel-product-item .product-title,
    .recommend-product-item .product-title {
        font-size: 0.85rem;
    }
    
    .carousel-product-item .product-info,
    .recommend-product-item .product-info {
        padding: 10px 12px;
    }
}







/*=================PRODUCT DETAILS==================*/
.product-images {
	position: sticky;
	top: 20px;
}

.main-image {
	width: 100%;
	border-radius: 12px;
}

.thumbnail-images {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.thumbnail-img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: #000;
}

/* .product-title {
	font-size: 2rem;
	font-weight: 700;
	color: #212529;
	margin-bottom: 1rem;
} */

.product-brand {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.stock-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.stock-badge.in-stock {
	background: #d4edda;
	color: #155724;
}

.stock-badge.low-stock {
	background: #eb2627;
	color: #fff;
}

.stock-badge.out-of-stock {
	background: #f8d7da;
	color: #721c24;
}


.price-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.price-box .current-price {
	font-size: 2rem;
	font-weight: 700;
	color: #000;
}

.price-box .original-price {
	font-size: 1.25rem;
	text-decoration: line-through;
	margin-left: 12px;
}

.discount-badge {
	background: #eb2627;
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.875rem;
	margin-left: 12px;
}
.size-selector {
    margin-bottom: 30px;
}

.btn-customize {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	padding: 16px 24px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-customize:hover {
	transform: translateY(-2px);
	color: white;
}

.size-btn {
	min-width: 60px;
	padding: 11px 12px;
	border: 2px solid #dee2e6;
	background: white;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-right: 6px;
}

.size-btn:hover:not(:disabled) {
	border-color: #eb2627;
	background: #e7f3ff;
	transform: translateY(-2px);
}

.size-btn.active {
	border-color: #000;
	background: #000;
	color: white;
}

.size-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.action-buttons {
	display: flex;
	gap: 12px;
	margin-top: 2rem;
}

.btn-add-cart {
	flex: 1;
	background: #000;
	color: white;
	border: none;
	padding: 16px 24px;
	border-radius: 4px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-add-cart:hover {
	background: #eb2627;
	transform: translateY(-2px);
}

.btn-wishlist {
    background: white;
    border: 2px solid #000;
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.btn-wishlist:hover {
    background: #000;
    color: white;
}
button.btn-move-to-cart{
    padding: 11px 0px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}
.text-discount-wishlist{
    color: #eb2627;
}

.wishlist-container{
   padding:10px;
}
.wishlist-container img.card-img-top{
    height: 370px;
}

.modal-xl {
	max-width: 1200px;
}

#customizeModal .modal-content {
	border: none;
	border-radius: 20px;
	overflow: hidden;
}

#customizeModal .modal-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px 28px;
	border-bottom: none;
}

#customizeModal .modal-header .modal-title {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

#customizeModal .modal-header .btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	opacity: 1;
	filter: brightness(0) invert(1);
}

#customizeModal .modal-body {
	padding: 24px 28px;
	background: #fafbfc;
}

#customizeModal .modal-body>p {
	font-size: 0.95rem;
	color: #6c757d;
	font-weight: 500;
}

.customize-image-wrapper {
	background: white;
	border-radius: 16px;
	padding: 20px;
	border: 1px solid #e9ecef;
}

.model-img {
	width: 300px;
	height: 440px;
	position: relative;
	margin: 0 auto;
	background: linear-gradient(180deg, #f5e6d3 0%, #f8f8f8 100%);
	border-radius: 14px;
}

.selected-summary {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 16px;
	border-radius: 14px;
	border: 1px solid #dee2e6;
}

.selected-summary h6 {
	color: #495057;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
}

.selected-summary p {
	font-size: 0.85rem;
	color: #6c757d;
	line-height: 1.5;
}

.customization-category {
	background: white;
	border-radius: 14px;
	padding: 18px;
	margin-bottom: 16px;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.customization-category:hover {
	transform: translateY(-2px);
}

.customization-category:last-child {
	margin-bottom: 0;
}

.category-title {
	font-size: 1rem;
	font-weight: 800;
	color: #212529;
	letter-spacing: 0.8px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.selected-badge {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.change-style-title {
	font-size: 0.85rem;
	color: #6c757d;
	margin-bottom: 12px;
	font-weight: 500;
	font-style: italic;
}

.style-contain {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.img-container {
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	text-align: center;
}

.img-container.as-shown {
	width: 90px;
}

.img-txt-top {
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
	color: #495057;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.img-wrp {
	width: 75px;
	height: 75px;
	border: 2.5px solid #dee2e6;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: white;
	position: relative;
}

.img-wrp::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.img-wrp.default-wrp {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.default-text {
	font-size: 0.7rem;
	font-weight: 800;
	color: #6c757d;
	text-align: center;
	letter-spacing: 0.5px;
}

.img-wrp img.style-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.img-txt-bottom {
	font-size: 0.75rem;
	text-align: center;
	margin-top: 6px;
	color: #495057;
	line-height: 1.3;
	margin-bottom: 0;
	font-weight: 600;
}

.img-container:hover .img-wrp {
	border-color: #667eea;
	transform: translateY(-3px) scale(1.02);
}

.img-container:hover .img-wrp::before {
	opacity: 1;
}

.img-container:hover .img-wrp img.style-img {
	transform: scale(1.05);
}

.img-container.active .img-wrp {
	border-color: #667eea;
	border-width: 3px;
	background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
	transform: scale(1.05);
}

.img-container.active .img-wrp::before {
	opacity: 1;
}

.img-container.active .img-txt-bottom {
	color: #667eea;
	font-weight: 700;
}

.styleThumbSlider {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.options-scroll {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 6px 4px 12px 4px;
	scrollbar-width: thin;
	scrollbar-color: #667eea #f1f3f5;
}

.options-scroll::-webkit-scrollbar {
	height: 6px;
}

.options-scroll::-webkit-scrollbar-track {
	background: #f1f3f5;
	border-radius: 10px;
}

.options-scroll::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 10px;
}

.options-scroll::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

#customizeModal .modal-footer {
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	border-top: 2px solid #e9ecef;
	display: flex;
	justify-content: end;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px 28px;
}

.modal-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.modal-actions .btn {
	padding: 12px 28px;
	font-weight: 700;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.modal-actions .btn-outline-secondary {
	border: 2px solid #6c757d;
	color: #6c757d;
}

.modal-actions .btn-outline-secondary:hover {
	background: #6c757d;
	color: white;
	transform: translateY(-2px);
}

.modal-actions .btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
}

.modal-actions .btn-primary:hover {
	transform: translateY(-2px);
}

.fxImageDiv {
	position: absolute;
}

.fxImageDiv img {
	display: block;
	width: 100%;
	height: auto;
}

/* Cart Section */
.cart-container{
    padding:10px;
}
.cart-container .bg-discount-cart-page{
    background-color: #eb2627;
    padding:5px 10px;
}
.cart-container .input-group{
    border:0.1rem solid #000;
    border-radius: 4px;
}
.cart-container .btn-qty-decrease, .cart-container .btn-qty-increase{
    border-radius: 0px;
    border:none;
}
.cart-container .cart-quantity{
    border:none;
}
button.btn-outline-danger-remove{
    border:0.1rem solid #eb2627;
    color: #eb2627;
}

.summary-section .bg-dark-header {
    background-color: #000;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding:10px 11px;

}

#couponCode{
    border:none;
    padding:10px 15px;
}
.btn-outline-coupon{
    border-radius: 0px;
    color: #000;
    border-left:0.1rem solid #000;
    font-weight: 700;
}
.btn-place-order{
    background-color: #000;
    border-radius: 4px;
    color: #fff;
}
.btn-place-order:hover{
    background-color: #eb2627;
    color: #fff;
}
.order-status-btn{
    background-color: #000;
    padding:10px 15px;
    font-size: 0.9rem;
}
.order-status-btn:hover{
    background-color: #000;
}

@media (max-width: 991px) {
	.model-img {
		width: 280px;
		height: 400px;
	}

	#customizeModal .modal-body {
		padding: 20px;
	}

	.customization-category {
		padding: 16px;
	}

	.modal-actions {
		width: 100%;
		flex-direction: column;
	}

	.modal-actions .btn {
		width: 100%;
	}
}

@media (max-width: 767px) {
	#customizeModal .modal-header {
		padding: 18px;
	}

	#customizeModal .modal-header .modal-title {
		font-size: 1.15rem;
	}

	.customize-image-wrapper {
		padding: 16px;
	}

	.img-wrp {
		width: 65px;
		height: 65px;
	}

	.img-container.as-shown {
		width: 80px;
	}
}

/* Product Info Tabs Section */
.product-info-tabs {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f0f0f0;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
    color: #666;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
}
.nav-tabs .nav-link.active {
    color: #000;
    border-bottom: 3px solid #000;
}

.nav-tabs-custom {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 0;
}

.nav-tabs-custom .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 15px 25px;
    transition: all 0.3s ease;
    background: transparent;
}

.nav-tabs-custom .nav-link:hover {
    color: #667eea;
    background: transparent;
}

.nav-tabs-custom .nav-link.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: transparent;
}

.tab-content {
    padding: 30px 0;
}

.tab-content-custom {
    padding: 30px 0;
}

.size-chart-table {
    width: 100%;
    margin-top: 20px;
}
.size-chart-table th,
.size-chart-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}
.size-chart-table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Description Tab */
.description-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

.description-text h6 {
    color: #212529;
    font-weight: 700;
    margin: 20px 0 15px;
}

/* Policy Tab */
.policy-text {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
}

/* Reviews Tab */
.review-stars-large {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 2rem;
    color: #ffc107;
}

.review-form-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.review-form-card h6 {
    color: #212529;
    font-weight: 700;
    margin-bottom: 20px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    font-size: 2rem;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    color: #dee2e6;
    transition: color 0.2s;
}

.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

.reviews-list {
    max-width: 800px;
    margin: 30px auto 0;
}

.submitReviewbtn{
    padding: 10px 20px;
    border-radius: 4px;
}

/* Related Products Section */
.related-products-wrapper {
    padding: 50px 0 30px;
}

.section-header-related h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 5px;
}

.section-header-related p {
    color: #6c757d;
    font-size: 1rem;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 991px) {
    .product-info-tabs {
        padding: 20px;
    }
    
    .nav-tabs-custom .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .review-stars-large {
        font-size: 1.5rem;
    }
    
    .section-header-related h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nav-tabs-custom {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-tabs-custom .nav-link {
        white-space: nowrap;
        padding: 10px 15px;
    }
    
    .product-info-tabs {
        padding: 15px;
    }
    
    .tab-content-custom {
        padding: 20px 0;
    }
    
    .review-form-card {
        padding: 20px;
    }
	
}



