/* ===== PRODUCT DETAILS PAGE - FIXED LAYOUT ===== */

.product-content-wrapper {
  margin-top: 152px;
  padding: 0px 15px;
}

@media (max-width: 767px) {
  .product-content-wrapper {
    top: 30px !important; /* Reduced for mobile navbar */
    margin-top: 90px;
  }
}
/* Desktop Layout - Force 2 Column */
@media (min-width: 768px) {
  .product-main-row {
    display: flex !important;
    flex-wrap: wrap;
  }

  .product-main-row > .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

.mobile-head {
  display: none;
}

.deskstop-head {
  display: block;
}

/* Height Chart Inside Image - Desktop */
.tt-height-inside {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #f9ffa1 0%, #fefff6 100%);
  border: 1px solid #fcffe9ff;
  border-radius: 0px 0px 20px 20px;
  padding: 10px 15px;
  box-sizing: border-box;
  display: flex !important;
  align-items: center;
  z-index: 12;
  font-family: "DM Sans", sans-serif;
}

.tt-height-inside-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.tt-height-left {
  display: flex;
  align-items: center;
}

.tt-height-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tt-height-text {
  color: #303030;
  font-size: 13px;
  font-weight: 400;
}

.tt-height-text strong {
  color: #303030;
  font-weight: 600;
}

.tt-height-chart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  color: #9f9400;
  font-weight: 600;
  text-decoration: underline;
  font-size: 13px;
  background: rgba(255, 255, 255, 0);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.06s ease;
}

.tt-height-chart-link:hover {
  color: #857c00ff;
  background: #9f95001e;
  /* transform: translateY(-1px); */
}

.tt-height-link-text {
  text-decoration: underline;
  text-decoration-color: #857c00ff;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  display: inline-block;
}

.tt-height-icon {
  flex-shrink: 0;
  display: inline-block;
}

/* Height Chart Modal */
.tt-hc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.tt-hc-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.tt-hc-modal {
  background: #fff;
  border-radius: 10px;
  padding: 0px;
  max-width: 92%;
  max-height: 92%;
  overflow: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.tt-hc-modal img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.tt-hc-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

/* Mobile Specific Layout */
@media (max-width: 767px) {
  /* Section Separators */
  .mobile-section-separator {
    height: 1px;
    background-color: #e0e0e0;
    width: 100%;
  }

  /* Hide desktop specs box on mobile */
  .mobile-hide-specs-box {
    display: none !important;
  }

  /* Mobile Specifications Section */
  .mobile-specs-section {
    display: block;
  }

  .mobile-specs-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #303030;
    text-align: left;

    padding: 0px !important;
  }

  .mobile-specs-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 25px;
  }

  .spec-row {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    border-bottom: ronone !important;
    padding-bottom: 4px !important;
    gap: 15px !important;
  }

  .mobile-specs-grid .spec-label {
    font-weight: 500 !important;
    font-size: 14px !important;
    min-width: 100px !important;
    text-align: start !important;
  }

  .mobile-specs-grid .spec-value {
    font-size: 14px;
    color: #303030;
    font-weight: 700;
    text-align: right;
  }

  /* Extend Subscription - Show only first item */
  .mobile-extend-single {
    display: flex;
    margin-bottom: 20px;
  }

  /* Hide other items (Terms, Cancellation, FAQs) in extend section */
  .mobile-hide-in-extend {
    display: none !important;
  }

  /* Show them later as separate section */
  .mobile-links-section {
    display: block;
  }

  .mobile-links-section .tt-extend-btn {
    margin-bottom: 15px;
  }

  /* Riders in Action */
  .mobile-riders-section {
    margin-top: 20px;
    padding: 0 15px;
  }

  .mobile-riders-section h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    color: #303030;
  }

  /* Smaller height chart text on mobile */
  .tt-height-inside {
    padding: 8px 12px;
  }

  .tt-height-text,
  .tt-height-chart-link {
    font-size: 12px;
  }

  .tt-height-chart-link {
    gap: 6px;
    padding: 5px 6px;
  }

  .mobile-head {
    display: none !important;
  }

  .deskstop-head {
    display: block !important;
  }

  /* Similar Products Mobile Overrides */
  #related-products .card-title {
    color: black !important;
    font-size: 14px !important;
    display: inline-block !important;
    margin-bottom: 0px !important;
    font-weight: 500 !important;
    margin-top: 10px;
  }

  #related-products .card-meta {
    padding-top: 5px !important;
    margin-top: 0px !important;
    font-size: 13px !important;
    color: #a4afb5;
  }

  #related-products .featured-item {
    margin-bottom: 10px !important;
    padding: 10px !important;
  }

  .mobile-price-labels span {
    font-weight: 900 !important;
    font-size: 20px !important;
    color: #303030 !important;
  }

  .mobile-price-labels .per-month {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}

