/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* GLOBAL CONTAINER FOR CONSISTENT SIDE SPACE */
.container {
  max-width: 1400px !important;
  width: 95% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* CONSISTENT SECTION SPACING */
section {
  padding: 60px 0;
}

.banner-section {
  padding: 20px 0 !important;
}

.topheader {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header {
  background: #e9e9e9;
  margin-top: 15px;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* =================================================
   DESKTOP / LAPTOP VIEW
================================================= */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 40px;
}

.logo img {
  width: 100%;
  height: 60px;
}

.search-box {
  flex: 1;
  max-width: 200px;
  margin: 0 0px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.search-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.icons {
  display: flex;
  gap: 30px;
  font-size: 13px;
  text-align: center;
}

.icons i {
  font-size: 20px;
  display: block;
  margin-bottom: 3px;
}

/* navbar */
.navbar1 {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 15px 0px 12px 0px;
}

.navbar1 a {
  text-decoration: none;
  color: #444;
}

/* =================================================
   MOBILE VIEW
================================================= */

.mobile-top,
.mobile-search,
.mobile-cats {
  display: none;
}

.banner-section {
  padding: 20px 0;
}

.banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Left big slider height */
.main-slider {
  height: 600px;
}

/* Right banners */
.side-banner {
  height: 250px;
}

/* Mobile responsive */
@media(max-width:991px) {
  .main-slider {
    height: 350px;
    margin-bottom: 15px;
  }

  .side-banner {
    height: 180px;
  }
}

@media(max-width:576px) {
  .main-slider {
    height: 250px;
  }

  .side-banner {
    height: 140px;
  }
}

/* =================================================
   RESPONSIVE
================================================= */

@media(max-width:768px) {

  /* hide desktop */
  .topbar,
  .navbar1 {
    display: none;
  }

  /* mobile top */
  .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #e9e9e9;
  }

  .mobile-top .logo {
    font-size: 18px;
    font-weight: bold;
  }

  .mobile-top i {
    font-size: 22px;
    cursor: pointer;
  }

  .right-icons {
    display: flex;
    gap: 18px;
  }

  /* search */
  .mobile-search {
    display: block;
    padding: 10px 15px;
  }

  .mobile-search input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }

  /* categories */
  .mobile-cats {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 15px;
    background: #fff;
  }

  .mobile-cats a {
    white-space: nowrap;
    text-decoration: none;
    color: #444;
  }

}

/* =================================================
   SIDEBAR MENU
================================================= */

.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 270px;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, .25);
  transition: .3s;
  z-index: 999;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  text-align: right;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.sidebar-header i {
  font-size: 24px;
  cursor: pointer;
}

.sidebar-menu {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-menu a {
  text-decoration: none;
  color: #444;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .3);
  display: none;
}

.overlay.active {
  display: block;
}

/* ===== SECTION BG ===== */
.sale-wrapper {
  background: #e7e7e7;
  padding: 18px;
  border-radius: 8px;
}

/* ===== INNER CARDS ===== */
.sale-box {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  height: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* ===== TIMER ===== */
.timer-big {
  color: #ff3b30;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
}

.timer-small {
  font-size: 13px;
  color: #666;
}

/* ===== STORE TEXT ===== */
.discount-line {
  font-size: 14px;
  font-weight: 500;
}

.discount-line span {
  color: #f58220;
  font-weight: 700;
}

/* ===== FEATURES ===== */
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 42px;
  height: 42px;
  background: #fde8d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f58220;
  font-size: 16px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.2;
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
  .sale-box {
    margin-bottom: 12px;
  }
}

@media(max-width:768px) {

  .feature-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .timer-big {
    font-size: 22px;
  }
}

.section-title {
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

/* Filter Buttons */
.filter-btns {
  text-align: center;
  margin-bottom: 50px;
}

.filter-btns button {
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  margin: 5px;
  font-size: 16px;
  transition: 0.3s;
}

.filter-btns button.active,
.filter-btns button:hover {
  border-color: #f47c2c;
  color: #f47c2c;
}

/* Category Card */
.category-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  /* 🔥 image bahar nahi jayegi */
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  /* 👈 smooth shadow */

  position: relative;
}

.item {
  overflow: hidden;
}

.item img {
  width: 100%;
  overflow: hidden;
}

/* Image Wrapper */
.image-wrapper {
  overflow: hidden;
  /* double safety */
}

/* Image */
.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Zoom */
.category-card:hover img {
  transform: scale(1.12);
}

/* Title */
.category-name {
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
  letter-spacing: 1px;
}

.FurnitureBrand-section {
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}



.FurnitureBrand-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
}

