.product-section {
  background: url("../figmaassets/bg.jpg") center/cover no-repeat;
  padding: 60px 0;
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;

}

del .woocommerce-Price-currencySymbol{
    color: #FFD900 !important;
}


.product-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  padding: 0 20px;
}

/* product details page CSS */

.product-d{
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    margin: 0;
   
   
}

.product-page {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-container {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    width: 80%;
}

/* Gallery Styles */
.product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image-border {
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-img {
    max-width: 100%;
    height: auto;
}

.thumbnail-row {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.thumb {
    /* Resized from 166px to 100px for a more compact gallery look */
    width: 100px;
    height: 100px;
    
    /* Proportional border reduction from 3.32px */
    border: 2px solid #BFBFBF;
    border-radius: 4px;
    
    /* Reduced padding to keep the image visible */
    padding: 5px;
    
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Matches the main section background */
    transition: border-color 0.3s ease;
}

.thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumb:hover, .thumb.active {
    border-color: #FFFFFF; /* High-contrast active state from Figma */
}

.gallery-controls {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 46px; /* Arrow size */
}

.page-count {
    font-size: 16px;
    letter-spacing: 2px;
}

/* Details Column */
.product-details {
    flex: 1;
    background: linear-gradient(344.92deg, #000000 -2.53%, #666666 142.98%);
    padding: 40px;
    border-radius: 8px;
}

.category-label {
    font-size: 13.7px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-heading {
    font-size: 28px;
    font-weight: 150;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.product-sku {
    font-size: 15.8px;
    opacity: 0.8;
}

.product-description {
    font-size: 13.3px;
    line-height: 21px;
    margin: 20px 0;
}

.price-section {
    border-top: 1px solid #E7E7E8;
    padding-top: 25px;
    margin-bottom: 30px;
}

.price {
    font-size: 35.4px;
    font-weight: 400;
}

/* EMI Card */
.emi-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 15px 24px;
    color: #000;
    margin-bottom: 30px;
}

.emi-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 15px;
}

.emi-body {
    background: #000;
    color: #FFF;
    border-radius: 6px;
    padding: 15px;
}

.bank-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.bank {
    width: 28px;
    height: 28px;
    background: #FFF;
    color: #5D6D86;
    border-radius: 50%;
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-plans {
    background: #D70004;
    border: none;
    border-radius: 20px;
    color: #FFF;
    padding: 8px 15px;
    font-size: 12px;
    margin-left: auto;
    cursor: pointer;
}


.bank-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}



.bank img {
  height: 21px;
  max-width: 100%;
  object-fit: cover;
}


@media (max-width: 600px) {
  .bank-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bank img {
    height: 26px;
  }
}

/* Selection Controls */
.config-tabs {
    display: flex;
    border-bottom: 1px solid #E7E7E8;
    margin-bottom: 25px;
}

.tab {
    background: none;
    border: none;
    color: #FFF;
    padding: 10px 20px;
    font-size: 15.8px;
    cursor: pointer;
}

.tab.active {
    color: #0068FF;
    border-bottom: 4px solid #0068FF;
}

.selection-group {
    margin-bottom: 25px;
}

.selection-group label {
    font-size: 13.1px;
    display: block;
    margin-bottom: 12px;
}

.options-row, .options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.opt-pill {
    background: none;
    border: 1px solid #FFFFFF;
    border-radius: 44px;
    color: #FFF;
    padding: 7px 20px;
    font-size: 15.8px;
    cursor: pointer;
}

.opt-rect {
    background: none;
    border: 2px solid #FFFFFF;
    border-radius: 2px;
    color: #FFF;
    padding: 10px 15px;
    font-size: 16px;
    min-width: 140px;
    cursor: pointer;
}

.opt-pill.active, .opt-rect.active {
    border-color: #0068FF;
}

.buy-now-btn {
    width: 75%;
    height: 44px;
    border: 2px solid #A2A2A2;
    background: none;
    color: #FFF;
    border-radius: 50px;
    font-size: 15.4px;
    cursor: pointer;
    transition: 0.3s;
}

.buy-now-btn:hover { background: #FFFFFF; color: #000; }


/* =============================
   PRODUCT DESC SECTION*/

 

.product-desc-section {
  width: 100%;
  padding: 60px 20px;
  color: #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Tabs */
.desc-tabs {
  display: flex;
  gap: 40px;
  font-size: 14px;
  margin-bottom: 15px;
}

.desc-tabs span {
  cursor: pointer;
  opacity: 0.7;
}

.desc-tabs .active {
  color: #fff;
  opacity: 1;
  border-bottom: 2px solid #e60000;
  padding-bottom: 4px;
}

.desc-tabs b {
  background: #e60000;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 4px;
}

/* Divider */
.divider {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 40px;
}

/* Content */
.desc-content {
  max-width: 900px;
  width: 100%;
  text-align: left;
}

.desc-content h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
}

.desc-content h4 {
  font-size: 14px;
  margin: 20px 0 10px;
  color: #fff;
}

.desc-content p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #ccc;
}

/* Specs */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.spec-grid span {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #ccc;
}

/* TAB CONTENT CONTROL */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* REVIEW FORM */
.review-form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-form input,
.review-form textarea {
  background: #000;
  border: 1px solid #444;
  padding: 10px;
  color: #fff;
  font-size: 13px;
}

.review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.review-form button {
  background: #e60000;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}





/* Responsive */
@media (max-width: 768px) {
  .desc-tabs {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .divider {
    width: 100%;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .desc-content {
    text-align: left;
  }
}







/* RElated Products Section CSS */

.related-section {
  background: radial-gradient(circle at top, #111 0%, #000 60%);
  color: #fff;
  padding: 60px 20px 70px;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
}

.related-section h2 {
  max-width: 1200px;
  margin: 0 auto 30px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== SLIDER LAYOUT ===== */
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

.slider-window {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 22px;
  transition: transform 0.4s ease;
}

/* ===== PRODUCT CARD ===== */
.card {
  min-width: 260px;
  background: #1a1a1a;
  
  padding: 18px 16px 20px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}



/* ===== IMAGE ===== */
.card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* ===== TEXT ===== */
.card h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  
}

.card p {
  font-size: 15px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card del {
  color: #e60606;
  font-size: 14px;
}

.card span {
  color: #fff4f4;
  font-weight: 700;
  font-size: 13px;
}

/* ===== DISCOUNT BADGE ===== */
.badge {
 position: absolute;
top: 12px;
left: 12px;

background: linear-gradient(135deg, #ff1a1a, #b80000);
color: #121212; /* 🔥 FIX: white text for contrast */

font-size: 11px;
font-weight: 700;

width: 42px;
height: 42px;
border-radius: 50%;

display: flex;
align-items: center;
justify-content: center;

box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35); /* 🔥 FIX: proper shadow */
text-shadow: 0 1px 2px rgba(0,0,0,0.4); /* optional polish */

}

/* ===== ARROWS ===== */
.arrow {
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.arrow:hover {
  background: #d70000;
  transform: scale(1.08);
}

.arrow.left {
  margin-right: 12px;
}

.arrow.right {
  margin-left: 12px;
}



/* Product Card */
.card {
  position: relative;
}

/* Hide checkbox */
.wishlist-toggle {
  display: none;
}

/* Heart Icon */
.wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;     /* VERY SMALL */
  color: #bbb;
  cursor: pointer;
  z-index: 2;
}

/* Checked = filled heart */
.wishlist-toggle:checked + .wishlist-heart i {
  color: #D70004;
  font-weight: 900;
}



/* ================= Video Section ================= */

.video-section-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 690px;
  margin: 0 auto;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.26), rgba(0,0,0,0.26)),
    url('../assets/images/uop.jpg');
  background-size: cover;
  background-position: center;
}

/* Header */
.video-header {
  position: absolute;
  left: 123px;
  top: 59px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.video-title {
  font-family: 'Prosto One', cursive;
  font-size: 76.8px;
  line-height: 96px;
  color: #fff;
  margin: 0;
}

/* Decorative dots */
.decorative-dots {
  display: flex;
  gap: 10px;
}

.dot-red {
  width: 30.72px;
  height: 30.72px;
  background: #D70004;
  border-radius: 50%;
}

.dot-outline {
  width: 26.88px;
  height: 26.88px;
  border: 3.84px solid #fff;
  border-radius: 50%;
}

/* Play button */
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 192.67px;
  height: 136px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

/* Description */
.video-description {
  position: absolute;
  left: 123px;
  bottom: 60px;
  width: 952.78px;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 24.1px;
  line-height: 42px;
  color: #D2D2D2;
}

/* ================= CSS Video Modal ================= */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.video-modal:target {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Close button */
.video-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 36px;
  color: #fff;
  text-decoration: none;
}

/* ================= Responsive ================= */

@media (max-width: 1024px) {
  .video-section-container {
    height: 600px;
  }

  .video-title {
    font-size: 48px;
    line-height: 60px;
  }

  .video-header,
  .video-description {
    left: 5%;
  }

  .video-description {
    width: 90%;
    font-size: 18px;
    line-height: 32px;
  }
}

@media (max-width: 600px) {
  .video-section-container {
    height: 520px;
  }

  .video-title {
    font-size: 34px;
  }

  .play-button {
    width: 140px;
    height: auto;
  }

  .video-description {
    font-size: 16px;
    line-height: 28px;
  }
}


.qa-section {
  background: #000;
  color: #fff;
  padding: 70px 150px;
  font-family: 'Montserrat', sans-serif;
}

/* ================= HEADER ================= */
.qa-header h2 {
  color: #ff0000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.qa-header p {
  max-width: 700px;
  font-size: 13px;
  color: #cfcfcf;
}

/* ================= CARDS ================= */
.qa-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.qa-card {
  background: #fff;
  color: #000;
  padding: 24px;
  border-radius: 6px;
  position: relative;
}

.qa-card .quote {
  color: #5b3df5;
  font-size: 34px;
  font-weight: 700;
  position: absolute;
  top: 14px;
  left: 18px;
}

.qa-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 20px;
}

.qa-author {
  margin-top: 20px;
}

.qa-author strong {
  display: block;
  font-size: 13px;
}

.qa-author span {
  font-size: 12px;
  color: #555;
}

/* ================= DIVIDER ================= */
.qa-divider {
  height: 1px;
  background: #222;
  margin: 50px 0;
}

/* ================= FAQ ================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.faq-left h3 {
  color: #ff0000;
  font-size: 22px;
  margin-bottom: 12px;
}

.faq-left p {
  font-size: 13px;
  color: #cfcfcf;
}

.faq-right {
  display: grid;
}

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid #222;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 1px solid #222;
}

.faq-item::before {
  content: "+";
  color: #ff0000;
  margin-right: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .qa-cards {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .qa-section {
    padding: 50px 24px;
  }
}


/* reposnive_____ */

/* ===============================
   GLOBAL RESPONSIVE FIXES
=============================== */

/* Prevent overflow issues */
img, video {
  max-width: 100%;
  height: auto;
}
/*
.container,
.banner-container,
.specs-container {
  width: 100%;
}
*/
/* ===============================
   TABLET (≤ 1024px)
=============================== */
@media (max-width: 1024px) {

  /* Header */
  .search-box {
    margin: 0 20px;
    flex-grow: 1;
  }

  .header-icons {
    gap: 20px;
  }

  /* Product Page */
  .main-container {
    flex-direction: column;
    width: 90%;
    gap: 40px;
  }

  .product-heading {
    font-size: 34px;
  }

  /* Product Banner */
  .banner-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .product-price {
    text-align: left;
    margin-top: 0;
  }

  /* Specs */
  .product-specs {
    padding: 50px 40px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    padding: 40px 40px 25px;
  }

  .footer-top,
  .footer-middle,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-box {
    justify-content: flex-start;
  }
}

/* ===============================
   MOBILE (≤ 768px)
=============================== */
@media (max-width: 768px) {

  /* Top Bar */
  .top-left {
    width: auto;
    font-size: 12px;
  }

  .top-right {
    display: none;
  }

  /* Header */
  .main-header .container {
    flex-direction: column;
    gap: 15px;
  }

  .search-box {
    width: 100%;
    margin: 0;
  }

  .header-icons {
    width: 100%;
    justify-content: space-between;
  }

  /* Navigation */
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  /* Product Notification Bar */
  .product-notif-bar {
    height: auto;
    padding: 15px 0;
  }

  .product-notif-bar .container {
    flex-direction: column;
    gap: 12px;
  }

  /* Gallery */
  .thumbnail-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .thumb {
    width: 80px;
    height: 80px;
  }

  /* Product Details */
  .product-details {
    padding: 25px;
  }

  .product-heading {
    font-size: 28px;
  }

  .price {
    font-size: 28px;
  }

  /* Promo Banner */
  .promo-content {
    grid-auto-flow: row;
    text-align: center;
  }

  /* Video Section */
  .video-section-container {
    height: auto;
    min-height: 450px;
  }

  .video-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .video-header {
    left: 5%;
    top: 30px;
  }

  .video-description {
    width: 90%;
    left: 5%;
    font-size: 16px;
    top: auto;
    bottom: 20px;
  }

  /* QA Section */
  .qa-section {
    padding: 40px 20px;
  }

  /* Feature Section */
  .feature-section {
    padding: 40px 20px;
  }

  /* Footer */
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }

  .footer-copy {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
}

/* ===============================
   SMALL MOBILE (≤ 480px) - Enhanced for better responsiveness
=============================== */
@media (max-width: 480px) {

  .logo-text {
    font-size: 18px;
  }

  .product-heading {
    font-size: 24px;
  }

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

  .promo-text h2 {
    font-size: 26px;
  }

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

  .cart-count {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  /* Additional responsive adjustments */
  .main-container {
    width: 95%;
    gap: 30px;
  }

  .product-details {
    padding: 20px;
  }

  .price {
    font-size: 24px;
  }

  .emi-card {
    padding: 12px 18px;
  }

  .options-row, .options-grid {
    gap: 8px;
  }

  .opt-pill {
    padding: 6px 16px;
    font-size: 14px;
  }

  .opt-rect {
    padding: 8px 12px;
    font-size: 14px;
    min-width: 120px;
  }

  .buy-now-btn {
    height: 40px;
    font-size: 14px;
  }

  .trust-footer {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }

  .specs-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .platforms-header h4 {
    font-size: 20px;
  }

  .list-item {
    font-size: 14px;
  }

  .promo-banner {
    padding: 20px 16px;
  }

  .promo-text h2 {
    font-size: 24px;
  }

  .promo-text p {
    font-size: 14px;
  }

  .promo-image img {
    max-width: 300px;
  }

  .video-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .video-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .qa-header h2 {
    font-size: 24px;
  }

  .qa-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-grid {
    gap: 30px;
  }

  .feature-grid {
    gap: 20px;
  }

  .card-large h2 {
    font-size: 24px;
  }

  .card-text h3 {
    font-size: 18px;
  }

  .features-row {
    gap: 30px;
  }

  .footer {
    padding: 30px 20px 20px;
  }

  .footer-middle {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-info {
    flex-direction: column;
    gap: 8px;
  }
}
/* single product short description */
.product-short-points {
    padding-left: 18px;
    margin-top: 10px;
}

.product-short-points li {
    margin-bottom: 6px;
    color: #ccc;
}

ol, ul{

 /* margin-left: 20px; */
 /* margin-bottom: 20px; */
}
.product-details ul{
    margin-bottom: 20px !important;
}
.main-img {
    transition: opacity .25s ease;
}

.main-image-border {
    overflow: hidden;
    position: relative;
}

.main-slider {
    display: flex;
    transition: transform .4s ease;
}

.slide-img {
    min-width: 100%;
    object-fit: contain;
}

.main-image-border{overflow:hidden !important; width: 100%}
.main-slider{display:flex;transition:.4s ease}
.slide-img{min-width:100%}

/* additional information */

.custom-additional-info{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #eee;
}

.custom-additional-info h3{
    margin-bottom:10px;
}

/* table css */

/* Table base */

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; /* gap between rows */
}

/* Cells */

table td {
    padding: 12px 14px;
    font-size: 14px;
}

/* ODD ROWS */

table tr:nth-child(odd) td {
    background: #535353;
    color: #000;
}

/* EVEN ROWS */

table tr:nth-child(even) td {
    background: #00000;
    color: #FFF;
}

/* Rounded corners per row */

table tr td:first-child {
    border-radius: 0px 0 0 0px;
}

table tr td:last-child {
    border-radius: 0 0px 0px 0;
}


.price.sale del{
  color:#FFD900 !important;
  text-decoration: line-through #FFD900 !important;
}


/* Mobile */

@media(max-width:768px){
    table td{
        padding:10px;
        font-size:13px;
    }
}
.desc-content ul{
    list-style: disc !important;
    color: red!important;
}
.gap{
    margin-bottom: 10px!important;
}