/* Desktop Only - Keep specs box visible */
@media (min-width: 768px) {
  .mobile-section-separator,
  .mobile-specs-section,
  .mobile-links-section {
    display: none !important;
  }
}

/* Price Box Refactoring */
.duration-option {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  min-width: 0 !important;
  padding: 12px 0px !important;
  text-align: center !important;
}

@media (min-width: 768px) {
  .product-info-col {
    padding: 20px 55px !important; /* Desktop padding */
    position: relative;
    right: 50px;
  }
}

/* Adjust duration-option for better mobile display */
@media (max-width: 767px) {
  .duration-option {
    margin: 5px !important;
    min-width: 80px !important;
  }

  .desktop-divider {
    display: none !important;
  }
}

.product-price-box {
  white-space: nowrap;
  font-size: clamp(14px, 4vw, 18px) !important;
  font-weight: 700;
  font-family: "Poppins";
  color: #303030;
  padding-left: 0px;
}

.product-price-text {
  text-align: center;
  font-size: clamp(14px, 4.5vw, 20px) !important;
  color: #303030 !important;
  font-weight: 700 !important;
  font-style: normal;
  padding: 0px !important;
}

/* =========================================
   Product Page Refactoring - New Classes
   ========================================= */

/* --- Slider & Images --- */
.product-slider-wrapper {
  padding: 0px 14px !important;
  position: relative !important;
}

.product-slider-block {
  position: relative !important;
  display: block !important;
}

.main-product-image {
  border: 1px solid #d6e5eb !important;
  border-radius: 20px !important;
  width: 100% !important;
  display: block !important;
  padding-bottom: 25px !important;
}

/* --- Badges --- */
.gear-badge {
  position: absolute !important;
  top: 15px !important;
  left: 20px !important;
  background: linear-gradient(
    88.74deg,
    #f9ffa1 0.67%,
    #fefff7 98.92%
  ) !important;
  padding: 5px 12px !important;
  border-radius: 15px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: #9f9400 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
  z-index: 10 !important;
}

.booked-badge-container {
  position: absolute !important;
  bottom: 40px !important;
  right: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  z-index: 10 !important;
}

.booked-badge {
  background-color: #dc3545 !important;
  color: white !important;
  padding: 5px 12px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  margin-bottom: 5px !important;
  font-weight: 500 !important;
}

.available-badge {
  background-color: rgba(255, 255, 255, 0.95) !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  color: #333 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  font-weight: 600 !important;
}

/* --- Height Info --- */
.height-info-container {
  position: absolute !important;
  bottom: 1px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-radius: 0 0 20px 20px !important;
  background: linear-gradient(
    88.74deg,
    #f9ffa1 0.67%,
    #fefff7 98.92%
  ) !important;
  padding: 2px 15px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.height-text {
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #303030 !important;
}

.height-chart-link {
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #9f9400 !important;
  text-decoration: underline !important;
}

/* --- Specifications Box (Left Column) --- */
.blue-specs-box {
  background: #e6f8ff !important;
  border-radius: 15px !important;
  padding: 20px !important;
  margin-top: 20px !important;
}

.specs-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  padding-bottom: 0 !important;
  color: #303030 !important;
}

