/* carousel */


.category-slider {
    position: relative;
    margin: 40px 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    
  }
  
  .slider-container {
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-left: 15px;
  }
  
  .slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 8px;
  }
  
  .category-card {
    flex: 0 0 auto;
    width: calc((100vw - 48px) / 3);
    min-width: 140px;
    text-decoration: none !important;
    cursor: pointer;
  
  }
  
  
  .category-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid #FF7C36;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 auto;
    background: white;
  }
  
  .category-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(250, 75, 46, 0.4);
  }
  
  .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .category-name {
    margin-top: 12px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-align: center;
    padding: 0 8px;
    text-decoration: none !important; 
  }
  
  
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider-arrow.arrow-left {
    left: 20px;  
  }
  
  .slider-arrow.arrow-right {
    right: 20px;  
  }
  
  
  @media (min-width: 480px) {
    .category-card {
        width: calc((100vw - 64px) / 4);
    }
  }
  
  @media (max-width: 768px) {
    .category-slider {
      margin: 20px 0;
    }
    
    .slider-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      height: auto;
      padding: 0 15px;
    }
  
    .slider-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-flow: column;
      grid-template-rows: repeat(2, auto);
      gap: 12px;
      width: max-content;
      min-width: 100%;
      padding: 0;
      transform: none !important;
    }
  
    .category-card {
      width: 140px;
      margin-bottom: 0;
    }
  
    .category-image {
      width: 100%;
      height: 140px;
    }
  
    .slider-arrow {
      display: none;
    }
  }
  @media (min-width: 1024px) {
    .category-card {
        width: calc((100vw - 144px) / 8);
    }
  }
  
  @media (min-width: 1280px) {
    .category-card {
        width: calc((100vw - 192px) / 9);
    }
    .slider-track {
        gap: 32px;
    }
  }
  
  @media (min-width: 1600px) {
    .category-card {
        width: calc((100vw - 256px) / 10);
    }
  }


  /* product cards */
  .count-badge {
    background: #FF7C36;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
  }
  
  
  .product-listings {
    background: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  
  .product-listings .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  
  .product-listings .row.g-4 {
    margin-left: -6px;
    margin-right: -6px;
  }
  
  .product-listings .row.g-4 > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }
  
  
  .product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .product-card:hover {
    transform: translateY(-3px);
  }
  
  .card-image {
    position: relative;
    padding-top: 100%; 
    overflow: hidden;
  }
  
  .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-badge, .service-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FF7C36;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-style: italic;
  }
  
  .service-badge {
    background: #5917ca;
  }
  
  .card-body {
    padding: 15px;
  }
  
  .product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    min-height: 2em;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .product-price {
    color: #338b65;
    font-weight: 700;
    font-size: 20px;
    margin: 8px 0;
  }
  
  .product-location {
    font-size: 18px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
  }
  
  .enquiry-btn {
    background: linear-gradient(90deg, #FA4B2E, #FF7C36);
    color: white !important;
    border: none;
    padding: 8px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 630;
    cursor: pointer;
  }
  
  .see-more-link {
    color: #FF7C36;
    font-weight: 500;
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .count-badge {
      font-size: 0.8rem;
      padding: 3px 10px;
  }
  .section-title {
      font-size: 1.1rem;
  }
    .col-6 {
        padding: 0 8px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 16px;
    }
    .enquiry-btn {
      background: linear-gradient(90deg, #FA4B2E, #FF7C36);
      color: white !important;
      border: none;
      padding: 8px;
      border-radius: 5px;
      font-size: 15px;
      font-weight: 630;
    }
    .product-location {
      font-size: 15px;
      color: #666;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    
  }
  
  @media (max-width: 576px) {
    .product-card {
        border-radius: 8px;
    }
    
    .card-body {
        padding: 12px;
    }
  }
  @media (max-width: 768px) {
    .product-listings {
      padding-left: 1px;
      padding-right: 1px;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
    }
  }

  /* Category Tiles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.category-grid {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-tile {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.category-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.category-tile:hover::before {
    background: rgba(0,0,0,0.1);
}

.tile-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.main-tile {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    min-height: 300px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.cta-button {
    background: #ffffff;
    color: #ce881f;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-tile {
        min-height: 150px;
    }
    
    .main-tile {
        min-height: 200px;
    }
}
/* Ad Slider */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .ad-slider-banner {
    width: 100%;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
  }
  
  .slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 20.92%; 
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out; 
    padding: 0 15px;
  }
  
  .slide.active {
    z-index: 2;
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
  }
  
  
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 2;
    pointer-events: none;
  }
  
  .nav-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: all;
    z-index: 101; 
  }
  
  .ad-slider-banner:hover .nav-arrow {
    opacity: 1;
    transform: scale(1);
  }
  
  .nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  
  
  .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: block; 
    gap: 10px;
    z-index: 2;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: rgba(227, 90, 5, 0.9);
    transform: scale(1.2);
  }
  
  @media (max-width: 768px) {
    .slider-wrapper {
        padding-top: 35%;
    }
    
    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
        z-index: 101; 
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
  }