.FurnitureBrand-section {
  padding: 60px 0;
  text-align: center;
}

.FurnitureBrand-desc {
  color: #666;
  font-size: 15px;
  margin-bottom: 35px;
}

.FurnitureBrand-desc span {
  color: #ff7a00;
  font-weight: 600;
}

.FurnitureBrand-desc a {
  color: #ff7a00;
  text-decoration: none;
  margin-left: 6px;
}

/* Card */
.FurnitureBrand-card {
  text-align: center;
}

.FurnitureBrand-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.FurnitureBrand-card h4 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.FurnitureBrand-card h4.active {
  color: #ff7a00;
}

/* Swiper */
.FurnitureBrandSwiper {
  position: relative;
}

.swiper-slide {
  width: 280px;
}

/* arrows */
.FurnitureBrand-next,
.FurnitureBrand-prev {
  position: absolute;
  top: 40%;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.FurnitureBrand-next::after,
.FurnitureBrand-prev::after {
  font-family: swiper-icons;
  font-size: 18px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #333;
}

.FurnitureBrand-next::after {
  content: 'next';
}

.FurnitureBrand-prev::after {
  content: 'prev';
}

.FurnitureBrand-next {
  right: -20px;
}

.FurnitureBrand-prev {
  left: -20px;
}

/* Responsive */
@media(max-width: 768px) {
  .FurnitureBrand-title {
    font-size: 24px;
  }

  .FurnitureBrand-card img {
    height: 200px;
  }
}

.Discover-section {
  padding: 100px 0;
  background: #f2f2f2;
  font-family: Poppins, sans-serif;
}

.Blog-section {
  padding: 80px 0;
}



/* header */
.Discover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.Discover-title {
  font-size: 32px;
  font-weight: 600;
}

.Discover-sub {
  color: #777;
  font-size: 15px;
  margin-top: 6px;
}

.Discover-viewBtn {
  border: 1px solid #bbb;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.DiscoverSwiper,
.DiscoverSwiperPlywood {
  position: relative;
  overflow: visible !important;
}

.DiscoverSwiper .swiper-wrapper,
.DiscoverSwiperPlywood .swiper-wrapper {
  overflow: hidden;
}

/* card */
.Discover-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  min-height: 370px;
}

/* SECTION */
.Transform-section {
  background: #f3eceb;
  font-family: Poppins, sans-serif;
}

/* container */
.Transform-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

/* row layout */
.Transform-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
}

/* LEFT SIDE */
.Transform-left {
  padding: 20px 10px;
}

.Transform-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #222;
}

.Transform-sub {
  color: #777;
  font-size: 15px;
  margin-bottom: 25px;
}

.Transform-offer {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* GRID */
.Transform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.Transform-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  transition: .3s;
}

.Transform-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.Transform-card span {
  display: block;
  padding: 12px;
  font-size: 14px;
  color: #333;
}

/* hover */
.Transform-card:hover {
  transform: translateY(-4px);
}

/* ================== RESPONSIVE ================== */

@media(max-width:1200px) {
  .Transform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:900px) {
  .Transform-row {
    grid-template-columns: 1fr;
  }

  .Transform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .Transform-left {
    text-align: center;
  }
}

@media(max-width:480px) {
  .Transform-grid {
    grid-template-columns: 1fr;
  }
}

.Discover-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.Discover-name {
  font-size: 15px;
  margin: 10px 0;
  color: #333;
}

.Discover-rating {
  color: #ff7a00;
  font-size: 14px;
}

.Discover-rating span {
  color: #666;
  margin-left: 5px;
}

