

        .shop-header-icons a {
            color: #2c3e50;
            font-size: 22px;
            margin-left: 25px;
            position: relative;
            transition: color 0.3s;
        }

        .shop-header-icons a:hover {
            color: #b7202e;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #b7202e;
            color: white;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* Features Section */
        .features-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }

        .feature-box {
            display: flex;
            align-items: center;
            padding: 20px;
        }

        .feature-box i {
            font-size: 40px;
            color: #b7202e;
            margin-right: 15px;
        }

        .feature-box h5 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .feature-box p {
            margin: 0;
            font-size: 13px;
            color: #777;
        }

        /* Categories Section */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #b7202e;
        }

        .categories-section {
            padding: 80px 0;
        }

        .category-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-card img {
            width: 100%;
            height: 250px;
            /* object-fit: cover; */
            transition: transform 0.5s;
        }

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 30px 20px;
            color: white;
        }

        .category-overlay h4 {
            margin: 0;
            font-size: 22px;
            font-weight: 600;
        }

        .category-overlay p {
            margin: 5px 0 0;
            font-size: 14px;
            opacity: 0.8;
        }

        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .product-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 30px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 250px;
            background-color: #f5f5f5;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #b7202e;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .product-badge.new {
            background-color: #27ae60;
        }

        .product-actions {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .product-card:hover .product-actions {
            opacity: 1;
        }

        .product-actions a {
            width: 45px;
            height: 45px;
            background-color: white;
            color: #2c3e50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .product-actions a:hover {
            background-color: #b7202e;
            color: white;
        }

        .product-info {
            padding: 20px;
        }

        .product-category {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-title {
            font-size: 18px;
            font-weight: 600;
            margin: 8px 0;
            color: #2c3e50;
        }

        .product-title a:hover {
            color: #b7202e;
        }

        .product-rating {
            color: #ffc107;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .product-rating span {
            color: #999;
            margin-left: 5px;
        }

        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: #b7202e;
        }

        .product-price del {
            font-size: 16px;
            color: #999;
            font-weight: 400;
            margin-left: 10px;
        }

        .btn-add-cart {
            width: 100%;
            background-color: #2c3e50;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            margin-top: 15px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-add-cart:hover {
            background-color: #b7202e;
        }
        .payment-img img{
          height: 32px;
          width: auto;
          object-fit: contain;
        }


/*=================================PRODUCT DETAILS PAGE===========================================*/

/* Breadcrumb */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 20px 0;
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #2c3e50;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #b7202e;
}

.breadcrumb-item.active {
    color: #777;
}

/* Product Detail Section */
.product-detail-section {
    padding: 60px 0;
}

/* Image Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}
.gallery-zoom-wrap{
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.main-image {
  background-color: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 500px;
  flex: 1 1 auto;
  margin-bottom: 20px;
}
.main-image img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}

/* square lens */
.zoom-lens{
  position:absolute;
  width: 150px;
  height: 150px;
  border: 2px solid #b7202e;
  background: rgba(183, 32, 46, 0.10);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  pointer-events:none;
  display:none;
}
.zoom-panel-host{
  position: relative;
  min-height: 500px; /* prevents overlay height jumping */
}

/* FULL overlay over the whole product-info-detail (NO pushing) */
.zoom-panel-overlay{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  border-radius: 15px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);

  background-repeat: no-repeat;
  background-position: 0 0;

  display: block;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease;
  z-index: 999;

  pointer-events: none;
}

.zoom-panel-overlay.is-on{
  opacity: 1;
  visibility: visible;
}

.product-badge-detail {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #b7202e;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: calc(25% - 12px);
    height: 100px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #b7202e;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-detail {
    padding-left: 40px;
    border-radius: 15px;
}

.product-category-detail {
    color: #b7202e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title-detail {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-right: 10px;
}

.rating-text {
    color: #777;
    font-size: 14px;
}

.rating-text a {
    color: #b7202e;
    margin-left: 5px;
}

.product-price-detail {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #b7202e;
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.discount-badge {
    display: inline-block;
    background-color: #b7202e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

.save-amount {
    display: block;
    color: #27ae60;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

.product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-meta {
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.meta-label {
    font-weight: 600;
    width: 120px;
    color: #2c3e50;
}

.meta-value {
    color: #666;
}

.stock-status {
    display: inline-block;
    color: #27ae60;
    font-weight: 600;
}

.stock-status i {
    margin-right: 5px;
}

/* Color Selection */
.color-selection {
    margin-bottom: 25px;
}

.selection-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 16px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.color-option:hover,
.color-option.active {
    border-color: #b7202e;
    transform: scale(1.1);
}

.color-option.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
}

/* Size Selection */
.size-selection {
    margin-bottom: 25px;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* .size-option {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
} */
.size-option {
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.size-option:hover,
.size-option.active {
    border-color: #b7202e;
    background-color: #b7202e;
    color: white;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 30px;
}

.quantity-input {
    display: flex;
    align-items: center;
    width: fit-content;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    background-color: white;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.qty-btn:hover {
    border-color: #b7202e;
    background-color: #b7202e;
    color: white;
}

.qty-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.qty-btn:last-child {
    border-radius: 0 8px 8px 0;
}

#quantity {
    width: 80px;
    height: 45px;
    border: 2px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

/* Action Buttons */
.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-cart-detail {
    flex: 1;
    background-color: #b7202e;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart-detail:hover {
    background-color: #8f1924;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 32, 46, 0.3);
}

.btn-buy-now {
    flex: 1;
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-buy-now:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    color: #2c3e50;
    transition: all 0.3s;
}

.btn-wishlist:hover,
.btn-wishlist.active {
    border-color: #b7202e;
    background-color: #b7202e;
    color: white;
}

/* Additional Actions */
.additional-actions {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.action-link {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-size: 14px;
    transition: color 0.3s;
}

.action-link:hover {
    color: #b7202e;
}

.action-link i {
    margin-right: 8px;
    font-size: 16px;
}

/* Guarantee Badges */
.guarantee-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.guarantee-item i {
    font-size: 24px;
    color: #b7202e;
    margin-right: 12px;
}

.guarantee-item div {
    flex: 1;
}

.guarantee-item h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.guarantee-item p {
    margin: 0;
    font-size: 12px;
    color: #777;
}

/* Product Tabs */
.product-tabs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    border: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 15px 30px;
    position: relative;
    transition: all 0.3s;
}

.nav-tabs .nav-link:hover {
    color: #b7202e;
}

.nav-tabs .nav-link.active {
    color: #b7202e;
    background-color: transparent;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #b7202e;
}

.tab-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

/* Reviews */
.review-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.review-score {
    font-size: 48px;
    font-weight: 700;
    color: #b7202e;
}

.review-stars {
    color: #ffc107;
    font-size: 24px;
    margin: 10px 0;
}

.review-count {
    color: #777;
    font-size: 14px;
}

.review-item {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b7202e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin-right: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.review-rating {
    color: #ffc107;
}

.review-text {
    color: #666;
    line-height: 1.8;
}

.review-helpful {
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}

.helpful-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.helpful-btn:hover {
    border-color: #b7202e;
    color: #b7202e;
}


/* Related Products */
.related-products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #b7202e;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #b7202e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
    color: #2c3e50;
}

.product-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #b7202e;
}