/* App Banner */
 /* Redesigned Post Ad Section */
    .post-ad-section {
       background:
   linear-gradient(135deg, rgba(255,107,107,0.9), rgba(255,142,142,0.9)),
    url("/assets/images/cover/sell-background.webp") center/cover;
      border-radius: 15px;
      padding: 30px;
      margin: 40px auto;
      max-width: 1200px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px;
      box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
      animation: pulse 2s infinite;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .post-ad-section:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
    }
    
    .post-ad-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      max-width: 800px;
      padding: 20px;
    }
    
    .post-ad-content h2 {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      font-weight: 700;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }
    
    .cta-button {
      background: #ffffff;
      color: #ce881f;
      padding: 14px 38px;
      border-radius: 30px;
      border: none;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    
    .cta-button:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      background: #f8f8f8;
    }
    
    .post-ad-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .post-ad-section {
        padding: 25px;
        min-height: 200px;
      }
      
      .post-ad-content h2 {
        font-size: 1.9rem;
      }
    }
    
    @media (max-width: 768px) {
      .post-ad-section {
        padding: 20px 15px;
        min-height: 180px;
        margin: 30px 15px;
      }
      
      .post-ad-content h2 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
      }
      
      .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
      }
    }
    
    @media (max-width: 576px) {
      .post-ad-section {
        padding: 20px 10px;
        min-height: 160px;
        border-radius: 12px;
      }
      
      .post-ad-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
      }
      
      .cta-button {
        padding: 10px 24px;
        font-size: 0.9rem;
      }
    }
    
    /* Existing styles */
    .category-slider {
      position: relative;
      margin: 40px 0;
      width: 100vw;
      left: 50%;
      transform: translateX(-50%);
      padding: 0;
    }

  /* category-card */ 
  .adaptive-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem);
  }
  
  .acard {
    background: #fff;
    border-radius: 12px;
    padding: clamp(1rem, 2vw, 1.5rem);
    border: 1px solid rgba(0, 0, 0, 0.06); 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.147);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 320px;
    transition: all 0.2s ease;
  }
  .acard__title {
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    color: #333;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eee;
  }
  
  .acard__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: 2.5rem;
  }
  
  .acard__item {
    display: flex;
    flex-direction: column;
    align-items: center;
   
  }
  
  .acard__img-container {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 120px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  
  .acard__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
  }
  
  .acard__label {
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    color: #444;
    margin-top: clamp(0.5rem, 1vw, 0.75rem);
    text-align: center;
    line-height: 1.3;
  }
  
  .acard__viewall {
    position: absolute;
    bottom: clamp(1rem, 1.5vw, 1.25rem);
    right: clamp(1rem, 1.5vw, 1.25rem);
    font-size: clamp(0.875rem, 1.1vw, 1rem);
    color: #d13c0e;
    text-decoration: none;
    font-weight: 500;
  }
  .acard__item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  @media (max-width: 1024px) {
    .adaptive-cards {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .adaptive-cards {
        grid-template-columns: 1fr;
    }
    
    .acard {
        min-height: auto;
        padding-bottom: 3.5rem;
    }
    
    .acard__img-container {
        max-width: 100px;
    }
  }
  
  @media (hover: hover) {
    .acard__item:hover .acard__icon {
        transform: scale(1.08);
    }
    
    .acard__viewall:hover {
        text-decoration: underline;
    }
  }
  
  
  /* Cities */
  
.top-cities-box {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 25px;
  border: 2px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cities-heading {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #eee;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.city-card {
  text-align: center;
  padding: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.city-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 2px solid #e4e4e4;
  background: #f8f9fa;
}

.city-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-name {
  font-size: 13px;
  color: #444;
  font-weight: 500;
  margin: 0;
}


@media (max-width: 1200px) {
  .cities-grid {
      grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .top-cities-box {
      padding: 20px;
  }
  
  .cities-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
  }
}

@media (max-width: 768px) {
.cities-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .city-image {
      width: 100px;  
      height: 100px; 
  }
  
  .city-name {
      font-size: 12px;
  }
}

@media (max-width: 576px) {
  .top-cities-box {
      padding: 15px;
      margin: 1rem auto;
  }
  
  .cities-heading {
      font-size: 20px;
      margin-bottom: 1rem;
  }
  
  .cities-grid {
      gap: 10px;
  }
  
  .city-card {
      padding: 5px;
  }
  
  .city-image {
      width: 100px;  
      height:100px; 
      margin-bottom: 10px;
  }
  
  .city-name {
      font-size: 13px; 
  }
}
  
/* Keyword */

body .seo-keywords-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .seo-keywords-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .keyword-pill {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border: 1px solid #FF7C36;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #2d3954;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin: 0.1rem; 
  }
  
  .keyword-pill:hover {
    background: linear-gradient(90deg, #FA4B2E, #FF7C36);
    color: white;
    transform: translateY(-1px);
  }
  
  @media (max-width: 768px) {
    .seo-keywords-section {
      margin: 1.5rem 0;
  }
  
  .keyword-pill {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem;
  }
  
  .seo-keywords-section .container {
      padding-left: 15px;
      padding-right: 15px;
  }
  }



  /* product-page */
  
.product-container {
    display: flex;
    gap: 30px;
  padding-top: 15px;
  padding-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .image-gallery {
    flex: 1;
    display: flex;
    gap: 15px;
    border-radius: 15px;
  }
  
  .thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 15px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    object-fit: cover;
  }
  .video-thumbnail {
  position: relative;
  cursor: pointer;
  }
  
  .video-thumbnail::after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  text-shadow: 0 0 8px rgba(0,0,0,0.5);
  }
  
  
  .main-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  
  .main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px;
  }
  
  
  .product-details {
    flex: 1;
    
  }
  
  .main-product-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
  }
  .main-enquiry-btn {
  display: inline-block; 
  background: linear-gradient(90deg, #FA4B2E, #FF7C36);
  color: white !important;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 630;
  width: 100%;
  text-align: center;
  text-decoration: none; 
  }
  .price-container {
    display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
   
  }
  
  .price {
    font-size: 28px;
    color: rgb(102, 171, 102);
    font-weight: 700;
  }
  
  .date-box {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    color: #666;
    border: 1px solid #e0e0e0;
  }
  .date-box i {
  margin-right: 8px;
  color: #666;
  }
  
  .location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    margin-bottom: 25px;
    font-size: 17px;
  }
  
  .description-heading {
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
  }
  
  .description-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  
  
  
  
  .seller-box {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 15px;
    background-color: #ebf0f797;
  }
  
  .seller-header {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
  }
  
  
  
  
  .seller-address {
    color: #666;
    line-height: 1.5;
    font-size: 16px;
  }
  
  
  
  .button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  
  
  .share-btn {
    background: #f5f5f5;
  padding: 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  width: 60px;
  border: 1px solid #e0e0e0;
  }
  .share-btn i {
  font-size: 1.4em; 
  }
  
  
  .seller-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  }
  .seller-details {
  flex-grow: 1;
  }
  .seller-logo {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
  }
  
  .contact-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  
  
  .call-button {
  border: 1.5px solid #FF7C36;
  border-radius: 5px;
  background: transparent !important;
  padding: 8px 15px;
  cursor: pointer;
  }
  
  .phone-number {
  text-decoration: none !important;
  color: #fb6d08;
  font-weight: bold;
  font-size: 18px;
  }
  
  
  .call-button {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  color: #333;
  }
  
  .call-button i {
  order: 2; 
  margin-left: 8px;
  }
  
  .call-button i {
  font-size: 18px;
  flex-direction: row-reverse;
  gap: 12px;
  }
  
  
  @media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        padding: 20px;
    }
  
    .image-gallery {
        flex-direction: column;
    }
  
    .thumbnails {
        flex-direction: row;
        order: 1;
    }
  
    .thumbnail {
        width: 60px;
        height: 60px;
    }
  
    .main-image img {
        height: 300px;
    }
  
    .main-product-title {
        font-size: 24px;
    }
  
    .price {
        font-size: 24px;
    }
  
  
    .main-enquiry-btn,
    .share-btn {
        width: 100%;
        text-align: center;
    }
    .seller-info {
   
    flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  }
  
  
  .button-group {
  flex-direction: row;
  gap: 10px;
  }
  
  .main-enquiry-btn {
  flex-grow: 1;
  width: auto;
  padding: 18px 10px;
  }
  
  .share-btn {
  width: 60px;
  flex-shrink: 0;
  }
  
  
  
  
  .seller-logo {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  }
  
  .seller-details {
  flex: 1;
  min-width: 60%;
  justify-content: flex-start;
  }
  
  .call-button {
    flex-direction: row;
    justify-content: center;
    width: auto;
    padding: 8px 20px !important;
  }
  .call-button i {
    order: 2;
    margin-left: 8px;
  }
  }

   /* Category Wide Card */