/* price */
.Discover-priceRow {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.Discover-price {
  font-weight: 600;
  font-size: 18px;
}

.Discover-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.Discover-off {
  color: #2ca24c;
  font-weight: 600;
  font-size: 14px;
}

/* slider */
.swiper-slide {
  width: 260px;
}

/* arrows */
.Discover-next,
.Discover-prev {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  cursor: pointer;
}

.Discover-next {
  right: -10px;
}

.Discover-prev {
  left: -10px;
}

/* responsive */
@media(max-width:768px) {
  .Discover-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .Discover-img {
    height: 180px;
  }
}

.product-section {
  padding: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.product-card {
  position: relative;
  background: #f7f2ec;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 20px;
  min-height: 260px;
}

/* OFFER TAG */
.offer {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 20px;
}

.offer.brown {
  background: #8b4b1d;
}

.offer.olive {
  background: #6b6a2d;
}

/* CONTENT */
.content {
  max-width: 50%;
}

.content h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.tagline {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

.price {
  font-size: 14px;
  margin-bottom: 8px;
}

.price strong {
  font-size: 24px;
}

.delivery {
  font-size: 12px;
  color: #333;
}

/* IMAGE */
.product-card img {
  width: 50%;
  object-fit: contain;
  margin-left: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
  }

  .content,
  .product-card img {
    max-width: 100%;
    width: 100%;
  }

  .product-card img {
    margin-top: 15px;
  }
}



.BehindTitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* GRID */
.BehindGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.BehindCard {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
}

/* MEDIA */
.BehindMedia {
  height: 320px;
  overflow: hidden;
}

.BehindMedia img,
.BehindMedia video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INFO */
.BehindInfo {
  padding: 12px;
}

.BehindName {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.BehindRating {
  color: #f27a1a;
  font-size: 13px;
  margin-bottom: 6px;
}

.BehindRating span {
  color: #555;
}

.BehindPrice {
  font-size: 15px;
  font-weight: 600;
}

.BehindOld {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  margin-left: 6px;
}

.BehindOff {
  color: #1aa334;
  font-size: 13px;
  margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .BehindGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .BehindGrid {
    grid-template-columns: 1fr;
  }

  .BehindMedia {
    height: 260px;
  }
}

.HomeDecorSection {
  background: #fdeeee;
  padding: 28px 0;
}

.HomeDecorTitle {
  font-size: 22px;
  font-weight: 600;
}

.HomeDecorSubtitle {
  font-size: 13px;
  color: #555;
}

.HomeDecorViewAll {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* CARD */
.HomeDecorCard {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  height: 100%;
}

.HomeDecorCard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.HomeDecorName {
  font-size: 14px;
  font-weight: 500;
}

.HomeDecorPrice {
  font-size: 13px;
  color: #666;
}

.TestimonialSection {
  padding: 30px 0;
  background: #fff;
}

.TestimonialTitle {
  font-size: 22px;
  font-weight: 600;
}

.TestimonialSubtitle {
  font-size: 13px;
  color: #666;
}

.TestimonialViewAll {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 20px;
}

/* CARD */
.TestimonialCard {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  background: #fff;
}

/* VIDEO */
.TestimonialVideo {
  position: relative;
}

.TestimonialVideo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.TestimonialPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 10px 14px;
  font-size: 22px;
}

.TestimonialBadge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f36c21;
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 4px;
}

/* CONTENT */
.TestimonialText {
  font-size: 13px;
  padding: 12px;
  color: #444;
}

.TestimonialStars {
  color: #f36c21;
  text-align: center;
  font-size: 14px;
}

.TestimonialName {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.TestimonialCity {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

/* SECTION */
.ContentSection {
  padding: 40px 0;
}

/* CONTAINER */
.ContentContainer {
  max-width: 1580px;
  margin: auto;
  padding: 0 20px;
}

/* TITLES */
.ContentMainTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.ContentSubTitle {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 14px;
}

/* HEADINGS */
.ContentHeading {
  font-size: 15px;
  font-weight: 600;
  margin: 16px 0 6px;
}

/* PARAGRAPH */
.ContentPara {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ContentMainTitle {
    font-size: 20px;
  }

  .ContentSubTitle {
    font-size: 17px;
  }

  .ContentPara {
    font-size: 13.5px;
  }
}

.FooterMain {
  background: #1c1c1c;
  color: #ccc;
  padding-top: 50px;
}

.FooterLogo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.FooterLogo span {
  color: #f4b400;
}

.FooterText {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0;
}

.FooterTitle {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.FooterLinks {
  list-style: none;
  padding: 0;
}

.FooterLinks li {
  margin-bottom: 8px;
}

.FooterLinks a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.FooterLinks a:hover {
  color: #f4b400;
}

/* SOCIAL ICONS */
.FooterSocial i {
  font-size: 18px;
  margin-right: 12px;
  cursor: pointer;
}

/* NEWSLETTER */
.FooterNewsletter {
  display: flex;
  margin-top: 10px;
}

.FooterNewsletter input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

.FooterNewsletter button {
  background: #f4b400;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
}

/* BOTTOM */
.FooterBottom {
  background: #111;
  text-align: center;
  padding: 12px;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

/* BLOG DETAILS STYLES */
.news-details-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.news-details-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.post-featured-thumb {
  height: 450px;
  border-radius: 12px;
  margin-bottom: 25px;
  background-size: cover;
  background-position: center;
}

.post-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.news-post {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.post-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin-bottom: 20px;
}

/* SIDEBAR WIDGETS */
.single-sidebar-widget {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border: 1px solid #eee;
}

.wid-title {
  border-bottom: 2px solid #ffb300;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.wid-title h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #333;
}

.search-widget form {
  position: relative;
}

.search-widget input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.search-widget input:focus {
  border-color: #ffb300;
}

.search-widget button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #ffb300;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.search-widget button:hover {
  background: #333;
}

.news-widget-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-widget-categories li {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
}

.news-widget-categories li:last-child {
  border: none;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.category-link:hover {
  color: #ffb300;
}

.category-link span:last-child {
  background: #f0f0f0;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #777;
}

.category-link:hover span:last-child {
  background: #ffb300;
  color: #fff;
}

/* DESCRIPTION STYLING */
.post-description {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-top: 25px;
}

.post-description p {
  margin-bottom: 20px;
}

.post-description strong {
  color: #333;
}

/* PREMIUM WIDGET HOVER */
.single-sidebar-widget {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.single-sidebar-widget:hover {
  border-color: #ffb300;
}

/* SEARCH RESULTS DROPDOWN */
#searchResults {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 8px;
}

#searchResults li {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
}

#searchResults li:last-child {
  border: none;
}

#searchResults a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

#searchResults a:hover {
  color: #ffb300;
}

.recent-post-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.recent-post-item:hover .recent-content h6 {
  color: #ffb300;
}

.recent-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-content h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.4;
  color: #333;
}

.recent-content span {
  font-size: 12px;
  color: #999;
}

/* COMMENTS AREA */
.comments-heading h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.news-comment-box {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.news-comment-box:last-child {
  border: none;
}

.news-comment-box .imagee {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.news-comment-box .imagee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-comment-box .content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.news-comment-box .content h5 a {
  color: #333;
  text-decoration: none;
}

.news-comment-box .content span {
  font-size: 12px;
  color: #999;
}

.news-comment-box .content p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}

/* COMMENT FORM */
.comment-form-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.form-clt input,
.form-clt textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fdfdfd;
  outline: none;
  transition: 0.3s;
  margin-bottom: 15px;
}

.form-clt input:focus,
.form-clt textarea:focus {
  border-color: #ffb300;
  background: #fff;
}

.theme-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-btn:hover {
  background: #ffb300;
}

.blog-sublist {
  list-style: none !important;
  padding-left: 15px !important;
  margin-top: 10px !important;
  border-left: 2px solid #ffb300;
}

.blog-sublist li {
  border: none !important;
  padding: 5px 0 !important;
}

.blog-sublist li a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: 0.3s;
}

.blog-sublist li a:hover {
  color: #ffb300;
}
/* ================== PRODUCT DETAIL PAGE ================== */

.shop-details-wrapper {
  padding: 40px 0;
  background: #fff;
}

.shop-details-image .tab-content {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fdfdfd;
}

.shop-thumb {
  height: 450px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.shop-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.shop-details-image .nav {
  display: flex !important;
  gap: 15px !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  list-style: none !important;
}

.shop-details-image .nav-item {
    list-style: none !important;
}

.shop-details-image .nav-item .nav-link {
  padding: 0;
  border: 2px solid transparent !important;
  border-radius: 10px;
  overflow: hidden;
  transition: .3s;
}

.shop-details-image .nav-item .nav-link.active {
  border-color: #ff7a00 !important;
}

.shop-details-image .nav-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.product-details-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.star {
  color: #ff7a00;
}

.price-list h3 {
  font-size: 28px;
  color: #ff7a00 !important;
  font-weight: 700;
}

.price-list del {
  color: #999;
  font-size: 20px;
  margin-right: 10px;
}

.variant-btn {
  padding: 10px 20px !important;
  border: 1.5px solid #ddd !important;
  background: white !important;
  color: #444 !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

.variant-btn.active {
  background: #ff7a00 !important;
  color: #fff !important;
  border-color: #ff7a00 !important;
}

.cart-quantity {
  display: flex !important;
  align-items: center;
  border: 1.5px solid #eee;
  border-radius: 20px;
  padding: 5px 15px;
  width: fit-content;
  background: #fdfdfd;
}

.cart-quantity input {
  border: none !important;
  background: transparent !important;
  text-align: center;
  font-weight: 600;
  box-shadow: none !important;
}

.cart-quantity .qty {
  width: 40px;
}

.cart-quantity .minus, .cart-quantity .plus {
  font-size: 18px;
  cursor: pointer;
  color: #666;
  width: 25px;
  padding: 0;
  background: none !important;
}

.cart-wrp {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.shop-btn .theme-btn {
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: .3s;
  border: none;
  font-size: 13px;
}

.shop-btn .theme-btn:first-child {
  background: #222;
  color: #fff;
}

.shop-btn .theme-btn:last-child {
  background: #ff7a00;
  color: #fff;
}

.shop-btn .theme-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.details-info {
  font-size: 14px;
  color: #666;
  margin-top: 15px !important;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.details-info span:first-child {
  font-weight: 600;
  color: #222;
  min-width: 100px;
  display: inline-block;
}

/* Tabs */
.single-tab .nav {
  border-bottom: 2px solid #eee;
  margin-bottom: 40px !important;
  list-style: none !important;
  display: flex !important;
  padding-left: 0 !important;
}

.single-tab .nav-item {
    list-style: none !important;
}

.single-tab .nav-item .nav-link {
  border: none !important;
  background: none !important;
  padding: 15px 30px !important;
  position: relative;
  color: #666 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.single-tab .nav-item .nav-link.active {
  color: #ff7a00 !important;
}

.single-tab .nav-item .nav-link.active::after {
  content: ';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ff7a00;
}


/* Refined Detail Controls */
.theme-btn span {
    text-decoration: none !important;
}

.theme-btn {
    text-decoration: none !important;
}

.cart-quantity button {
    border: none !important;
    background: none !important;
    font-size: 24px !important;
    line-height: 1 !important;
    color: #333 !important;
    padding: 0 10px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    box-shadow: none !important;
}

.cart-quantity input {
    font-size: 16px !important;
    width: 40px !important;
    font-weight: 700 !important;
}

.cart-wrp .wishlist-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f8f8;
    color: #666;
    transition: 0.3s;
    text-decoration: none !important;
}

.cart-wrp .wishlist-icon:hover {
    background: #fff0e0;
    color: #ff7a00;
}

.shop-btn .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 50px;
}


/* Premium Button Refinement */
.shop-btn .theme-btn {
    border-radius: 8px !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.shop-btn .theme-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    opacity: 1 !important;
}

.cart-quantity {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
}


/* ================== LOGIN / SIGNUP PAGE ================== */

.my-account-section {
    background: #f9f9f9;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.account-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.account-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    text-align: center;
}

.account-box p {
    text-align: center;
    color: #888;
    position: relative;
    margin-bottom: 25px;
}

.account-box p::before, .account-box p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: #eee;
}

.account-box p::before { left: 0; }
.account-box p::after { right: 0; }

.nav-tabs#accountTab {
    border: none;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 12px;
    display: flex;
    margin-bottom: 30px !important;
}

.nav-tabs#accountTab .nav-item {
    flex: 1;
}

