@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");

:root {
  /* --- Font Families --- */
  --font-primary: "Lato", sans-serif;
  --font-heading: "Playfair Display", serif;

  /* --- Font Sizes --- */
  --fs-small: 14px;
  --fs-base: 16px;
  --fs-medium: 18px;
  --fs-large: 22px;
  --fs-xl: 28px;

  /* --- Colors --- */
  --clr-dark: #111;
  --clr-light: #fff;
  --clr-gray: #aaa;
  --clr-border: #333;
  --clr-accent: #c7372b;

  /* --- Footer Colors --- */
  --footer-bg: #161616;
  --footer-text: #e6e6e6;
  --footer-link: #d8d8d8;
  --footer-link-hover: #ffffff;

  /* --- Spacing --- */
  --sp-1: 8px;
  --sp-2: 12px;
  --sp-3: 20px;
  --sp-4: 32px;
  --sp-5: 48px;
}
@font-face {
    font-family: 'Franklin Gothic Heavy';
    src: url('../fonts/FranklinGothicHeavy.woff2') format('woff2'),
         url('../fonts/FranklinGothicHeavy.woff') format('woff');
    font-weight: 800; /* Approximate weight for 'Heavy' */
    font-style: normal;
}
@font-face {
  font-family: "Arial Nova";
  src: url("../fonts/arial-nova/ArialNova.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial Nova";
  src: url("../fonts/arial-nova/ArialNova-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Arial Nova";
  src: url("../fonts/arial-nova/ArialNova-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
img,
video {
  max-width: 100%;
  height: auto;
}
html,
body {
  position: relative;
  overflow-x: clip;
  scroll-behavior: smooth;
}

/* Global font apply */
body {
  font-family: "Raleway", sans-serif;
  -webkit-font-feature-settings: "lnum"; /* For WebKit browsers */
  font-feature-settings: "lnum"; /* Standard */
  font-size: var(--fs-base);
}

/* Fix for large desktop screens */
@media (min-width: 1400px) {
  .container,
  .container-fluid {
    max-width: 1750px;
  }
}

@media (min-width: 1600px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Top bar */
.top-info-bar {
  background: #222;
  color: #fff;
  padding: 8px 0;
  border-bottom: 2px solid #3d7dff;
  font-size: 14px;
  font-family: var(--fs-base);
}

.info-unit {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.info-unit i {
  font-size: 15px;
  color: #ffff;
}
.info-unit.mob i {
  color: #252525;
}

/* Better spacing on mobile */
@media (max-width: 576px) {
  .info-unit {
    font-size: 14px;
  }
}

/* .tg-mobile-menu > hr {
  margin-top: 10px;
} */

/* header */
.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 20px 0;*/
  padding: 9px 0;
}
.tg-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tg-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-family: "Raleway", sans-serif;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}
/* Sticky active state – DO NOT use fixed */
.tg-header.sticky {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  background: #fff;
}
/* Logo (Image) */
.tg-logo img {
  height: 18px;
  width: auto;
  object-fit: contain;
  display: block;
  float:right;
  margin-bottom:-7px;
  
}

.tg-search-bar {
  display: flex;
  align-items: center;
  position: relative;
}

/* Search input hidden by default */
.tg-search-bar input {
  width: 0;
  opacity: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.35s ease;
  margin-left: 8px;
  pointer-events: none;
}

/* Active state */
.tg-search-bar.active input {
  width: 220px; /* adjust as needed */
  opacity: 1;
  padding: 8px 12px;
  pointer-events: auto;
  border-color: var(--clr-accent);
  outline: none;
}

/* Button styling */
.tg-search-btn {
  outline: none;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .tg-logo img {
    height: 18px;
  }
  .tg-search-bar {
    display: none;
  }
}

.tg-logo {
  /*display: flex;*/
  display:block;
  align-items: center;
  text-decoration: none;
}

/* -----------------------------
   SEARCH BAR
------------------------------ */
.tg-search-wrapper {
  background: #f1f1f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  width: 100%;
  max-width: 750px;
  flex-wrap: nowrap; /* keep inline until very small */
  display: none;
}

/* Category Select */
.tg-category-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  flex: 0 0 auto; /* adapt based on content */
  width: auto;
  max-width: 35%;
  padding: 8px 35px 8px 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: #444;
  background: #f7d9d6;
  cursor: pointer;
  font-family: "Raleway", sans-serif;

  /* dropdown arrow */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='black'><path d='M4 5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

.tg-category-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(199, 55, 43, 0.2);
}

/* Search Input */
.tg-search-input {
  flex: 1;
  min-width: 80px;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 15px;
}

.tg-search-input:focus {
  outline: none;
}

/* Search Icon */
.tg-search-icon {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: #c7372b;
  font-size: 18px;
  padding: 5px;
  position: relative;
  cursor: pointer;
}

/* Hover effect circle */
.tg-search-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #c7372b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 0;
}

.tg-search-icon i {
  position: relative;
  z-index: 2;
}

.tg-search-icon:hover {
  color: #fff;
}

.tg-search-icon:hover::after {
  width: 40px;
  height: 40px;
}

/* Mobile Search Button */
.tg-mobile-search-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  margin-right: 10px;
}

/* Hidden Search Bar */
.tg-mobile-search-bar {
  display: none;
  padding: 12px 15px;
  background: #f1f1f1;
  border-bottom: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}

.tg-mobile-search-bar.open {
  display: flex;
  gap: 10px;
}

.tg-mobile-search-bar input {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 12px;
}

.tg-mobile-search-bar button {
  background: #c7372b;
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* Hide desktop search bar on mobile */
@media (max-width: 480px) {
  .tg-search-wrapper {
    display: none !important;
  }
}

/* ---------------------------------------------------
   TABLET RESPONSIVE 
---------------------------------------------------- */
@media (max-width: 992px) {
  .tg-search-wrapper {
    max-width: 100%;
    padding: 8px;
  }

  .tg-category-select {
    font-size: 13px;
    padding: 7px 34px 7px 10px;
  }

  .tg-search-input {
    font-size: 14px;
  }
}

/* ============================================
   NORMAL LAPTOP (Bootstrap-like behavior)
   ============================================ */
@media (min-width: 1200px) and (max-width: 1919px) {
  .container,
  .container-fluid {
    max-width: 1280px !important;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ============================================
   LARGE DESKTOP (1920px+) — EXPANDED UI
   ============================================ */
@media (min-width: 1920px) {
  .container,
  .container-fluid {
    max-width: 1700px !important; /* Expand nicely */
    padding-left: 40px;
    padding-right: 40px;
  }

  /* upscale header content */
  .tg-header .container {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .tg-logo img {
    height: 17px;
    margin-bottom:-6px;
  }

  .tg-search-wrapper {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 12px;
    gap: 14px;
  }

  .tg-category-select {
    font-size: 16px;
    padding: 10px 45px 10px 14px;
  }

  .tg-search-input {
    font-size: 17px;
  }

  .tg-brochure-btn {
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 14px;
    display:none;
  }

  .tg-nav-list {
    gap: 48px;
    padding: 20px 0;
  }

  .tg-nav-item a {
    font-size: 1.2rem !important;
  }
}

/* ---------------------------------------------------
   SMALL MOBILE (<480px) 
---------------------------------------------------- */
@media (max-width: 480px) {
  .tg-search-wrapper {
    display: none;
  }
  .tg-category-select {
    max-width: 45%;
  }

  .tg-search-input {
    font-size: 14px;
    padding: 6px;
  }
}

/* ---------------------------------------------------
   TINY DEVICES (<360px) 
---------------------------------------------------- */
@media (max-width: 360px) {
  .tg-search-wrapper {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .tg-category-select,
  .tg-search-input {
    width: 100%;
    max-width: 100%;
  }

  .tg-search-icon {
    align-self: flex-end;
    margin-right: 3px;
  }
}

/* -----------------------------
   BROCHURE BUTTON
------------------------------ */
.tg-brochure-btn {
  background: #1e1e1e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  /*display: flex;*/
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display:none !important;
}

.tg-brochure-btn:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  background: #000;
}

/* -----------------------------
   NAV MENU
------------------------------ */
.tg-nav {
  border-top: 1px solid #eee;
}

.tg-nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
  /*padding: 15px 0;*/
    padding: 7px 0;

  list-style: none;
  align-items: center;
  justify-content: center;
  margin-bottom:0px;
}

.tg-nav-item a {
  color: #444;
  text-decoration: none;
  font-size: 13.9px;
  transition: 0.2s;
  text-transform:uppercase;
  font-weight:500;
}

.tg-nav-item a.active,
.tg-nav-item a:hover {
  color: var(--clr-accent);
}

/* Hot Deals - Base */
.tg-hot a {
  color: #000;
  font-weight: 700;
  padding: 6px 14px;
  border: none;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* Hover Animation */
.tg-hot a:hover {
  background-color: var(--clr-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(199, 55, 43, 0.25);
}

.tg-hot a:hover i {
  color: #fff;
}

/* Icon color follows text color */
.tg-hot a i {
  color: var(--clr-accent);
  transition: color 0.3s ease;
}

/* -----------------------------
   Sub menu
------------------------------ */
.products-menu {
  position: static !important;
}
.products-menu .tg-mega-menu {
  top: 100%;
}
.tg-navbar,
.tg-nav-list {
  position: relative;
}

.tg-mega-menu {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  position: absolute;
  top: 100%;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  /*padding: 25px 0;*/
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 9999;
    padding: 10px 0;

}

/* When open */
.tg-mega-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Mega inner */
.tg-mega-inner {
  display: flex;
  justify-content: space-evenly;
  gap: 30px;
}

.tg-mega-col h4 {
  font-size: 13.8px;
  margin-bottom: 12px;
  color: #c7372b;
}

.tg-mega-col a {
  display: block;
  color: #333;
  margin-bottom: 6px;
  font-size: 13.8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.tg-mega-col a:hover {
  color: #c7372b;
  padding-left: 1px;
}

.tg-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--clr-dark);
}
@media (max-width: 992px) {
  .tg-hamburger {
    display: block;
  }

  .tg-nav-list {
    display: none !important;
  }
}

/* -----------------------------
   Mobile Responsive
------------------------------ */

.tg-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: #fff;
  padding: 25px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
  z-index: 99999;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Scrollbar width */
.tg-mobile-menu::-webkit-scrollbar {
  width: 8px;
}

/* Scrollbar track */
.tg-mobile-menu::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
}

/* Scrollbar thumb */
.tg-mobile-menu::-webkit-scrollbar-thumb {
  background: #c7372b; /* your accent color */
  border-radius: 10px;
}

/* Hover on thumb */
.tg-mobile-menu::-webkit-scrollbar-thumb:hover {
  background: #a52c22;
}

.tg-mobile-menu.open {
  right: 0;
}

.tg-mobile-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000;
  border: none;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999999;
  transition: 0.3s ease;
}

.tg-mobile-close:hover {
  background: #c7372b;
}

.tg-mobile-nav-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 15px;
}

.tg-mobile-nav-list li {
  margin-bottom: 18px;
}

.tg-mobile-nav-list a {
  text-decoration: none;
  color: #222;
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform:uppercase;
}
.tg-mobile-nav-list .active {
  color: var(--clr-accent);
}
.tg-mobile-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 10px;
  border-left: 2px solid var(--clr-accent);
}

.tg-mobile-submenu a {
  font-size: 16px;
  margin-bottom: 8px;
}

.tg-mobile-sub-btn.active + .tg-mobile-submenu {
  display: block;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
    transform: none !important;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    position: static;
  }
}
/* Hide top info bar on mobile */
@media (max-width: 992px) {
  .top-info-bar {
    display: none !important;
  }
}