.cat-wide-card {
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            max-width: 1200px;
            width: 100%;
            margin: 20px auto;
            box-sizing: border-box;
        }

        .cat-wide-card__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .cat-wide-card__title {
            font-size: 30px;
            color: #1a1a1a;
            margin: 0;
            flex-shrink: 0;
        }

        .cat-wide-card__explore {
            font-size: clamp(0.9rem, 1.2vw, 1.1rem);
            color: #eb5d25;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .cat-wide-card__explore:hover {
            color: #c94c1e;
        }

        .cat-wide-card__content {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cat-wide-card__thumbnail {
            flex: 0 0 35%;
            border-radius: 10px;
            overflow: hidden;
            align-self: stretch;
            display: flex;
            min-height: 200px;
        }

        .cat-wide-card__thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .subcat-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            transition: max-height 0.5s ease-out;
            min-width: 0;
        }

        .subcat-grid__item {
            display: flex;
            flex-direction: column;
            padding: 15px;
            border-radius: 8px;
            background: #f8f9fa;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
            border: 1px solid rgba(0, 0, 0, 0.15);
            align-items: flex-start;
            overflow: hidden;
        }

        .subcat-grid__item:hover {
            transform: translateY(-2px);
            background: #f1f3f5;
            border-color: rgb(245, 103, 32);
        }

        .subcat-grid__header-link {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            width: 100%;
            text-decoration: none;
            color: inherit;
        }

        .subcat-grid__header-link:hover {
            text-decoration: none;
        }

        .subcat-grid__icon {
            width: 50px;
            height: 50px;
            background: #fff;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        .subcat-grid__img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .subcat-grid__main-name {
            font-size: 1rem;
            color: #1a1a1a;
            font-weight: 600;
            line-height: 1.3;
            flex-grow: 1;
            white-space: normal;
        }

        .subcat-grid__list {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .subcat-grid__list li {
            padding: 0;
        }

        .subcat-grid__list li a {
            text-decoration: none;
            color: #4a4a4a;
            display: block;
            padding: 8px 0;
            background-color: transparent;
            border-radius: 0;
            margin-bottom: 0;
            transition: color 0.2s ease;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border: none;
            border-bottom: 1px solid #e0e0e0;
            box-shadow: none;
        }

        .subcat-grid__list li:last-child a {
            border-bottom: none;
        }

        .subcat-grid__list li a:hover {
            background-color: transparent;
            color: #eb5d25;
            border-radius: 0;
            padding: 8px 0;
            margin: 0;
            text-decoration: none;
            border-bottom: 1px solid #eb5d25;
        }
        .subcat-grid__list li:last-child a:hover {
             border-bottom: none;
        }

        .subcat-toggle-button {
            display: none;
        }

        @media (max-width: 992px) {
            .cat-wide-card__content {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .cat-wide-card__thumbnail {
                flex: 0 0 100%;
                width: 100%;
                max-width: 100%;
            }

            .cat-wide-card__thumb-img {
                height: 250px;
            }

            .subcat-grid {
                grid-template-columns: repeat(2, 1fr);
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .cat-wide-card {
                padding: 10px;
                margin: 10px auto;
            }

            .cat-wide-card__title {
                font-size: 24px;
            }

            .cat-wide-card__explore {
                font-size: 0.9rem;
            }

            .subcat-grid {
                grid-template-columns: 1fr;
                max-height: 350px;
                overflow: hidden;
                position: relative;
            }

            .subcat-grid.is-expanded {
                max-height: none;
                overflow: visible;
            }

            .subcat-grid:not(.is-expanded)::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100px;
                background: linear-gradient(to top, #f8f9fa, transparent);
                pointer-events: none;
            }

            .cat-wide-card__header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .subcat-toggle-button {
                display: block;
                width: fit-content;
                margin: 15px auto 0 auto;
                padding: 8px 20px;
                background: linear-gradient(90deg, #FA4B2E, #FF7C36);
                color: white;
                border: none;
                border-radius: 5px;
                cursor: pointer;
                font-size: 0.9rem;
                transition: opacity 0.3s ease;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }

            .subcat-toggle-button:hover {
                opacity: 0.9;
            }
        }

        @media (max-width: 480px) {
            .subcat-grid__item {
                padding: 10px;
            }

            .subcat-grid__icon {
                width: 40px;
                height: 40px;
            }

            .subcat-grid__img {
                width: 30px;
                height: 30px;
            }

            .subcat-grid__main-name {
                font-size: 0.9rem;
            }

            .subcat-grid__list li a {
                font-size: 0.8rem;
                padding: 6px 0;
            }
        }

        @media (hover: hover) {
            .cat-wide-card__explore:hover {
                color: #c94c1e;
            }
        }

  /* Category Page Styles */


/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #7d706c;
  padding: 0 0.5rem;
}

/* Subcategory Cards */
.subcategory-card .card {
  border: 1px solid #e9ecef !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
  background: white !important;
}

.subcategory-card .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-color: #FF7C36 !important;
}

.subcategory-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3954 !important;
  margin: 0;
}
.subcategory-card img {
  height: 80px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

.subcategory-card .row {
  min-height: 80px;
}

.section-heading {
  font-weight: 600;
  color: #2d3954;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF7C36, #FA4B2E);
}


.btn-outline-secondary {
  border-color: #ef6712;
  color: #dc5c0c;
  transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
  background: linear-gradient(90deg, #FF7C36, #FA4B2E);
  border-color: #FA4B2E;
  color: white;
}


@media (max-width: 767px) {
  .subcategory-card img {
      height: 60px;
  }
  
  .subcategory-card .card-title {
      font-size: 0.9rem;
  }
  
  .subcategory-card .col-4 {
      width: 35%;
      padding-right: 0;
  }
  
  .subcategory-card .col-8 {
      width: 65%;
      padding-left: 0.5rem;
  }
}


/* Custom Section Box Styling */
/* Custom Section Box Styling (now just for spacing if desired, no distinct background/border/shadow) */
.custom-section-box {
  /* Only keep spacing, if any. Background, border, shadow are removed for a "blended" look. */
  /* For example, if you still want some padding and margin: */
  padding-top: 1rem; /* Adjust as needed */
  padding-bottom: 1rem; /* Adjust as needed */
  margin-bottom: 1.5rem; /* Or keep mb-4 from Bootstrap in HTML */
}

/* Rest of your breadcrumb and subcategory specific styles */
.breadcrumb {
  font-size: 0.95rem;
}

.breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #FF7C36;
}

.breadcrumb-item.active {
  color: #FA4B2E;
  font-weight: 600;
}

.subcategories-container {
  padding-top: 5px;
}

.subcategory-link {
  border-color: #FF7C36;
  color: #FF7C36;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.subcategory-link:hover,
.subcategory-link:focus {
  background-color: #FA4B2E;
  color: white;
  border-color: #FA4B2E;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(250, 75, 46, 0.2);
}

@media (max-width: 991.98px) {
  .custom-section-box .container {
    text-align: center;
  }
  .subcategories-container {
    justify-content: center !important;
  }
}

.sidebar {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.subcategory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.subcategory-card {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.subcategory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.subcategory-card .card {
  border: none;
  overflow: hidden;
  position: relative;
}

.subcategory-card .card-img-top {
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.subcategory-card:hover .card-img-top {
  transform: scale(1.05);
}

.subcategory-card .card-body {
  padding: 1rem;
  background: white;
}

.subcategory-card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3954;
}




@media (max-width: 991px) {
  .mobile-subcategories {
      margin: 20px 15px !important;
      width: calc(100% - 30px);
  }
  
  .mobile-subcategories .subcategory-grid {
      gap: 15px;
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .mobile-subcategories .subcategory-grid {
      grid-template-columns: 1fr;
  }
  
  .mobile-subcategories {
      margin: 15px !important;
  }
}
@media (max-width: 575px) {
  .mobile-subcategories .subcategory-grid {
      grid-template-columns: 1fr;
  }
}
.sidebar.custom-section-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin: 0;
  max-width: 100%;
}


.container.mt-4 {
  max-width: 1240px;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .mobile-subcategories {
      order: 3; 
      margin-top: 2rem !important;
      padding: 15px !important;
  }
  
  .mobile-subcategories .card {
      margin-bottom: 1rem;
  }
  
  .mobile-subcategories .subcategory-grid {
      grid-template-columns: 1fr !important;
  }
}
.seo-keywords-section {
  background: #fff;

 
}

.keyword-pill {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border: 1px solid #FF7C36;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #2d3954;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.keyword-pill:hover {
  background: #FF7C36;
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .seo-keywords-section {
      margin: 1.5rem 0;
  }
  
  .keyword-pill {
      font-size: 0.7rem;
      padding: 0.2rem 0.6rem;
  }
}


/* Post Ad */

.step-header {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 100px;
}


.step-header h4 {
  margin: 0 !important;
  text-align: center;
  color: #2d3954;
  font-size: 1.5rem;
  padding: 0 40px;
}

.step-header .back-button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.ad-category-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.ad-category-card:hover {
  border-color: #FF7C36;
  box-shadow: 0 2px 8px rgba(255, 124, 54, 0.1);
}

.ad-category-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.ad-category-card h6 {
  margin: 0;
  font-size: 0.95rem;
  color: #2d3954;
  font-weight: 600;
}

.post-ad-container {
  max-width: 1440px;
  width: 95%;
  margin: 1.5rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  padding: 1.5rem;
}

.progress-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 3rem;
  position: relative;
}

.progress-step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
}

.progress-step.active {
  background: linear-gradient(90deg, #FA4B2E, #FF7C36);
  color: white;
}

.progress-step::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background: #e9ecef;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.progress-step:last-child::after {
  display: none;
}

.step-content {
  display: none;
}

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


#step2 .row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.subcategory-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.subcategory-item:hover {
  border-color: #FF7C36;
}

.subcategory-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcategory-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.subcategory-content h6 {
  margin: 0;
  font-size: 0.9rem;
  color: #2d3954;
  font-weight: 500;
}

.subcategory-content p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #6c757d;
}
.proceed-button {
  background: linear-gradient(90deg, #FA4B2E, #FF7C36);
  color: white;
  border: none;
  padding: 10px 30px;  
  border-radius: 5px;
  cursor: pointer;
  min-width: 120px;   
  transition: all 0.3s ease;
}

.back-button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 2;
  cursor: pointer;
}
#step3 .input-group-text {
  background-color: #f8f9fa;
  border-right: none;
}
#step3 .input-group-text.bg-transparent {
  background-color: transparent !important;
}