.nav-tabs#accountTab .nav-link {
    border: none !important;
    background: none !important;
    color: #666 !important;
    font-weight: 600;
    padding: 12px !important;
    border-radius: 10px !important;
    text-align: center;
    transition: 0.3s;
    width: 100%;
}

.nav-tabs#accountTab .nav-link.active {
    background: #ff7a00 !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2);
}

.form-clt input {
    height: 55px;
    border: 1.5px solid #eee !important;
    border-radius: 12px !important;
    padding: 0 20px !important;
    font-size: 15px;
    transition: 0.3s;
    background: #fafafa !important;
}

.form-clt input:focus {
    border-color: #ff7a00 !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.05) !important;
    outline: none;
}

.theme-btn.header-btn, .theme-btn {
    height: 55px;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px;
    transition: 0.3s;
    background: #222 !important;
    color: #fff !important;
}

.theme-btn:hover {
    background: #ff7a00 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
}

#signup .theme-btn {
    background: #ff7a00 !important;
}

#signup .theme-btn:hover {
    background: #222 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.account-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #222;
}


/* Alignment & Spacing Overrides */
.my-account-section {
    padding: 80px 0 !important;
    display: block !important; /* Allow natural container flow */
}

.account-wrapper {
    position: relative;
    z-index: 10;
}