.specs-row {
  margin: 0 !important;
}

.specs-col {
  padding: 0 !important;
}

.specs-item-wrapper {
  margin-bottom: 12px !important;
}

.specs-label {
  color: #303030 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  margin: 0 !important;
}

.specs-value {
  font-size: 14px !important;
  color: #303030 !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

/* --- Right Column Content --- */
.right-content-wrapper {
  margin-top: 10px !important;
}

.product-title-desktop {
  font-size: 20px !important;
  color: #303030 !important;
  padding-bottom: 25px !important;
  padding-left: 10px !important;
  display: block !important;
}

.product-title-mobile {
  font-size: 20px !important;
  color: #303030 !important;
  padding-bottom: 15px !important;
  display: none !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .product-title-desktop {
    display: none !important;
  }
  .product-title-mobile {
    display: block !important;
  }
}

.duration-per-month {
  white-space: nowrap !important;
  font-size: clamp(8px, 3vw, 13px) !important;
  color: #8f999e !important;
  margin-top: 0px !important;
}

.duration-months-text {
  white-space: nowrap !important;
  font-weight: 800 !important;
  color: #303030 !important;
  font-size: clamp(10px, 3.5vw, 15px) !important;
}

/* --- Buttons --- */
.add-to-cart-container {
  text-align: center !important;
  padding-top: 20px !important;
}

.mobile-price-labels {
  display: none !important;
}

.add-to-cart-btn {
  width: 100% !important;
  background: linear-gradient(180deg, #21b9ff 0%, #00a5f1 100%) !important;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  padding: 10px !important;
  border: none !important;
  border-radius: 30px !important;
  cursor: pointer !important;
}

/* Ensure Related Products is full width */
#related-products {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  clear: both !important;
}

#related-products .featured-item {
  border-radius: 20px !important;
}

/* Right column gallery tweaks */
.right-col-gallery {
  padding-top: 25px !important;
  padding-bottom: 5px !important;
}

.right-col-gallery .riders-gallery-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 15px !important;
}

@media (max-width: 767px) {
  /* Horizontal Scroll for Riders Gallery */
  .riders-gallery-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important;
    padding-left: 15px !important;
    margin-left: -15px !important;
    width: calc(100% + 30px) !important;
    scrollbar-width: none; /* Firefox */
  }

  .riders-gallery-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .rider-image-card {
    flex: 0 0 130px !important;
  }

  /* Horizontal Scroll for Similar Cycles */
  #related-products .posts #related-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 20px !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding-left: 15px !important;
    width: calc(100% + 30px) !important;
    scrollbar-width: none;
  }

  #related-products .posts #related-row::-webkit-scrollbar {
    display: none;
  }

  #related-row .product-card {
    flex: 1 0 286.6px !important;
    max-width: 100% !important; /* Allow growing */
    margin-right: 20px !important;
    padding: 0 !important;
  }
}

/* Mobile Slider for Similar Cycles */
@media (max-width: 767px) {
  .similar-slider-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 10px;
    padding-bottom: 20px;
    margin: 0 -15px !important; /* Overlap container padding */
    padding-left: 15px;
    padding-right: 15px;
  }

  .similar-slider-inner .product-card {
    flex: 0 0 240px !important; /* Slightly smaller on mobile */
    max-width: 240px !important;
    padding: 0 !important;
  }

  /* Hide Select button on mobile for similar cycles */
  #related-products .main-blue-button-stock {
    display: none !important;
  }

  .similar-cycles-header-wrapper {
    padding: 0px !important;
  }
}

.section-heading {
  margin-top: 0px !important;
}

/* Similar Cycles Section Styles */
.similar-cycles-header-wrapper {
  padding: 0 15px;
  margin-top: 15px;
  /* margin-bottom: 15px; */
}

.similar-cycles-header-wrapper .section-heading h1 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #303030 !important;
  text-align: left;
}