#step3 .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#step3 .row.g-3 [class*="col-"] {
  margin-bottom: 1rem;
}


@media (min-width: 1200px) {
  #step1 .row,
  #step2 .row {
      grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) {
  #step1 .row,
  #step2 .row {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  #step1 .row,
  #step2 .row {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .post-ad-container {
      padding: 1rem;
  }
  
  .progress-step {
      width: 30px;
      height: 30px;
  }
  
  .progress-step::after {
      width: 80px;
  }
}

@media (max-width: 768px) {
  #step1 .row,
  #step2 .row {
      grid-template-columns: 1fr;
  }
  
  .post-ad-container {
      width: 100%;
      border-radius: 0;
      margin: 0 auto;
      padding: 1rem;
  }
  
  .progress-steps {
      gap: 2rem;
  }
  
  .ad-category-card {
      padding: 0.5rem;
      gap: 0.5rem;
  }
  
  .ad-category-card img {
      width: 40px;
      height: 40px;
  }
  
  .subcategory-item {
      padding: 0.5rem;
  }
  .step-header {
      padding: 0 60px;
  }
  
  .step-header h4 {
      font-size: 1.2rem;
      padding: 0 30px;
  }
  
  .back-button {
      padding: 8px 15px;
      right: 10px;
  }
}

