body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f8f8;
  color: #333;
}

/* Breadcrumb */
.breadcrumb {
  padding: 10px 20px;
  background: #fff;
  font-size: 14px;
  margin-bottom: 10px;
}
.breadcrumb a {
  text-decoration: none;
  color: #2857e3;
}
.breadcrumb span {
  color: #555;
}

/* Layout */
.content-flex {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 20px;
  gap: 20px;
}

/* Sticky left section */
.left-section {
  display: flex;
  gap: 20px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Thumbnail gallery */
.left-gallery {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-thumbs {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.gallery-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin: 5px 0;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: 0.3s;
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: #2857e3;
}
.gallery-arrow {
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 6px;
  margin: 5px 0;
  border-radius: 4px;
}

/* Main image */
.cover-images {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-img-container {
  position: relative;
  display: inline-block;
  width: 400px;
  height: 400px;
}
.main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #ddd;
  cursor: crosshair;
  background: #fff;
}

/* Zoom box */
.zoom-result {
  position: absolute;
  left: 105%;
  top: 0;
  width: 450px;
  height: 450px;
  border: 1px solid #ccc;
  background-repeat: no-repeat;
  background-size: 200%;
  display: none;
  z-index: 10;
}

.section-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}
.desc p {
    margin-bottom: 10px;
}

.product-trust-signals {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin: 32px 0 0 0;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-item img {
    width: 54px;
    height: 54px;
    margin-bottom: 8px;
    object-fit: contain;
}

.trust-text span {
    display: block;
    color: #788090;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin-top: 0;
}

.color-names-section { margin-bottom: 20px; }
.section-label { font-weight: bold; font-size: 18px; margin-right: 12px; }
.color-cards-row {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.color-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 14px 10px 10px 10px;
    text-align: center;
    width: 100px;
    min-height: 140px;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s;
}
.color-card.selected {
    border-color: #2857e3;
    box-shadow: 0 0 0 2px #2857e329;
}
.color-card.unavailable {
    opacity: 0.65;
    border-color: #e53935;
    cursor: not-allowed;
}
.card-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 5px;
}
.card-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    margin-bottom: 2px;
}
.card-unavailable {
    color: #e53935;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

/* Available Offers Section */
.available-offers {
    background: #2a4d31;  /* Dark Green Background */
    padding: 20px;
    border-radius: 8px;
    color: white;  /* White text */
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.offer-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;  /* White title */
}

.offer-list {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.offer-list li {
    background: #355c47;  /* Slightly lighter dark green for list items */
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer-list li br {
    margin: 5px 0;
}

.offer-list li:hover {
    background: #2f7d56;  /* Lighter green on hover */
    cursor: pointer;
}

/* Delivery and Shipping Information Section */
.delivery-info {
    background-color: #f8f8f8;  /* Light background */
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.delivery-title {
    font-size: 26px;
    font-weight: 700;
    color: #2a4d31;  /* Dark Green */
    text-align: center;
    margin-bottom: 20px;
}

.delivery-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));  /* Responsive grid */
    gap: 20px;
}

.info-item {
    background-color: #2a4d31;  /* Dark Green */
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.info-item p {
    font-size: 16px;
    font-weight: 400;
    color: #e0e0e0;  /* Lighter gray for text */
}

.info-item:hover {
    background-color: #355c47;  /* Slightly lighter green on hover */
    transform: translateY(-5px);  /* Slight lift effect */
}




/* Buttons */
.button-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
  width: 100%;
}
.btn {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-cart {
  background: linear-gradient(135deg, #ffb300, #ff6f00);
  color: #fff;
}
.btn-buy {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  color: #fff;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Right section */
.cover-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product FAQs Section */
.product-faqs {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faqs-title {
    font-size: 26px;
    font-weight: 700;
    color: #2a4d31;  /* Dark Green */
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #2a4d31;  /* Dark Green */
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    border: none;
    text-align: left;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #355c47;
}

.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 6px;
}

/* Active FAQ (show answer) */
.faq-item.active .faq-answer {
    display: block;
}

.product-title {
    font-size: 26px;
    font-weight: 700;
}
.rating {
    color: #ffb400;
    font-size: 16px;
}
.price {
    font-size: 22px;
    color: #e53935;
}

.desc ul {
    padding-left: 20px;
    margin-top: 6px;
}

#selectedColor {
    margin-left: 10px;
    font-size: 14px;
}

/* Customer Reviews Section */
.customer-reviews {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.reviews-title {
    font-size: 28px;
    font-weight: 700;
    color: #2a4d31;  /* Dark Green */
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* Left Column: Display Reviews */
.reviews-list {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

    height: 480px; /* Fixed height to show approx 4 reviews */
    overflow-y: auto;
    scrollbar-width: thin; /* For Firefox */
}

/* Scrollbar styling for WebKit browsers (Chrome, Safari, Edge) */
.reviews-list::-webkit-scrollbar {
    width: 8px;
}

.reviews-list::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-list::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
    border-radius: 4px;
}

/* Each individual review item */
.review-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.review-text {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    display: block;
}

/* Right Column: Review Form */
.review-form {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.review-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2a4d31;  /* Dark Green */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-form label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.review-form input, .review-form select, .review-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.review-form input:focus, .review-form select:focus, .review-form textarea:focus {
    border-color: #2857e3;  /* Blue border on focus */
}

.review-form textarea {
    resize: vertical;
}

.review-btn {
    background: #2857e3;
    color: #fff;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-btn:hover {
    background: #1a4db6;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}


/* Related Products Section */
.related-products {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    overflow: hidden; /* Hide overflow content */
}

.related-title {
    font-size: 28px;
    font-weight: 700;
    color: #2a4d31;  /* Dark Green */
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container for Related Items */
.related-items-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Hide overflow content */
}

/* Related Products Items (Flexbox Layout) */
.related-items {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0;
    flex-wrap: nowrap; /* Prevent wrapping */
    transition: transform 0.3s ease-in-out;
}


/* Individual Related Item Card */
.related-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 240px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .related-items {
        gap: 14px;
        justify-content: flex-start;
    }

    .related-item {
        width: 180px;          /* ✅ perfect mobile card */
        padding: 14px;
    }
}

/* Hover effect */
.related-item:hover {
    transform: translateY(-5px);  /* Slight lift effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.related-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 6px;
}

.related-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.related-price {
    font-size: 16px;
    color: #e53935;  /* Red for price */
    margin-bottom: 10px;
}

.related-btn {
    background: #2857e3;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.related-btn:hover {
    background: #1a4db6;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin: 80px 0;
    flex-wrap: wrap;
}

/* Social Box */
.social-box {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Headings */
.social-heading {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
}

.social-subheading {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

/* YouTube */
.youtube-box iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Instagram */
.insta-preview {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Buttons */
.social-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* YouTube Button */
.youtube-btn {
    background: #ff0000;
    color: #fff;
}
.youtube-btn:hover {
    background: #cc0000;
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(45deg, #fd1d1d, #e1306c, #c13584, #833ab4, #405de6);
    color: #fff;
}
.instagram-btn:hover {
    opacity: 0.9;
}

.desc h1,
.desc h2,
.desc h3,
.desc h4 {
    margin: 18px 0 10px;
    font-weight: 600;
    color: #222;
}

.desc h1 { font-size: 1.5rem; }
.desc h2 { font-size: 1.3rem; }
.desc h3 { font-size: 1.15rem; }
.desc h4 { font-size: 1.05rem; }

/* Responsive */
@media (max-width: 768px) {
    .social-section {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .delivery-details {
        grid-template-columns: 1fr;  /* Single column on small screens */
    }
}
/* ===============================
   MOBILE THUMBNAILS (COVERS)
================================ */
.mobile-thumb-wrapper {
    display: none;
}

@media (max-width: 768px) {

    .left-gallery {
        display: none;
    }

    .mobile-thumb-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: 12px;
        width: 100%;
    }

    .mobile-thumbs {
        display: flex;
        gap: 10px;
        overflow: hidden;
        justify-content: center;
        flex: 1;
    }

    .mobile-thumb {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid transparent;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-thumb.active {
        border-color: #2857e3;
    }

    .thumb-arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: #2857e3;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* ===============================
   PRODUCT DESCRIPTION (TINYMCE)
================================ */

.desc {
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.desc h2.section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.desc p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.desc ul {
    padding-left: 20px;
    margin: 10px 0 15px 0;
}

.desc ul li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.desc ol {
    padding-left: 20px;
    margin: 10px 0 15px 0;
}

.desc ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

.desc strong {
    font-weight: 600;
}

.desc a {
    color: #1e90ff;
    text-decoration: underline;
}

/* =========================
   MRP PILL DESIGN
========================= */

.mrp-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;          /* ✅ KEY FIX */
    max-width: max-content;      /* ✅ KEY FIX */
    gap: 12px;
    padding: 12px 22px;
    border: 2px solid #16a34a;
    border-radius: 999px;
    background: #f0fdf4;
    margin: 12px 0;
    white-space: nowrap;         /* ✅ prevent stretching */
}

.mrp-pill + .desc {
    margin-top: 8px;    /* ✅ tight spacing like screenshot */
}

.mrp-label {
    font-size: 15px;
    font-weight: 600;
    color: #15803d;
}

.mrp-price {
    font-size: 30px;
    font-weight: 700;
    color: #15803d;
}

.mrp-tax {
    font-size: 14px;
    color: #374151;
}

/* Mobile */
@media (max-width: 480px) {
    .mrp-pill {
        padding: 12px 18px;
        gap: 10px;
    }

    .mrp-price {
        font-size: 24px;
    }

    .mrp-tax {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .main-img-container {
        width: 100%;
        height: auto;
    }

    .main-img {
        width: 100%;
        max-height: 320px;
        object-fit: contain;
    }
}

/* ===============================
   RELATED PRODUCTS (MANUAL SLIDER)
================================ */

.related-products {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.related-title {
    font-size: 28px;
    font-weight: 700;
    color: #2a4d31;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.related-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-items-container {
    overflow: hidden;
    width: 100%;
}

.related-items {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.related-item {
    width: 220px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 10px;
}

.related-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.related-price {
    font-size: 15px;
    color: #e53935;
    margin-bottom: 10px;
}

.related-btn {
    display: inline-block;
    background: #2857e3;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.related-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #2857e3;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
    .related-item {
        width: 180px;
    }
}
/* Make full card clickable */
.related-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Prevent underline or color change */
.related-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Cursor feedback */
.related-item {
    cursor: pointer;
}
/* ===============================
   MOBILE IMAGE + THUMB GALLERY
================================ */
@media (max-width: 768px) {

    /* Hide desktop thumbnails */
    .left-gallery {
        display: none;
    }

    /* Image container */
    .main-img-container {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .main-img {
        width: 100%;
        max-height: 360px;
        object-fit: contain;
        border-radius: 12px;
        background: #fff;
    }

    /* Mobile thumbs wrapper */
    .mobile-thumb-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 12px;
        width: 100%;
    }

    /* Thumbs row */
    .mobile-thumbs {
        display: flex;
        gap: 10px;
        overflow: hidden;
        max-width: 260px;
        justify-content: center;
    }

    /* Individual thumb */
    .mobile-thumb {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
        border: 2px solid transparent;
        background: #fff;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-thumb.active {
        border-color: #2857e3;
    }

    /* Arrow buttons */
    .thumb-arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: #2857e3;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
}

/* ==========================================
   FULL MOBILE RESPONSIVE FIX – PRODUCT PAGE
========================================== */

@media (max-width: 768px) {

    /* 1️⃣ PAGE LAYOUT */
    .content-flex {
        flex-direction: column;
        padding: 12px;
        margin: 0;
        border-radius: 0;
        border: none;
    }

    /* 2️⃣ LEFT SECTION (IMAGE AREA) */
    .left-section {
        position: static;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cover-images {
        width: 100%;
        align-items: center;
    }

    /* 3️⃣ MAIN IMAGE */
    .main-img-container {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .main-img {
        width: 100%;
        max-height: 340px;
        object-fit: contain;
        border-radius: 12px;
    }

    /* 4️⃣ MOBILE THUMB GALLERY */
    .mobile-thumb-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .mobile-thumbs {
        max-width: 260px;
        display: flex;
        justify-content: center;
        gap: 10px;
        overflow: hidden;
    }

    .mobile-thumb {
        width: 56px;
        height: 56px;
        object-fit: contain;
        border-radius: 8px;
    }

    /* 5️⃣ BUTTONS (STACKED & FIXED SIZE) */
    .button-row {
        flex-direction: column;
        gap: 12px;
        margin-top: 14px;
        width: 100%;
    }

    .btn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }

    /* 6️⃣ RIGHT SECTION (PRODUCT INFO) */
    .cover-info {
        width: 100%;
        padding-top: 10px;
    }

    .product-title {
        font-size: 20px;
        line-height: 1.3;
    }

    /* 7️⃣ PRICE */
    .mrp-pill {
        margin: 10px 0;
        padding: 10px 16px;
    }

    .mrp-price {
        font-size: 22px;
    }

    /* 8️⃣ COLOR CARDS */
    .color-cards-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .color-card {
        width: 90px;
        min-height: 130px;
    }

    /* 9️⃣ DESCRIPTION */
    .desc {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 🔟 REVIEWS SECTION */
    .reviews-content {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-list {
        height: auto;
        max-height: 360px;
    }

    /* 1️⃣1️⃣ RELATED PRODUCTS */
    .related-wrapper {
        gap: 8px;
    }

    .related-item {
        width: 170px;
    }

    /* 1️⃣2️⃣ SOCIAL SECTION */
    .social-section {
        margin: 40px 0;
    }

    .social-box {
        padding: 20px;
    }

    /* 1️⃣3️⃣ ZOOM DISABLE (IMPORTANT) */
    .zoom-result {
        display: none !important;
    }
}