.similar-slider-wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .similar-slider-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    gap: 20px;
    margin: 0 !important;
  }

  .similar-slider-inner::-webkit-scrollbar {
    height: 6px;
  }

  .similar-slider-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .similar-slider-inner::-webkit-scrollbar-thumb {
    background: #00a5f1;
    border-radius: 10px;
  }

  .similar-slider-inner .product-card {
    flex: 1 0 286.6px !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-right: 20px !important;
  }
}

/* Favourites button for similar cycles */
.wishlist-btn {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 20 !important;
  cursor: pointer !important;
  width: 35px !important;
  height: 35px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.wishlist-btn img {
  width: 20px !important;
  height: auto !important;
  pointer-events: none !important;
  border-radius: 0px !important;
}

/* Card Alignment Fixes */
.card-action-flex-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  margin-top: 10px;
}

.card-action-flex-row .price-col {
  margin: 0 !important;
  padding: 0 !important;
}

.card-action-flex-row .main-blue-button-stock {
  margin: 0 !important;
}

.modal-title-pincode {
  font-weight: 600 !important;
  font-size: 18px !important;
  margin-bottom: 25px !important;
  margin-top: 10px !important;
  color: #303030 !important;
}

.pincode-input-wrapper {
  margin-bottom: 25px !important;
}

.pincode-input-style {
  text-align: center !important;
  font-size: 18px !important;
  padding: 12px !important;
  border-radius: 8px !important;
}

.pincode-input-style.active {
  border: none !important;
}

.pincode-msg-style {
  margin-bottom: 15px !important;
  font-size: 13px !important;
  display: none !important;
}

.pincode-confirm-btn {
  width: 40% !important;
  background: #00a5f1 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

/* --- Universal Bottom-Sheet Modals (Mobile) --- */
@media (max-width: 767px) {
  .mobile-bottom-sheet.modal {
    padding-right: 0 !important;
  }

  .mobile-bottom-sheet .modal-dialog {
    margin: 0 !important;
    position: fixed !important;
    bottom: -100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transition: bottom 0.3s ease-out !important;
  }

  .mobile-bottom-sheet.show .modal-dialog {
    bottom: 0 !important;
  }

  .mobile-bottom-sheet .modal-content {
    border-radius: 20px 20px 0 0 !important;
    border: none !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }

  /* Specific override for Extend Modal to match Accessory Slider */
  .tt-extend-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 2000 !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }

  .tt-extend-overlay.show {
    display: flex !important;
    opacity: 1 !important;
  }

  .tt-extend-modal {
    position: fixed !important;
    bottom: -100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    background: #fff !important;
    border-radius: 20px 20px 0 0 !important;
    transition: bottom 0.3s ease-out !important;
    z-index: 2001 !important;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1) !important;
  }

  .tt-extend-overlay.show .tt-extend-modal {
    bottom: 0 !important;
  }

  .tt-extend-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #e7eef1 !important;
    padding-bottom: 15px !important;
  }

  .tt-extend-close {
    font-size: 28px !important;
    color: #999 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    line-height: 1 !important;
  }

  .gear-badge {
    top: 10px !important;
    left: 10px !important;
    font-size: 12px !important;
  }

  .height-text {
    font-size: 12px !important;
  }
}

/* Desktop styles for Extend Modal (centered) */
@media (min-width: 768px) {
  .tt-extend-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 2000 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
  }

  .tt-extend-overlay.show {
    display: flex !important;
    opacity: 1 !important;
  }

  .tt-extend-modal {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    max-width: none !important;
    position: relative !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  }

  .tt-extend-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
  }

  .tt-extend-close {
    font-size: 24px !important;
    color: #999 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
  }
}

.tt-extend-title {
  font-family: "DM Sans", sans-serif !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  color: #303030 !important;
}

.tt-extend-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.tt-extend-list li {
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  color: #303030 !important;
  margin-bottom: 12px !important;
  line-height: 1.5 !important;
}

.tt-extend-footer {
  margin-top: 25px !important;
}

#tt-extend-ok {
  display: block !important;
  width: 100% !important;
  background: linear-gradient(180deg, #21b9ff 0%, #00a5f1 100%) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 12px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  text-decoration: none !important;
}

