.magnifier {
    position: absolute;
    border: 3px solid #007bff;
    width: 180px;
    height: 180px;
    overflow: hidden;
    display: none;
    pointer-events: none;
    z-index: 10;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.product-prices #product-price {
    font-weight: bold;
    font-size: 1.4rem;
    color: #222;
}

/* Reduce swiper navigation button size globally */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
}

/* Reduce arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 30px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
}

/* Row styling */
.action-row {
    display: flex;
    gap: 10px;
}

/* Space ONLY between rows */
.action-row + .action-row {
    margin-top: -20px;
}

/* Button container */
.get-link {
    flex: 1;
}

/* Full width button */
.full-width {
    flex: 100%;
}

/* Reset anchor spacing */
.get-link a {
    display: block;
    width: 100%;
    padding: 12px 15px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Add to Bag - GREEN */
.add-to-bag a ,.add-favourite a{
    background-color: #28a745;
}

.add-to-bag a:hover,.add-favourite a:hover {
    background-color: #218838;
}

/* Favourite
.add-favourite a {
    background-color: #6c757d;
}

.add-favourite a:hover {
    background-color: #545b62;
} */

/* Order Now */
.order-now a {
    background-color: #b2cc49;
    font-size: 16px;
}

.order-now a:hover {
    background-color: #758a20;
}

.magnifier img {
    position: absolute;
    transform-origin: top left;
}

/* Full-Screen Modal Styling */
.full-screen-modal {
    position: fixed !important;
    z-index: 9999 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Adjust the product image section in full-screen mode */
.full-screen-modal .product-image-section {
    position: relative;
    padding: 30px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.full-screen-modal .product-image {
    max-height: 70vh;
    max-width: 100%;
    object-fit: contain;
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    padding: 10px;
}

/* Full-Screen Modal: Hide full-screen button */
.full-screen-modal #toggleFullScreen {
    display: none;
}

#toggleFullScreen {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    position: absolute;
    right: 0;
}

/* Full-Screen Modal: Close button styling */
.full-screen-modal .close-button {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 10010 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #333 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.full-screen-modal .close-button:hover {
    background: red !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* Next/Previous Buttons */
.prev-slide-btn,
.next-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(217 212 212 / 57%);
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    outline: none;
}

.prev-slide-btn {
    left: 10px;
}

.next-slide-btn {
    right: 10px;
}

.prev-slide-btn:hover,
.next-slide-btn:hover {
    background-color: rgba(15, 14, 14, 0.137);
}

.slider-thumb-image img {
    height: auto;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slider-thumb-image img:hover {
    border-color: #007bff;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.slider-thumb-image img.active {
    border-color: #007bff;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.5);
}

.full-screen-modal .xzoom-thumbs {
    display: none !important;
}



/* Navigation buttons in modal */
.full-screen-modal .prev-slide-btn,
.full-screen-modal .next-slide-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #333 !important;
    color: #333 !important;
    z-index: 10000 !important;
}

.full-screen-modal .prev-slide-btn:hover,
.full-screen-modal .next-slide-btn:hover {
    background: #333 !important;
    color: white !important;
}

/* Magnifier in modal */
.full-screen-modal .magnifier {
    z-index: 10001 !important;
}

/* Toggle fullscreen button outside modal */
#toggleFullScreen {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#toggleFullScreen:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#toggleFullScreen svg {
    width: 20px;
    height: 20px;
    color: #333;
}

/* Mobile responsive - smaller button */
@media only screen and (max-width: 767px) {
    #toggleFullScreen {
        width: 30px;
        height: 30px;
        padding: 5px;
        top: 5px;
        right: 5px;
    }
    
    #toggleFullScreen svg {
        width: 16px;
        height: 16px;
    }
}

/* Original product image container */
#setPreview {
    position: relative;
    transition: all 0.3s ease;
}

/* Ensure modal takes over entire screen */
.full-screen-modal * {
    box-sizing: border-box;
}



.product-details-main-section {
    padding: 20px 0;
    margin-top: 50px;
}

@media only screen and (max-width: 767px) {
    .product-details-main-section {
        margin-top: 10px;
        padding: 10px 0;
    }
}