/* Mobile bottom info section inside mobile menu */
.tg-mobile-menu {
  /* display: flex;
  flex-direction: column; */
  height: 100vh;
  overflow-y: auto;
  padding: 25px;
  width: 80%;
  max-width: 340px;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.35s ease;
}

.tg-mobile-info .info-unit {
  margin-bottom: 12px;
  font-size: 13px;
}
/* Mobile submenu section titles */
.tg-mobile-submenu h4 {
  font-size: 13px;
  color: #c7372b;
  margin-top: 15px;
  margin-bottom: 8px;
  text-transform:uppercase;
}

/* Mobile submenu links */
.tg-mobile-submenu a {
  display: block;
  font-size: 13px;
  color: #333;
  padding: 4px 0;
}

.tg-mobile-submenu a:hover {
  color: #c7372b;
  padding-left: 2px;
}

/* -------------------------
   HERO SLIDER
-------------------------- */

.hero-slider,
.hero-slide {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero_main {
  position: relative;
  overflow: visible;
}
.hero-slider {
  width: 100%;
  height: 50vh;
  min-height: 450px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

/* Slide Background */
.hero-slide {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark Overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* Text Block */
.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 570px;
  z-index: 5;
}

.hero-content h2 {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slider {
    height: 60vh;
    min-height: 390px;
  }

  .hero-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    height: 55vh;
    min-height: 350px;
  }

  .hero-content {
    left: 6%;
    max-width: 85%;
  }

  .hero-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .hero-slider {
    height: 75vh;
    min-height: 100%;
  }

  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  .hero-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  .hero-slider {
    height: 30vh;
    min-height: 100%;
  }

  .hero-content h2 {
    font-size: 19px;
    line-height: 1.25;
  }
}

/* -------------------------
   SLIDER DOTS (PAGINATION)
-------------------------- */
.swiper-pagination {
  bottom: -40px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bbb;
  opacity: 1;
  margin: 0 4px !important;
  transition: all 0.2s ease-in-out;
}

.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 10px;
  background: #c7372b;
}

