.p-card{
  padding: 20px;
}
.p-card:hover .wcard-img-wrap {
  display: none !important;
}

.p-card:hover {
  background: #FFF !important;
}
/* ═══════════════════════════════════════════
   STICKY SECTION NAV BAR
═══════════════════════════════════════════ */
.snav {
  position: sticky;
  top: 70px;     
  z-index: 1020;
  background: #0a192f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
  width: 100%;
}

.snav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.snav-inner::-webkit-scrollbar {
  display: none;
}

.snav-link {
  display: inline-block;
  padding: 14px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.snav-link:hover {
  color: rgba(255,255,255,0.88);
}

.snav-link.active {
  color: #f5b800; /* your existing gold accent */
  border-bottom-color: #f5b800;
}

/* Mobile: slightly smaller text */
@media (max-width: 768px) {
  .snav-link {
    font-size: 11px;
    padding: 12px 13px;
  }
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.page-wrapper {
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 40px;
}

.breadcrumb {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Main Flex Container */
.main-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Content Area */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
    flex: 1;
    min-width: 0;
}


/* ═══════════════════════════════════════════════════════════════
   PRODUCT SECTION: HEADER + IMAGE (FLEX 50-50)
═══════════════════════════════════════════════════════════════ */
.product-section {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Product Header (Left) - 50% */
.product-header {
    flex: 1 1 50%;
}

.product-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Specs Row */
.specs-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0;
}

.spec-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
}

.spec-box:last-child {
    border-right: none;
}

.spec-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Thicknesses Section */
.thicknesses-section {
    margin-bottom: 30px;
}

.thicknesses-title {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.thicknesses-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.thickness-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.thickness-tag {
    background: #f5f5f5;
    padding: 8px 14px;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.whatsapp-btn-left {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 20px;
    width: fit-content;
}

.whatsapp-btn-left:hover {
    background: #20ba5e;
    transform: translateY(-2px);
}

/* Certifications */
.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.cert-icon img {
    width: 20px;
    height: auto;
    object-fit: contain;
}
.cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.cert-icon {
    font-size: 16px;
}
/* ═══════════════════════════════════════════════════════════════
   PRODUCT IMAGE SLIDER - COMPLETE CSS
═══════════════════════════════════════════════════════════════ */

/* Product Image Section Container */
.product-image-section {
    flex: 1 1 50%;
    border-radius: 8px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-section img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ─────────────────────────────────────────
   SWIPER CONTAINER
─────────────────────────────────────────── */
.product-swiper {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    position: relative;
}

.product-swiper .swiper-wrapper {
    display: flex;
}

.product-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: #fafafa;
    width: 100%;
}

.product-swiper .product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* ─────────────────────────────────────────
   NAVIGATION BUTTONS (PREV/NEXT)
─────────────────────────────────────────── */
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
    background: rgba(26, 26, 26, 0.75) !important;
    border-radius: 50% !important;
    color: white !important;
    transition: all 0.3s ease !important;
    z-index: 20 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-swiper .swiper-button-prev {
    left: 10px !important;
}

.product-swiper .swiper-button-next {
    right: 10px !important;
}

.product-swiper .swiper-button-prev:hover,
.product-swiper .swiper-button-next:hover {
    background: #fdd835 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after {
    font-size: 16px !important;
    color: white !important;
    font-weight: bold !important;
    width: auto !important;
    height: auto !important;
}

.product-swiper .swiper-button-prev:hover::after,
.product-swiper .swiper-button-next:hover::after {
    color: #1a1a1a !important;
}

/* ─────────────────────────────────────────
   PAGINATION BULLETS/DOTS
─────────────────────────────────────────── */
.product-swiper .swiper-pagination {
    position: absolute !important;
    bottom: 15px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 30 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
}

.product-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(26, 26, 26, 0.5) !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: none !important;
}

.product-swiper .swiper-pagination-bullet:hover {
    background: rgba(26, 26, 26, 0.8) !important;
    transform: scale(1.2);
}

.product-swiper .swiper-pagination-bullet-active {
    background: #fdd835 !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .product-image-section {
        min-height: 350px;
    }

    .product-swiper .swiper-slide {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .product-image-section {
        flex: 1 1 100%;
        min-height: 300px;
    }

    .product-swiper .swiper-slide {
        min-height: 300px;
    }

    .product-swiper .swiper-button-prev,
    .product-swiper .swiper-button-next {
        width: 32px !important;
        height: 32px !important;
    }

    .product-swiper .swiper-button-prev::after,
    .product-swiper .swiper-button-next::after {
        font-size: 14px !important;
    }

    .product-swiper .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 3px !important;
    }

    .product-swiper .swiper-pagination-bullet-active {
        width: 22px !important;
    }
}
/* ═══════════════════════════════════════════════════════════════
   KEY FEATURES SECTION (6 CARDS)
═══════════════════════════════════════════════════════════════ */
.features-section {
    margin-bottom: 80px;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.features-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
}

.feature-card:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.feature-card.highlight {
    background: #fdd835;
    color: #1a1a1a;
}

.feature-number {
    font-size: 28px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.feature-card.highlight .feature-number {
    color: rgba(26, 26, 26, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fdd835;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-card.highlight .feature-icon {
    background: white;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.feature-card.highlight .feature-desc {
    color: #1a1a1a;
}

/* ═══════════════════════════════════════════════════════════════
   RIGHT STICKY SIDEBAR
═══════════════════════════════════════════════════════════════ */
.sidebar-right {
    position: sticky;
    top: 120px;
    /* top: 80px; */
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
   width: 300px; 
    flex-shrink: 0;
}

/* Quick Enquiry Form */
.enquiry-box {
    background:  #F2F5FB;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0ddf5;
}

.enquiry-box h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 10px;
    color: #999;
    margin-bottom: 6px;
    text-transform: uppercase;
    /* font-weight: 700; */
    letter-spacing: 0.4px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d5d0e8;
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    background: white;
    transition: all 0.3s;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fdd835;
    background: white;
    box-shadow: 0 0 0 3px rgba(253, 216, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
    font-family: inherit;
}

.send-enquiry-btn {
    width: 100%;
    background: #fdd835;
    color: #1a1a1a;
    /* padding: 12px; */
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.send-enquiry-btn:hover {
    background: #fcc414;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 216, 53, 0.3);
}

.chat-whatsapp-btn {
    width: 100%;
    background: white;
    color: #25d366;
    border: 1px solid #25d366;
   padding: 20px 40px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s;
    text-decoration: none;
}

.chat-whatsapp-btn:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
}

.chat-whatsapp-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


.categories-box {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e8e8e8;
}

.categories-box h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
}

.category-list {
  display: flex;
  flex-direction: column;
}

.category-item {
  padding: 11px 0;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-item:last-child {
  border-bottom: none;
}

.category-item:hover .category-label {
  color: #c8a84b;
}

.category-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.category-label {
  flex: 1;
  font-size: 13px;
  color: #444;
  transition: color 0.2s;
}

/* Arrow */
.expand-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: color 0.2s;
}

.expand-arrow .arrow-icon {
  transition: transform 0.3s ease;
}

/* When open — rotate arrow up */
.expand-arrow.open .arrow-icon {
  transform: rotate(180deg);
}

.category-item:hover .expand-arrow {
  color: #c8a84b;
}

/* Dropdown */
.cat-dropdown {
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  /* background: #fff;
  border-left: 2px solid #fdd835;
  margin-left: 28px; */
  border-radius: 0 4px 4px 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
}

.cat-dropdown.open {
  max-height: 500px;
}

.cat-dropdown a {
  font-size: 12px;
  color: #555;
  padding: 8px 14px;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  line-height: 1.4;
}

.cat-dropdown a:last-child {
  border-bottom: none;
}

.cat-dropdown a:hover {
  background: #fffbe6;
  color: #c8a84b;
  padding-left: 20px;
}

/* Active current page link */
.active-link {
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

/* View all link */
.view-all-link {
  font-weight: 700 !important;
  color: #c8a84b !important;
}
/* Why Sachin Shim Box */
.why-box {
    /* background: #f5f5f5; */
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.why-faqs{
  padding: 4rem 0;
}
.why-box h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    padding: 2px 0;
    font-size: 12px;
    color: #606672;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.why-item:last-child {
    border-bottom: none;
}

.why-check {
    color: #fdd835;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-text {
    line-height: 1.5;
    flex: 1;
}



/* Product Data Section */
.product-data {
    padding: 60px 0 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 30px;
    text-align: left;
}


.section-header h2 {
    margin-bottom: 16px;
}

.section-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;

}

.info-box h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: #333;
    border: 1px solid #e0e0e0;
}

.pack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pack-list li {
    font-size: 14px;
    color: #64748B;
    /* padding: 2px 0; */
    line-height: 1.6;
}

/* .pack-list li:before {
    content: "▸ ";
    color: #ffa500;
    margin-right: 8px;
} */

/* Table Wrapper */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.models-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.models-table thead {
    background: #1a1a2e;
    color: white;
}

.models-table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e0e0e0;
}

.models-table td {
    padding: 14px 16px;
    font-size: 12px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.models-table tbody tr:hover {
    background: #f8f9fa;
}

.model-name {
    font-weight: 700;
    color: #1a1a1a;
}
/* Thickness Section */
.thickness-section {
    background: white;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.thickness-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.thickness-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    flex-shrink: 0;
    overflow-x: auto;
}

.thickness-btn {
    padding: 8px 12px;
    background: #f0f0f0;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
}

.thickness-btn:hover {
    background: #ffa500;
    color: white;
    border-color: #ffa500;
}

.custom-size-btn {
    background: #1a1a1a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
        text-decoration: underline;
}

.custom-size-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        text-decoration: underline;
}

.product-header .product-desc,
.product-header li {
    font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem) !important;
    line-height: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem) !important;
    color: #606672 !important;
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

   .section-wrapper {
   padding: 10px 0;
}
.faq-section{
    background:#F1F5F9;
}
.section-wrapper p,
.section-wrapper li {
    font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem) !important;
    line-height: clamp(1.125rem, 1.089rem + 0.18vw, 1.25rem) !important;
    color: #606672 !important;
}
    /* ── Accordion Wrapper ── */
    .acc-wrap {
      border-top: 1.5px solid #e4e7ef;
    }
    .acc-wrap:last-child {
      border-bottom: 1.5px solid #e4e7ef;
    }
 
    /* ── Accordion Header ── */
    .acc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      cursor: pointer;
      user-select: none;
      gap: 16px;
    }
    .acc-left {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .acc-title {
    font-weight: 700;
    font-size: clamp(1.125rem, 0.9rem + 2vw, 1.5rem);
    line-height: clamp(1.464rem, 1.464rem + 1.875vw, 2.5625rem);
    color: #1a2233;
    }
 
    /* ── Toggle Icon ── */
    .acc-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1.5px solid #d0d4de;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a2233;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }
    .acc-icon svg {
      transition: transform 0.3s ease;
    }
    .acc-header:hover .acc-icon {
      background: #1a2b4a;
      border-color: #1a2b4a;
      color: #fff;
    }
    .acc-wrap.open .acc-icon {
      background: #1a2b4a;
      border-color: #1a2b4a;
      color: #fff;
    }
    .acc-wrap.open .acc-icon svg {
      transform: rotate(180deg);
    }
 
    /* ── Accordion Body ── */
    .acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .acc-wrap.open .acc-body {
      max-height: 600px;
    }
    .acc-content {
      padding: 0 0 28px 0;
    }
    /* .acc-content p {
        font-size: clamp(0.75rem, 1vw + 0.5rem, 1rem);
      color: #6b7590;
      line-height: 1.75;
    } */

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .product-section {
        flex-direction: column;
        gap: 30px;
    }

    .product-image-section {
        min-height: 350px;
    }

    .feature-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        gap: 30px;
    }

    .sidebar-right {
        position: static;
        top: auto;
        width: 100%;
    }

    .feature-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .specs-row {
        flex-direction: column;
        gap: 15px;
    }

    .spec-box {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 15px;
    }

    .spec-box:last-child {
        border-bottom: none;
    }

    .feature-card {
        flex: 1 1 100%;
    }

    .certifications {
        flex-direction: column;
        gap: 10px;
    }

    .product-header h1 {
        font-size: 28px;
    }
    /* product table  */
   .product-data {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-description {
        font-size: 13px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .info-box h3 {
        font-size: 12px;
    }

    .material-tags {
        gap: 6px;
    }

    .tag {
        font-size: 10px;
        padding: 5px 10px;
    }

    .pack-list li {
        font-size: 11px;
        padding: 6px 0;
    }

    .models-table {
        min-width: 100%;
        font-size: 11px;
    }

    .models-table th,
    .models-table td {
        padding: 12px 8px;
    }   .thickness-section {
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .thickness-label {
        width: 100%;
        margin-bottom: 12px;
    }

    .thickness-buttons {
        width: 100%;
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 6px;
    }

    .custom-size-btn {
        width: 100%;
    }

    .thickness-btn {
        font-size: 9px;
        padding: 5px 8px;
    }
     .accordion-header {
        font-size: 16px;
        padding: 16px 0;
    }

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

    .acc-card {
        padding: 16px;
    }

    .acc-card h4 {
        font-size: 13px;
    }

    .acc-card p {
        font-size: 11px;
    }
.section-wrapper { padding: 32px 16px; }
  .precision-card-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 22px; }
  .cert-item { padding: 4px!important;}
}
  

.faq{
    background-color: white!important;
    padding-top: 3rem;
}

/* added  */

@media (max-width: 768px) {
 
  .main-container {
    flex-direction: column;
  }

  .product-section {
    flex-direction: column;
    gap: 30px;
  }

  .sidebar-right {
    width: 100%;
    position: static;
  }

  .content-left,
  .product-header,
  .product-image-section {
    width: 100%;
  }

  .page-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .product-swiper {
    width: 100%;
    min-height: 300px;
  }

  .product-swiper .swiper-slide {
    min-height: 300px;
  }

  .product-image {
    width: 100%;
    height: auto;
    display: block;
  }
}