.product-details-main-section .card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-details-main-section .card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media only screen and (min-width: 1280px) {
    .product-details-main-section .container {
        width: 1120px;
        margin: 0 auto;
        padding: 0;
    }
}
.product-color span {
    height: 40px;
    width: 40px;
    margin: 4px 7px;
    display: inline-flex;
}
.product-details {
    padding: 20px 0;
}
.product-details h6 {
    font-weight: 500;
    font-size: 19px;
}
.product-details h6 span {
    font-weight: 400;
    font-size: 16px;
}
.details-text {
    padding: 0 20px 0 0;
    text-align: justify;
    font-weight: 400;
}
.card-img {
    position: relative;
    overflow: hidden;
}
.product-title,
.category-title {
    padding: 5px 10px;
    text-align: left;
}
.category-title h5 {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: #525252;
    font-style: italic;
}
.product-title h5 {
    font-size: 17px;
}
.style-and-design ul {
    padding-left: 20px;
}
.style-and-design ul li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
}
.color-title {
    font-size: 20px;
    margin-bottom: 15px;
}
#colorName {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    margin-left: 20px;
}
.colors {
    display: flex;
    gap: 15px;
}
.color-ball {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.color-ball:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.color-ball.selected,
.color-ball.active {
    border: 3px solid #000;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.blue {
    background-color: #0080ff;
}

.green {
    background-color: #008000;
}

.grey {
    background-color: #d3d3d3;
}
.red {
    background-color: #ff0000;
}
.attribute-container {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.attribute-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.details-page-size {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.details-page-size select {
    width: fit-content;
    padding: 8px 16px;
    border-radius: 8px;
    margin: 0;
    border: 2px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

.details-page-size select:hover,
.details-page-size select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}
.get-link {
    margin: 15px 0;
}
.get-link a {
    border: 1px solid #000000;
    display: block;
    width: 100%;
    padding: 7px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}
.action-buttons {
    display: flex;
    align-items: center;
}

/* Make buttons equal width */
.action-buttons .get-link a {
    width: 100%;
}

.add-to-bag a,.add-favourite a {
    background-color: #007a7a;
    color: #fff;
    font-weight: 500;
    border-color: #007a7a;
}

.add-favourite a {
    position: relative;
}
.add-favourite .heart-svg {
    position: absolute;
    left: 15px !important;
    right: auto;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    bottom: 0 !important;
    /* width: 24px;
  height: 24px; */
    cursor: pointer;
    transition:
        fill 0.3s ease,
        stroke 0.3s ease;
    border: none !important;
}
#add-favourite svg {
    width: 24px;
    height: 24px;
}
svg path {
    transition:
        fill 0.5s ease-in-out,
        stroke 0.5s ease-in-out;
}
.heart-svg .default {
    fill: none;
    stroke: #b4b4b4;
}
.heart-svg svg.active {
    fill: #000000;
    stroke: #000000;
    color: red;
}
.scrollable-dropdown {
    width: 100%;
    height: auto; /* Let it adjust dynamically */
    max-height: 150px; /* Limit the dropdown height */
    overflow-y: auto; /* Enable scrolling if content overflows */
    display: block;
}
.product-content {
    overflow: hidden;
    max-height: 150px;
    transition: max-height 0.5s ease;
    text-align: justify;
}
.product-content.expanded {
    max-height: 300px;
}

.read-more-btn {
    color: #007bff;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    float: right;
}
.read-more-btn:hover {
    text-decoration: underline;
}
.extra-content ul {
    padding-left: 18px;
}
.extra-content ul li {
    list-style: disc;
    margin: 5px 0;
}
.content.expanded .extra-content {
    display: block;
}

.slider-thumb-image {
    overflow: hidden;
}
.slider-thumb-image .demo {
    opacity: 0.6;
    cursor: pointer;
}
.slider-thumb-image .active,
.slider-thumb-image .demo:hover {
    opacity: 1;
}
.product-image-section .prev,
.product-image-section .next {
    cursor: pointer;
    position: absolute;
    top: 20px;
    width: auto;
    padding: 7px 12px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 3px 0 0 3px;
    user-select: none;
    -webkit-user-select: none;
    background: #8b8c8d;
}

.product-image-section .next {
    right: 67px;
    border-radius: 0 3px 3px 0;
}
.prev {
    right: 120px;
}
.mySlides {
    text-align: center;
}

.product-image {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-image:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-slide-title {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 13px;
    padding: 10px 0 0 0;
    margin-bottom: 8px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    text-align: left;
}
.product-view-price {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.snackbar {
    visibility: hidden;
    min-width: 200px;
    max-width: 250px;
    /* margin-left: -125px; */
    background-color: #00ff40;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 99999;
    right: 10px;
    bottom: 30px;
    font-size: 17px;
    transition:
        visibility 0s,
        opacity 0.5s linear;
    opacity: 0;
}

.snackbar.show {
    visibility: visible;
    opacity: 1;
}

.notification {
    margin-top: 10px;
    background-color: red;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease-in-out;
}

#notification-area {
    margin-top: 10px; /* Adjust as needed */
    font-size: 16px;
    color: #333;
}

/*  */