/* Testimonial section */
.testimonials-section {
  position: relative;
  overflow: visible !important;
  padding: 10rem 0 5rem 0;
}

/* HEADER */
.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.sub-title {
  color: #252525;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #eee;
  padding: 10px 20px;
  border-radius: 50px;
}

.main-title {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #222;
  margin: 10px 0;
}

.main-title .highlight {
  position: relative;
}

.testimonal_shape {
  position: absolute;
  top: 0;
  left: calc(50% - 150px);
  z-index: -1;
  display: block;
}

.desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  color: #666;
}

@media screen and (max-width: 600px) {
  .testimonials-section {
    padding: 5rem 0 2rem 0;
  }
  .main-title {
    font-size: 2rem;
  }

  .sub-title {
    font-size: 10px;
  }

  .desc {
    font-size: 13px;
  }
  .testimonal_shape {
    left: calc(50% - 100px);
    width: 150px;
    bottom: 0;
    top: auto;
  }
}

/* SWIPER SLIDER */
.testimonial-slider {
  overflow: hidden;
  padding-bottom: 40px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  margin: auto;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
  text-align: left;
  position: relative;
}

/* Avatar (grayscale + ring) */
.t-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 4px solid #2b68ff;
  margin-bottom: 15px;
}

/* Quote icon */
.quote {
  font-size: 55px;
  color: #c7372b;
  line-height: 1;
  margin-bottom: 12px;
}

/* Card text */
.testimonial-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Name + role */
.testimonial-card h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.role {
  font-size: 13px;
  color: #999;
}

/* Navigation buttons */
.testimonial-nav {
  text-align: center;
  margin-top: 25px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: transparent;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #c7372b;
  color: #fff;
}

/* CARD */
.t-card {
  background: #fff;
  border-radius: 30px;
  padding: 35px;
  display: flex;
  gap: 25px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
}

/* LEFT SIDE */
.t-left {
  position: relative;
  width: 160px;
  flex-shrink: 0;
}

/* Avatar */
.t-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  position: relative;
  z-index: 2;
}

/* Grid */
.t-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-image: url("../../images/Frame 2121453984.png");
  background-size: cover;
  z-index: 1;
}

/* RIGHT SIDE */
.t-right {
  flex: 1;
}

/* Quote icon */
.t-quote {
  display: flex;
  font-size: 10rem;
  font-weight: 700;
  color: #c7372b;
  line-height: 0.6;
  margin-bottom: 0;
  font-family: "Arial Nova", Arial, sans-serif;
  padding: 0;
}

/* Testimonial text */
.t-text {
  font-size: 14px;
  color: #333;
  line-height: 1.55;
  margin-bottom: 30px;
}

/* Bottom section */
.t-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* User info */
.t-user h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.t-user span {
  color: #999;
  font-size: 13px;
}

/* Verified */
.t-verified {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #c7372b;
}

.t-verified i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .t-card {
    flex-direction: column;
    text-align: left;
    padding: 28px;
    position: relative;
  }

  .t-left {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .t-quote {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3rem;
    pointer-events: none;
  }

  .t-text {
    margin-top: 10px;
    font-size: 13px;
  }
}