.account-box {
    margin: 0 auto;
    max-width: 500px;
}

.account-wrapper h2 {
    margin-bottom: 20px !important;
}

@media (max-width: 768px) {
    .account-box {
        padding: 25px;
    }
}


/* ================== PAGE BREADCRUMB ================== */
.breadcrumb-section {
    background: #fdfdfd;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.breadcrumb-section h1 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.breadcrumb-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.breadcrumb-links a {
    color: #ff7a00;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-links a:hover {
    text-decoration: underline;
}

.breadcrumb-links span {
    color: #ccc;
}


.my-account-section.pt-0 {
    padding-top: 0 !important;
}


/* Header Icons Redesign */
.topbar .icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.topbar .icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    transition: all 0.3s ease;
    cursor: pointer;
}

.topbar .icons > div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.topbar .icons > div i {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border-radius: 50%;
}

.topbar .icons > div:hover i {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.2);
}

.topbar .icons > div:hover {
    color: #ff7a00;
}


/* Header Icons Refinement */
.topbar .icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-wrap a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.icon-wrap a i {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
    background: #f8f8f8;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-wrap a:hover {
    color: #ff7a00;
}

.icon-wrap a:hover i {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.25);
}


/* MANUFACTURING SKILLS SECTION */
.manufacturing-section {
    background: #f4ede8; /* Soft warm background matched from user screenshot */
    padding: 80px 0;
}