@media (max-width: 480px) {
  .progress-step {
      width: 28px;
      height: 28px;
      font-size: 0.8rem;
  }
  
  .progress-step::after {
      width: 60px;
  }
  
  .ad-category-card h6 {
      font-size: 0.9rem;
  }
  
  .subcategory-content h6 {
      font-size: 0.85rem;
  }
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}



/* Product page */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

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


.image-gallery {
  flex: 1;
  display: flex;
  gap: 15px;
  border-radius: 15px;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  object-fit: cover;
}
.video-thumbnail {
position: relative;
cursor: pointer;
}

.video-thumbnail::after {
content: "\f144";
font-family: "Font Awesome 5 Free";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 24px;
text-shadow: 0 0 8px rgba(0,0,0,0.5);
}


.main-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s;
  border-radius: 10px;
}


.product-details {
  flex: 1;
  padding-right: 20px;
}

.main-product-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}
.main-enquiry-btn {
display: inline-block; 
background: linear-gradient(90deg, #FA4B2E, #FF7C36);
color: white !important;
border: none;
padding: 18px;
border-radius: 5px;
font-size: 20px;
font-weight: 630;
width: 100%;
text-align: center;
text-decoration: none; 
}
.price-container {
  display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
 
}

.price {
  font-size: 28px;
  color: rgb(102, 171, 102);
  font-weight: 700;
}

.date-box {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  color: #666;
  border: 1px solid #e0e0e0;
}
.date-box i {
margin-right: 8px;
color: #666;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  margin-bottom: 25px;
  font-size: 17px;
}

.description-heading {
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
  font-size: 18px;
}

.description-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}