/* Footer section */
/* Footer Base */
.tg-footer {
  background: #111;
  color: #e6e6e6;
  padding: 60px 0 0;
  /*font-family: "Lato", sans-serif;*/
  border-bottom: 2px solid #333;
}

/* Footer Brand Logo */
.brand-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.brand-logo {
  display: inline-block;
  text-decoration: none;
}

/* Footer subscribe row */
.footer-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between; /* heading left, form right */
  gap: 20px;
  flex-wrap: nowrap;
  padding: 0;
  box-sizing: border-box;
}

/* heading */
.footer-subscribe h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

/* subscribe box (input + button) aligned right */
.subscribe-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.subscribe-box input {
  display: block;
  min-width: 200px;
  max-width: 620px;
  width: 500px;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}

/* submit button */
.subscribe-box button {
  background: #c7372b;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
}

@media screen and (max-width: 991px) {
  .subscribe-box input {
    width: 100%;
  }
}

/* responsive behavior: stack on small screens */
@media (max-width: 760px) {
  .footer-subscribe {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .footer-subscribe h2 {
    white-space: normal;
    text-align: left;
  }

  .subscribe-box {
    justify-content: flex-start;
    width: 100%;
  }

  .subscribe-box input {
    width: 100%;
    max-width: 100%;
  }

  .subscribe-box button {
    margin-left: 10px;
  }

  @media (max-width: 420px) {
    .footer-subscribe h2 {
      font-size: 18px;
    }
    .subscribe-box input {
      font-size: 13px;
    }
    .subscribe-box {
      flex-direction: column;
      gap: 8px;
      align-items: stretch;
    }
    .subscribe-box button {
      margin-left: 0;
      width: 100%;
    }
  }
}
/* Divider */
.tg-footer hr {
  border-color: #fff;
  margin: 30px 0;
}

/* Footer Content Layout */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* Brand block */
.brand-name {
  font-size: 34px;
  font-weight: 700;
  color: #c7372b;
  /*font-family: "Playfair Display", serif;*/
}

.footer-brand {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.footer-brand p {
  margin-top: 10px;
  color: #cfcfcf;
  line-height: 1.6;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 600px) {
  .footer-brand p {
    font-size: 13px;
  }
  .footer-links .col h4 {
    font-size: 14px !important;
  }
  .footer-links .col a {
    font-size: 13px !important;
  }
}

/* Links Columns */
.footer-links {
  display: flex;
  gap: 60px;
  flex: 2;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 600px;
}

.footer-links .col h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links .col a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links .col a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.foot-links a {
  margin-right: 20px;
  color: #ccc;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.foot-links a:hover {
  color: #fff;
}

@media screen and (max-width: 600px) {
  .foot-links {
    padding-left: 15px;
  }
}

/* Social Icons */
.socials i {
  font-size: 20px;
  margin-left: 18px;
  cursor: pointer;
  color: #e6e6e6;
  transition: 0.3s;
}

.socials i:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-content {
    display: block;
  }
  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .footer-subscribe {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscribe-box input {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
  .footer-subscribe {
    padding: 0;
  }

  .brand-logo img {
    height: 20px;
    margin-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .socials {
    margin: 0 auto;
  }
}
/* Breadcrumbs Area */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 10rem;
    font-family: "Raleway", sans-serif;

  /*font-family: Inter, system-ui, sans-serif;*/
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  color: #7c7c7c;
  border-top: 1px solid #e9e9e9;
  border-bottom: none;
  margin-bottom: 0px;
  text-transform:uppercase;
}

.breadcrumb a {
  text-decoration: none;
  color: #6f6f6f;
  font-weight: 400;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: #444;
}

.breadcrumb .divider {
  color: #bfbfbf;
  font-size: 12px;
  margin: 0 2px;
}

.breadcrumb .active {
  color: #df1316;
  font-size: 12px;
}

/* Responsive screens */
@media (max-width: 575px) {
  .breadcrumb {
    padding: 1rem 1.2rem;
    gap: 6px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .breadcrumb a,
  .breadcrumb .active {
    font-size: 12px;
  }

  .breadcrumb .divider {
    font-size: 12px;
    margin: 0 1px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .breadcrumb {
    padding: 1rem 2rem;
    gap: 8px;
  }

  .breadcrumb a,
  .breadcrumb .active {
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb {
    padding: 1.1rem 4rem;
  }

  .breadcrumb a,
  .breadcrumb .active {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .breadcrumb {
    padding: 1.2rem 7rem;
  }
}

.product-banner {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.banner-content {
  position: absolute;
  width: 50%;
  padding-left: 10rem;
  color: #fff;
  z-index: 2;
}

.banner-title {
      font-family: "Raleway", sans-serif;

  /*font-family: "Playfair Display SC", serif;*/
  font-size: 58px;
  font-weight: 400;
  margin-bottom: 22px;
  font-style: italic;
}

#hot_deals {
  left: 50%;
  transform: translateX(-50%);
}

.banner-desc {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.6rem;
  color: #f3f3f3;
}

.banner-image img {
  /* width: 90%; */
  height: 100%;
  object-fit: cover;
}

/* Responsive style */
@media (max-width: 768px) {
  .product-banner {
    flex-direction: column;
    height: 50vh;
  }

  .banner-content {
    position: absolute;
    width: 100%;
    padding: 0 1rem;
    text-align: center;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .banner-title {
    font-size: 36px;
  }

  .banner-desc {
    max-width: 100%;
    font-size: 15px;
  }

  .banner-image {
    width: 100%;
    height: 100%;
    background-position: center center;
  }
  .banner-image img {
    width: 100%;
  }

  .product-banner::before {
    width: 100%;
  }
}

/* MAIN LAYOUT */
.tg-prod-section {
  padding: 30px 0;
}

.tg-prod-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* FILTER PANEL */
/* Wrapper */
.tg-filter-box {
  width: 260px;
  padding: 10px;
    font-family: "Raleway", sans-serif;

  /*font-family: "Inter", sans-serif;*/
}

/* Title */
.tg-filter-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle */
.tg-filter-subtitle {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* Real select hidden UI but still functional */
.tg-filter-select {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  left: 10px;
}

.tg-filter-select:focus {
  outline: none;
}
.tg-filter-select-box {
  position: relative;
  height: 50px;
  overflow: hidden;
}
.tg-filter-select-box i {
  position: absolute;
  right: 15px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
}

/* Price Values */
.tg-price-values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #6a6a6a;
  margin-bottom: 20px;
}

/* Select Boxes */
.tg-filter-select-box {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 14px 15px;
  border-radius: 10px;
  font-size: 15px;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.tg-filter-select-box i {
  font-size: 14px;
  color: #555;
}

/* Select all row */
.tg-select-all-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}

.tg-select-all-row i {
  color: #bfbfbf;
  font-size: 15px;
}

/* Color Buttons */
.tg-color-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}

.tg-color-option {
  padding: 10px 0;
  border: 1px solid #f2baba;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  background: #fff;
  color: #c7372b;
}

.tg-color-option.active {
  background: #f7dede;
  border-color: #e1a4a4;
}

/* Show More */
.tg-show-more {
  background: none;
  border: none;
  color: #d12c2c;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 25px;
}

/* FILTER BUTTON */
.tg-filter-btn {
  width: 100%;
  background: #e11414;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

/* RESET BUTTON */
.tg-reset-btn {
  width: 100%;
  background: none;
  border: none;
  color: #d12c2c;
  font-size: 14px;
  cursor: pointer;
}
/* Container */
.tg-price-slider {
  position: relative;
  height: 40px;
}

/* Remove default browser styling */
.tg-price-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  width: 100%;
  height: 24px;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/* Remove default track */
.tg-price-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.tg-price-slider input[type="range"]::-moz-range-track {
  background: transparent;
}

/* Custom track (grey) */
.tg-slider-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: #d0d0d0;
  width: 100%;
  border-radius: 5px;
  z-index: 1;
}

/* Active range (red section) */
.tg-slider-track.active {
  background: linear-gradient(
    to right,
    #d0d0d0 var(--minPos),
    #e42222 var(--minPos),
    #e42222 var(--maxPos),
    #d0d0d0 var(--maxPos)
  );
}

/* Red thumbs */
.tg-price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  background: #e42222;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  top: 0;
}

.tg-price-slider input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  background: #e42222;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  pointer-events: auto;
}

/* Card Wrapper */
.tg-prod-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height:100%;
  margin:0px;
}
.tg-prod-card .tg-prod-btn{
    display:none;
}

.tg-prod-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Image */
.tg-prod-img {
  flex-shrink: 0;
}

.tg-prod-img {
  width: 100%;
  height: 150px;
  border-radius: 14px;
}
@media screen and (min-width: 1920px) {
  .tg-prod-img {
    height: 250px;
  }
}
@media screen and (max-width: 600px) {
    .tg-prod-card{
        height:auto;
    }
  .tg-prod-img {
    height: 90%;
  }
}

.tg-prod-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  /*object-fit: cover;*/
}
.tg-prod-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 12px;
}

/* Title */
.tg-prod-title > a {
  margin-top: 11px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  /*letter-spacing: 1px;*/
  text-transform:uppercase;
}

/* Color Dots */
.tg-prod-colors {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tg-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  border: 2px solid transparent;
  cursor: pointer;
}

.tg-color-dot.active {
  border: 2px solid #c7372b;
}

/* Price */
.tg-prod-price {
  margin-top: 5px;
  text-align: center;
  margin-bottom: 10px;
}

.tg-price-main {
  font-size: 18px;
  font-weight: 700;
  color: #c7372b;
}

.tg-price-sub {
  font-size: 11px;
  color: #c7372b;
  margin-left: 4px;
}

/* Button */
.shownumber{
    font-size: 0.9rem;
    color: #9c9898;
}
.product-main-area .tg-prod-btn {
  margin-top: auto;
  width: 28% !important;
  padding: 12px;
  border-radius: 0px;
  border: 2px solid #c7372b;
  background: #c7372b;
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tg-prod-btn {
  margin-top: auto;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid #c7372b;
  background: transparent;
  color: #c7372b;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tg-prod-btn:hover {
  background: #c7372b;
  color: #fff;
}

.tg-prod-colors.empty {
  visibility: hidden;
}
.tg-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.tg-pagination-info {
  color: #a3a3a3;
  font-size: 15px;
  margin: 0;
}

.tg-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-page-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: #f2e7e7;
  color: #c7372b;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tg-page-btn:hover {
  background: #dfcaca;
}

.tg-page-btn.active {
  background: #c7372b;
  color: #fff;
}

.tg-page-btn.dots {
  pointer-events: none;
  background: #e8dada;
  color: #b75555;
}

@media (max-width: 600px) {
  .tg-pagination-wrapper {
    justify-content: center; /* center everything */
    text-align: center;
  }

  .tg-pagination-info {
    width: 100%;
    font-size: 14px;
    text-align: left;
  }

  .tg-pagination {
    gap: 8px; /* tighter space */
  }

  .tg-page-btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 400px) {
    .tg-prod-card{
        height:auto;
    }
  .tg-page-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
    border-radius: 8px;
  }

  .tg-pagination {
    gap: 6px;
  }
}

/* BRANDS SECTION */
.tg-brand-slider-section {
  padding: 3rem 0;
  position: relative;
}

/* slick slide wrapper override */
#tgBrandSlider {
  display: block;
}