.manufacturing-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
}

.manufacturing-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.manufacturing-text h4 {
    font-size: 16px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mfg-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px;
    text-align: center;
    border: 1px solid #fff;
    height: 100%;
}

.mfg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #ffb300;
}

.mfg-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.mfg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mfg-card:hover .mfg-img-wrapper img {
    transform: scale(1.08);
}

.mfg-card h5 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s;
}

.mfg-card:hover h5 {
    color: #ff7a00;
}

@media (max-width: 991px) {
    .manufacturing-text {
        text-align: center;
        margin-bottom: 40px;
    }
}


/* Products Listing Page Refinements */
.shop-left-sideber-section {
    background: #fdfdfd;
}

.main-sideber {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.single-sidebar-widget-2 {
    margin-bottom: 30px;
}

.wid-title h5 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.wid-title h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff7a00;
}

.widget-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.widget-categories ul li a {
    color: #555;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.widget-categories ul li:hover a {
    color: #ff7a00;
    padding-left: 5px;
}

.widget-categories ul li span {
    font-size: 12px;
    font-weight: 600;
    background: #f5f5f5;
    color: #777;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* Price Filter */
.field {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.field input {
    border: none;
    background: transparent;
    width: 100%;
    margin-left: 5px;
    font-weight: 600;
    color: #333 !important;
    outline: none;
}

.separators {
    text-align: center;
    margin: 10px 0;
    color: #999;
    font-weight: 700;
}

.form-filter-btn {
    background: #ff7a00 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: 0.3s;
}

.form-filter-btn:hover {
    background: #222 !important;
    transform: translateY(-2px);
}

.form-reset-btn {
    background: #f5f5f5 !important;
    color: #666 !important;
    border: none !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: 0.3s;
}

.form-reset-btn:hover {
    background: #e0e0e0 !important;
    color: #222 !important;
}


.empty-state-card {
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ccc;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.empty-state-card i {
    font-size: 50px;
    color: #ffd8a8;
    margin-bottom: 20px;
}
.empty-state-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
}
.empty-state-card p {
    color: #888;
}


/* Pagination Styling */
.page-nav-wrap {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-nav-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 10px;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li a,
.page-nav-wrap ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #555;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #ebebeb;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.page-nav-wrap ul li a:hover {
    background: #ff7a00;
    color: #fff;
    border-color: #ff7a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255,122,0,0.25);
}

.page-nav-wrap ul li.active a {
    background: #ff7a00;
    color: #fff;
    border-color: #ff7a00;
    pointer-events: none;
}

.page-nav-wrap ul li.disabled span {
    background: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
    box-shadow: none;
}


/* Login Page Split Screen Styling */
.nav-tabs .focus-tab .nav-link {
    border: none;
    background: transparent;
    color: #888;
    position: relative;
}

.nav-tabs .focus-tab .nav-link.active {
    color: #ff7a00;
    background: transparent;
}

.nav-tabs .focus-tab .nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff7a00;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-tabs .focus-tab .nav-link.active::after {
    transform: scaleX(1);
}

.form-clt input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    background: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
}

.form-clt input:focus {
    border-color: #ff7a00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.header-btn {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px;
    text-transform: uppercase;
}