.seller-box {
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 4px;
  background-color: #ebf0f797;
}

.seller-header {
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
}




.seller-address {
  color: #666;
  line-height: 1.5;
  font-size: 16px;
}



.button-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}



.share-btn {
  background: #f5f5f5;
padding: 14px;
border: none;
cursor: pointer;
border-radius: 4px;
width: 60px;
border: 1px solid #e0e0e0;
}
.share-btn i {
font-size: 1.4em; 
}

/* Seller Info  */
.seller-header a {
text-decoration: none;
color: inherit;
}

.seller-info {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 15px;
}
.seller-details {
flex-grow: 1;
}
.seller-logo {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
}

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



.call-button {
border: 1.5px solid #FF7C36;
border-radius: 5px;
background: transparent !important;
padding: 8px 15px;
}

.phone-number {
text-decoration: none !important;
color: #fb6d08;
font-weight: bold;
font-size: 18px;
}


.call-button {
text-decoration: none !important;
display: inline-flex;
align-items: center;
gap: 10px;
flex-direction: row;
color: #333;
}

.call-button i {
order: 2; 
margin-left: 8px;
}

.call-button i {
font-size: 18px;
flex-direction: row-reverse;
gap: 12px;
}


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

  .image-gallery {
      flex-direction: column;
  }

  .thumbnails {
      flex-direction: row;
      order: 1;
  }

  .thumbnail {
      width: 60px;
      height: 60px;
  }

  .main-image img {
      height: 300px;
  }

  .main-product-title {
      font-size: 24px;
  }

  .price {
      font-size: 24px;
  }


  .main-enquiry-btn,
  .share-btn {
      width: 100%;
      text-align: center;
  }
  .seller-info {
 
  flex-direction: row;
align-items: center;
flex-wrap: wrap;
}