/* slide */
.tg-brand-slide {
    display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  background-color: #fff;
  margin-right: 10px;
}
.tg-brand-logo {
  /*max-width: 180px;*/
  /*max-height: 120px;*/
  width:150px;
 height:150px;
  /*height: 100%;*/
  width: auto;
  display: block;
  /* filter: grayscale(100%); */
  opacity: 1;
  object-fit: contain;
  transform: scale(0.9);
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

/* hover restores color */
/*.tg-brand-slide:hover .tg-brand-logo,
.tg-brand-logo:focus {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
}*/

/* nav buttons */
.tg-brand-prev,
.tg-brand-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  border: none;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.15s ease;
}
.tg-brand-prev:hover,
.tg-brand-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

/* left/right positions */
.tg-brand-prev {
  left: 12px;
}
.tg-brand-next {
  right: 12px;
}

/* responsive adjustments */
@media (max-width: 1400px) {
  .tg-brand-logo {
    max-height: 100px;
  }
}
@media (max-width: 1024px) {
  .tg-brand-logo {
    max-height: 100px;
  }
}
@media (max-width: 768px) {
    .tg-prod-card{
        height:auto;
    }
  .tg-brand-logo {
    max-height: 100%;
  }
  .tg-brand-prev,
  .tg-brand-next {
    width: 34px;
    height: 34px;
    left: 8px;
    right: 8px;
  }
}
@media (max-width: 480px) {
    .slick-slide img{
        width:100px;
        height:100px;
    }
  .tg-brand-logo {
    /*max-height: 100px;*/
    height:100px;
    width:100px;
    /*max-width: 150px;*/
    align-items: center;
  }
  .tg-brand-prev,
  .tg-brand-next {
    display: none;
  } /* hide arrows on very small screens if you prefer */
}