/* =========================================
   MOBILE HIERARCHY & FIXED BUTTON UPDATES
   ========================================= */

@media (max-width: 767px) {
  /* 1. Mobile Title Formatting */
  .product-title-mobile {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #303030 !important;
    text-align: left !important;
    padding-left: 0 !important;
    display: block !important;
  }

  /* 2. Fixed Add to Cart Button */
  .add-to-cart-container {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    padding: 10px 20px !important;
    z-index: 1000 !important;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .mobile-price-labels {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    line-height: 1.2 !important;
  }

  .mobile-monthly-price {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #303030 !important;
  }

  .mobile-monthly-price .currency {
    font-family: "Courier New", Courier, monospace !important;
    font-size: 26px !important;
    margin-right: 2px !important;
  }

  .mobile-monthly-price .per-month {
    font-size: 16px !important;
    color: #303030 !important;
    font-weight: 400 !important;
  }

  .mobile-duration-label {
    font-size: 14px !important;
    color: #303030 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
  }

  .add-to-cart-btn {
    width: auto !important;
    min-width: 140px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
  }

  /* Spacer to prevent content from being hidden behind fixed button */
  body {
    padding-bottom: 80px !important;
  }

  /* 3. Specs Section */
  .mobile-hide-specs-box {
    display: none !important;
  }

  .mobile-specs-section {
    display: block !important;
    margin-top: 25px !important;
  }

  .mobile-specs-section h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #303030 !important;
    margin-bottom: 15px !important;
  }

  .spec-col-labels,
  .spec-col-values {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start;
  }

  .spec-label {
    font-size: 14px !important;
    color: #303030 !important;
    font-weight: 500 !important;
  }

  .spec-value {
    font-size: 14px !important;
    color: #303030 !important;
    font-weight: 700 !important;
    text-align: right !important;
  }

  /* 4. Separator */
  .mobile-section-separator {
    background-color: #f1f1f1 !important;
  }

  /* 5. Hide redundant links in extend section */
  .mobile-hide-in-extend {
    display: none !important;
  }

  /* 6. Mobile Links Section */
  .mobile-links-section {
    display: block !important;
    margin-top: 30px !important;
  }

  .mobile-links-section .tt-extend-btn {
    margin-bottom: 15px !important;
  }

  .pincode-label-text {
    gap: 5px;
    margin: 0px 10px;
  }

  .duration-option {
    margin: 0px 10px;
  }

  .additional-details-title {
    margin-top: 20px !important;
  }

  .product-sub-detail {
    margin-top: 15px !important;
  }

  .pincode-section {
    padding-bottom: 0px !important;
  }

  .featured-item .tag {
    left: 8%;
    top: 7%;
  }

  .featured-item {
    margin-bottom: 0px !important;
    padding: 0px !important;
  }

  .featured-item h4 {
    font-weight: 400 !important;
    font-size: 14px !important;
  }

  .card-action-flex-row {
    display: none !important;
  }

  .height-chart-link {
    font-size: 12px !important;
  }

  .product-type-height {
    font-size: 15px !important;
    padding-top: 0px !important;
    color: #a4afb5 !important;
    font-weight: 400 !important;
  }
}

.product-type-height {
  font-size: 15px !important;
  padding-top: 12px !important;
  color: #a4afb5 !important;
  font-weight: 400 !important;
}

.tag {
  background: linear-gradient(
    88.74deg,
    #f9ffa1 0.67%,
    #fefff7 98.92%
  ) !important;
}

@media (min-width: 768px) {
  .product-title-mobile {
    display: none !important;
  }
  .mobile-section-separator {
    display: none !important;
  }
  .mobile-specs-section {
    display: none !important;
  }
  .mobile-links-section {
    display: none !important;
  }

  .duration-option {
    margin: 0 15px;
  }

  .featured-item h4 {
    transition: all 0.5s;
    color: #303030;
    font-weight: 800;
    font-size: 18px;
  }
}