.button-group {
flex-direction: row;
gap: 10px;
}

.main-enquiry-btn {
flex-grow: 1;
width: auto;
padding: 18px 10px;
}

.share-btn {
width: 60px;
flex-shrink: 0;
}




.seller-logo {
width: 50px;
height: 50px;
margin-right: 15px;
}

.seller-details {
flex: 1;
min-width: 60%;
justify-content: flex-start;
}

.call-button {
  flex-direction: row;
  justify-content: center;
  width: auto;
  padding: 8px 20px !important;
}
.call-button i {
  order: 2;
  margin-left: 8px;
}
}


/* Seller Profile */

.seller-profile-section {
  position: relative;
  margin-bottom: 50px;
}

.cover-image {
  background-size: cover;
  background-position: center;
}

.seller-avatar {
  position: relative;
  z-index: 2;
}

.youtube-embed iframe,
.seller-location iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.info-box {
transition: all 0.2s ease;
border-color: rgba(220, 220, 220, 0.3) !important;
margin-top: 20px; 
}


.vr {
width: 1px;
background: rgba(0, 0, 0, 0.1);
}

.seller-info {
border: 1px solid rgba(255, 124, 54, 0.1);
}

@media (max-width: 768px) {
  .seller-avatar img {
      width: 120px !important;
      height: 120px !important;
      margin-top: -60px !important;
  }
  
  .seller-profile-section {
      margin-bottom: 30px;
  }
  
  .seller-address p {
      font-size: 0.9rem;
  }
  .seller-avatar img {
  width: 120px !important;
  height: 120px !important;
  margin-top: -60px !important;
}

.info-box {
  margin: 0 15px;
}
}