/* ensure slick dots/arrows are not overlaying incorrectly */
.slick-slide {
  outline: none;
}

/* PRODUCT HEADER SECTION */
.tg-prod-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*margin-bottom: 25px;*/
  margin-bottom:9px;
  padding: 0 2px;
}

.tg-prod-heading {
  font-size: 1.5rem;
  color: #444343;
  margin: 0;
}

/* Sort wrapper */
.tg-prod-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* "Show by" label */
.tg-sort-label {
  font-size: 15px;
  color: #9a9a9a;
}

/* Custom select wrapper */
.tg-sort-select-box {
  position: relative;
  min-width: 150px;
  background: transparent;
}

/* Hide default select arrow */
.tg-sort-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 6px 26px 6px 6px;
  border: none;
  font-size: 16px;
  background: transparent;
  color: #111;
  cursor: pointer;
}

/* Arrow icon */
.tg-sort-select-box i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #111;
  font-size: 14px;
}

/* Remove outline */
.tg-sort-select:focus {
  outline: none;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .tg-prod-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tg-prod-heading {
    font-size: 26px;
  }

  .tg-sort-select {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .tg-filter-box {
    display: none;
  }

  .tg-prod-container {
    display: block;
  }
}

/* MOBILE FILTER MODAL */
/* FLOATING FILTER BUTTON */
.tg-prod-right {
  position: sticky;
  top: 90px;
  align-self: end;
  height: fit-content;
  display: none;
  z-index: 2;
}
.tg-filter-float-btn {
  position: sticky;
  bottom: 0;
  right: 0;
  float: right;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;

  background: #c7372b;
  color: #fff;
  font-size: 22px;

  display: none;
  justify-content: center;
  align-items: center;

  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);

  cursor: pointer;
  z-index: 50;
}

.tg-filter-float-btn:active {
  transform: scale(0.92);
}

/* HIDE FLOATING BUTTON ON DESKTOP */
@media screen and (max-width: 768px) {
  .tg-prod-right {
    display: block;
  }
  .tg-filter-float-btn {
    display: inline-flex;
  }
}

/* MODAL OVERLAY */
.tg-filter-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  justify-content: flex-end;
  z-index: 9999;
}

/* Show modal */
.tg-filter-modal.open {
  display: flex;
}

/* MODAL PANEL */
.tg-filter-modal-inner {
  position: absolute;
  width: 100%;
  max-height: 90vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  bottom: 0;
}

/* Close button */
.tg-filter-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f1f1;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.tg-filter-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: #c7372b;
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  border: 2px solid #c7372b;
  pointer-events: none;
}

/* Animation */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.tg-filter-box-mobile {
  margin-top: 30px;
}

.pd-container {
  display: flex;
  gap: 40px;
  max-width: 100%;
  margin: 40px auto;
    font-family: "Raleway", sans-serif;

  /*font-family: "Inter", sans-serif;*/
}

/* ---------------- LEFT ---------------- */
.pd-left {
  display: flex;
  width: 48%;
  gap: 20px;
}

.pd-main-img {
  width: 80%;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid #eee;
}

@media screen and (min-width: 1920px) {
  .pd-main-img {
    width: 90%;
  }
}

.pd-thumbs {
  position: relative;
  display: block;
  height: 100%;
  width: 80px;
}

.pd-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  object-fit: cover;
  margin-top: 10px;
}

.pd-thumb.active {
  border-color: #c7372b;
}

.pd-more {
  background: #b3b3b3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ---------------- RIGHT ---------------- */

.pd-right {
  width: 50%;
}

.pd-price {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.pd-old-price {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: "Raleway", sans-serif;
}
.pd-old-price p {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  margin-top: 15px;
}

.pd-old-price span {
  text-decoration: none !important;
  background: #ffdddd;
  padding: 2px 8px;
  color: #d12c2c;
  border-radius: 6px;
  font-size: 14px;
}

.pd-title {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0;
  font-family: "Raleway", sans-serif;
}

.pd-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  font-family: "Raleway", sans-serif;
}

.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}
#star_ico {
  color: #f9d423;
}

.pd-rating-text,
.pd-sold {
  color: #666;
  font-size: 15px;
}

/* Colors */
.pd-color-section {
  margin-top: 20px;
}

.pd-colors {
  display: flex;
  gap: 12px;
  margin: 10px 0;
}

.pd-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #d0caca;
}

.pd-color-dot.active {
  border-color: #c7372b;
}

.pd-color-name {
  font-size: 16px;
  color: #333;
}

/* Enquiry icons */
.pd-enquire-section {
  /* margin-top: 25px; */
}

.pd-enq-icons {
  display: flex;
  gap: 10px;
}

.pd-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.pd-label {
  margin-bottom: 10px;
}

.pd-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.25s ease-in-out;
}

.pd-icon:hover i {
  transform: scale(0.9);
  filter: brightness(1.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pd-icon.whatsapp i {
  background-color: #40c351;
  color: #fff;
}

.pd-icon.link i {
  background-color: #4a4a4a;
  color: #fff;
}

.pd-icon.email i {
  background-color: #4a4a4a;
  color: #fff;
}

.pd-icon span {
  font-size: 10px;
  margin-top: 5px;
}

/* Badges */
.pd-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 25px;
}

.pd-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

/* ===============================================
   TABLET (≤1024px)
   =============================================== */
@media (max-width: 1024px) {
  .pd-container {
    flex-direction: column;
    gap: 30px;
  }

  .pd-left,
  .pd-right {
    width: 100%;
  }

  .pd-left {
    justify-content: center;
  }

  .pd-main-img {
    width: 85%;
  }

  .pd-thumbs {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .pd-title {
    font-size: 24px;
  }

  .pd-desc {
    font-size: 15px;
  }

  .pd-price {
    font-size: 36px;
  }
}

/* ===============================================
   MOBILE (≤768px)
   =============================================== */
@media (max-width: 768px) {
  .pd-container {
    padding: 0 12px;
  }

  .pd-left {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .pd-main-img {
    width: 100%;
    max-width: 400px;
  }

  .pd-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }

  .pd-thumb {
    width: 55px;
    height: 55px;
  }

  .pd-price {
    font-size: 32px;
  }

  .pd-old-price p {
    font-size: 16px;
  }

  .pd-title {
    font-size: 22px;
  }

  .pd-rating-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pd-color-section .row {
    flex-direction: column;
  }

  .pd-enq-icons {
    margin-top: 10px;
  }

  .pd-icon i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .pd-badges {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   SMALL MOBILE (≤480px)
   =============================================== */
@media (max-width: 480px) {
  .pd-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .pd-desc {
    font-size: 14px;
  }

  .pd-price {
    font-size: 28px;
  }

  .pd-old-price p {
    font-size: 14px;
  }

  .pd-thumb {
    width: 48px;
    height: 48px;
  }

  .pd-main-img {
    max-width: 320px;
  }

  .pd-rating-text,
  .pd-sold {
    font-size: 13px;
  }

  .pd-color-name {
    font-size: 14px;
  }

  .pd-icon i {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .pd-icon span {
    font-size: 9px;
  }

  .pd-badge {
    font-size: 14px;
  }
}
/* ------------------------------------
   CUSTOM SIDE-BY-SIDE COLOR + ENQUIRY
-------------------------------------- */

.pd-color-enquiry-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  flex-wrap: nowrap;
  width: 100%;
}

.pd-color-col,
.pd-enquiry-col {
  flex: 1;
  min-width: 0;
}

/* ---------- Mobile Scaling ---------- */
@media (max-width: 600px) {
  .pd-color-enquiry-row {
    gap: 12px;
  }

  .pd-label {
    font-size: 13px;
  }

  .pd-colors {
    gap: 8px;
  }

  .pd-color-dot {
    width: 22px;
    height: 22px;
  }

  .pd-color-name {
    font-size: 13px;
  }

  /* enquiry icons scale down */
  .pd-enq-icons {
    margin-top: 20px;
    gap: 8px;
  }

  .pd-icon i {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .pd-icon span {
    font-size: 9px;
  }
}

/* Ultra-small screens */
@media (max-width: 380px) {
  .pd-color-enquiry-row {
    flex-wrap: wrap; /* allow stacking only below 380px */
  }

  .pd-color-col,
  .pd-enquiry-col {
    width: 100%;
  }
}

/* MAIN WRAPPER */
.rp-section {
  padding: 40px 0;
}

.rp-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* LEFT SIDEBAR */
.rp-left {
  width: 250px;
  background: #c7372b;
  padding: 40px 35px;
  border-radius: 0 20px 20px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rp-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
}

.rp-sub {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.9;
}

/* CONTROL AREA */
.rp-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rp-more {
  font-size: 16px;
  cursor: pointer;
}

.rp-progress {
  width: 90px;
  height: 4px;
  background: #2d2d2d;
  border-radius: 20px;
  overflow: hidden;
}

.rp-progress-bar {
  width: 40px;
  height: 100%;
  background: #fff;
}

/* ARROWS */
.rp-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #c7372b;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
}

.rp-arrow:hover {
  transform: scale(1.08);
  background: #ffeaea;
}

/* RIGHT SLIDER */
.rp-slider {
  display: flex;
  gap: 25px;
  padding: 30px 20px;
  scroll-behavior: smooth;
  overflow-x: auto;
}

/* Custom scrollbar for rp-slider */
.rp-slider::-webkit-scrollbar {
  height: 8px;
}

.rp-slider::-webkit-scrollbar-track {
  background: transparent;
}

.rp-slider::-webkit-scrollbar-thumb {
  background: #c7372b;
  border-radius: 20px;
}

.rp-slider::-webkit-scrollbar-thumb:hover {
  background: #a52b22;
}

/* Firefox support */
.rp-slider {
  scrollbar-width: thin;
  scrollbar-color: #c7372b transparent;
}

/* PRODUCT CARD */
.rp-card {
  width: 250px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #fff;
  transform: scale(0.98);
  transition: transform 0.35s ease;
  border:1px solid #c1bbbb;
  padding:10px;
}

.rp-card:hover {
  transform: scale(1.1);
}

/* IMAGE */
.rp-card img {
  width: 100%;
  /*height: 350px;*/
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* BUTTON */
.rp-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #c7372b;
  color:white;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

/* Show button on hover */
.rp-card:hover .rp-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-4px);
}

.rp-prev.disabled,
.rp-next.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rp-container {
    flex-direction: column;
  }

  .rp-left {
    width: 100%;
    border-radius: 0px;
    align-items: center;
  }

  .rp-slider {
    overflow-x: scroll;
  }
}

/* MODAL */
.pd-image-modal {
  position: fixed;
  inset: 0;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 120000;
  padding: 20px;
}

/* when open */
.pd-image-modal.open {
  display: flex;
}

/* close button */
.pd-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 120001;
}

/* inner layout */
.pd-modal-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1200px, 100%);
  max-width: 1200px;
  height: min(80vh, 900px);
  position: relative;
}