@media (max-width: 576px) {
  .order-md-3 {
      order: 1;
  }
  
  .order-md-1 {
      order: 3;
  }
} 

.verified-badge {
  position: relative;
  top: -2px;
}

.verified-badge i {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.verified-badge:hover i {
  transform: scale(1.1);
}



.social-sharing-cover {
z-index: 1;
}

.social-sharing-cover a {
transition: transform 0.2s ease;
}

.social-sharing-cover a:hover {
transform: translateY(-2px) scale(1.1);
}


.bi-telephone {
color: #28a745;
}

@media (max-width: 768px) {
.social-sharing-cover {
  transform: scale(0.8);
  right: 0 !important;
  top: 0 !important;
}

.seller-info p {
  font-size: 0.9rem;
}

.bi-telephone {
  font-size: 0.9rem;
}
}


.sp-tabs-container {
  margin: 2rem 0;
}


.sp-tabs {
  border-bottom: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.sp-tabs .nav-item {
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
}

.sp-tabs .nav-link {
  width: 100%;
  border: none !important;
  border-radius: 0;
  padding: 1rem;
  color: #666;
  background: #f8f9fa;
  position: relative;
  transition: all 0.3s ease;
}

.sp-tabs .nav-link.active {
  color: #ff7c36;
  background: #fff;
}

.sp-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff7c36;
}


.sp-tabs .nav-link:not(.active):hover {
  background: #f0f0f0;
  color: #444;
}


.sp-tab-content {
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 2rem;
  background: #fff;
}


.sp-about-card {
  border: 1px solid rgba(255, 124, 54, 0.1);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.sp-ceo-card {
  background: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
}


.sp-gallery-card {
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
}

.sp-gallery-card:hover {
  transform: translateY(-5px);
}

.sp-gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sp-gallery-card:hover img {
  transform: scale(1.05);
}

#galleryModal .modal-content {
  background: rgba(0,0,0,0.9);
  border: none;
}

#galleryModal img {
  max-height: 80vh;
  object-fit: contain;
}

#galleryModal .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

#galleryModal .btn-close:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .sp-gallery-card img {
      height: 150px;
  }
}

@media (max-width: 576px) {
  .sp-gallery-card img {
      height: 120px;
  }
}

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

  .sp-tabs .nav-item {
      width: 100%;
      flex: auto;
  }

  .sp-tabs .nav-link {
      padding: 0.75rem;
      border-right: none;
  }

  .sp-tab-content {
      padding: 1rem;
  }

  .sp-about-card {
      padding: 1rem;
  }

 
}

@media (max-width: 576px) {
  .sp-tabs .nav-link {
      font-size: 0.9rem;
  }
  
  .sp-ceo-card {
      margin-top: 1rem;
  }
}

/* New Simple Subcategory Cards */
.subcategories-section {
    background-color: #fff;
}

.subcategories-section h3 {
    font-weight: 600;
    color: #2d3954;
}

.subcategory-card-new {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.subcategory-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: #FF7C36;
}

.subcategory-card-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
}

.subcategory-card-new .card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.subcategory-card-new .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #212529;
    margin-bottom: 0.5rem;
}

.subcategory-card-new .card-desc {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.subcategory-card-new .card-count {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
    margin-bottom: 0;
}