/* nav buttons */
.pd-modal-nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* main image area */
.pd-modal-main {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  /*max-height: 100%;*/
  max-height:fit-content;
  overflow: hidden;
}

/* modal main image */
.pd-modal-img {
  max-width: 400px;
  max-height: calc(100% - 110px);
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

/* thumbs row inside modal */
.pd-modal-thumbs {
  display: flex;
  gap: 10px;
  /*overflow-x: auto;*/
  padding: 8px 6px 40px;
  width: 100%;
  justify-content: flex-start;
}

.pd-modal-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  flex: 0 0 auto;
}

.pd-modal-thumbs img.active {
  border-color: #c7372b;
}

/* responsive */
@media (max-width: 768px) {
  .pd-modal-inner {
    gap: 12px;
    height: 85vh;
  }
  .pd-modal-nav {
    width: 42px;
    height: 42px;
  }
  .pd-modal-thumbs img {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 992px) {
  /* Main container changes to column */
  .pd-container {
    flex-direction: column;
    gap: 30px;
  }

  /* Left section full width */
  .pd-left {
    width: 100%;
    justify-content: center;
  }

  .pd-main-img {
    width: 90%;
    max-height: 420px;
    object-fit: contain;
  }

  .pd-thumbs {
    /*display: flex;*/
    display:block;
    flex-direction: row;
    gap: 12px;
    margin-top: 12px;
    height: auto;
  }

  .pd-thumb {
    width: 60px;
    height: 60px;
  }

  .pd-right {
    width: 100%;
  }

  .pd-title {
    font-size: 24px;
  }

  .pd-desc {
    font-size: 15px;
  }

  .pd-price {
    font-size: 34px;
  }

  .pd-color-section .row {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  /* Enquire icons shrink */
  .pd-enq-icons {
    gap: 8px;
  }

  .pd-icon i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .pd-icon span {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .pd-main-img {
    max-height: 300px;
  }

  .pd-modal-img {
    max-width: 200px;
  }

  .pd-thumb {
    width: 48px;
    height: 48px;
  }

  .pd-price {
    font-size: 24px;
  }

  .pd-title {
    font-size: 18px;
  }

  .pd-desc {
    font-size: 13px;
  }

  .pd-color-dot {
    width: 20px;
    height: 20px;
  }

  .pd-icon i {
    width: 34px;
    height: 34px;
  }

  .pd-icon span {
    font-size: 8px;
  }
}

#all_products_banner {
  position: relative;
}
#all_products_banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  background: linear-gradient(
    -280deg,
    rgba(0, 0, 0, 0.725) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}
#all_products_banner .banner-image > img {
  width: 100%;
  object-position: center -100px;
}

@media screen and (max-width: 600px) {
  #all_products_banner .banner-image > img {
    object-position: center center;
  }

  #all_products_banner .banner-content {
    top: 50%;
  }
}

/* Wrapper */
.tg-price-filter {
  width: 100%;
  max-width: 100%;
}

.tg-slider {
  width: 100%;
  overflow: visible;
}

.tg-filter-box,
.tg-filter-box-mobile {
  overflow: visible;
}

/* Slider container */
.tg-slider {
  position: relative;
  height: 32px;
  margin: 16px 0;
  user-select: none;

  touch-action: none;
  z-index: 10;
}

/* Base track (grey) */
.tg-slider-track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 100%;
  background: #d0d0d0;
  border-radius: 6px;
}

/* Active range (red section) */
.tg-slider-range {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: #e42222;
  border-radius: 6px;
}

/* Thumbs */
.tg-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 20px;
  background: #e42222;
  border-radius: 50%;
  cursor: pointer;

  touch-action: none;
  z-index: 11;
}

/* Optional hover / active effect */
.tg-thumb:hover {
  box-shadow: 0 0 0 6px rgba(228, 34, 34, 0.2);
}

.tg-thumb:active {
  box-shadow: 0 0 0 8px rgba(228, 34, 34, 0.25);
}

/* Price text */
.tg-price-values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.tg-filter-box-mobile {
  overscroll-behavior: contain;
}
