/* ========== Google Fonts ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== CSS Variables ========== */
:root {
  --primary: #ed2f39 ;
  --primary-dark: #A05E2C;
  --primary-light: #E8A66A;
  --secondary: #3D2C1E;
  --dark: #1A1A1A;
  --dark-brown: #2C1E12;
  --medium-brown: #5C4033;
  --light-brown: #8B6F4E;
  --cream: #F5F0EB;
  --beige: #EDE4DA;
  --off-white: #fff8ed;
  --white: #FFFFFF;
  --grey-100: #F7F7F7;
  --grey-200: #E8E8E8;
  --grey-300: #D1D1D1;
  --grey-500: #888888;
  --grey-700: #444444;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* ========== Utility ========== */
.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-500);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1.2rem;
}

.accent-line-center {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 1.2rem;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 121, 65, 0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== Navbar ========== */
.navbar-custom {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.navbar-custom .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-custom .navbar-brand span {
  color: var(--primary);
}

.navbar-custom .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--grey-700);
  padding: 15px 16px !important;
  font-size: 0.92rem;
  position: relative;
  letter-spacing: 0.3px;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-custom .nav-link:hover {
  color: var(--primary);
}

.navbar-top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
}

.navbar-top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-top-bar a:hover {
  color: var(--primary-light);
}

.navbar-top-bar i {
  color: var(--primary-light);
  margin-right: 5px;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icons a {
  color: var(--grey-700);
  font-size: 1.1rem;
}

.nav-icons a:hover {
  color: var(--primary);
}

/* ========== Mega Menu ========== */
.mega-dropdown {
  position: static !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  padding: 30px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1050;
}

.mega-dropdown:hover>.mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-sm {
  padding: 24px 0;
}

.mega-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-200);
}

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

.mega-links li {
  margin-bottom: 8px;
}

.mega-links li a {
  color: var(--grey-700);
  font-size: 0.9rem;
  transition: var(--transition);
  display: block;
  padding: 3px 0;
}

.mega-links li a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.mega-img-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.mega-img-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}

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

.mega-img-card span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}

.mega-img-card:hover span {
  color: var(--primary);
}

/* Sale button in nav */
.nav-sale-btn {
  background: #C62828 !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 6px 18px !important;
  font-weight: 600 !important;
  margin-left: 5px;
  transition: var(--transition);
}

.nav-sale-btn:hover {
  background: #B71C1C !important;
  transform: scale(1.05);
}

/* Mega menu mobile */
@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    box-shadow: none;
    border-top: none;
    padding: 10px 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-left: 3px solid var(--primary);
    margin-left: 15px;
    background: var(--off-white);
  }

  .mega-dropdown.show>.mega-menu,
  .mega-dropdown:hover>.mega-menu {
    display: block;
  }

  .mega-img-card {
    display: none;
  }

  .mega-heading {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }

  .mega-links li a {
    padding: 5px 12px;
    font-size: 0.88rem;
  }

  .nav-sale-btn {
    display: inline-block;
    width: auto;
    margin: 5px 0;
  }
}

/* ========== Welcome / About Section ========== */
.welcome-section {
  background: var(--off-white);
}

.welcome-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.welcome-img-wrapper:hover img {
  transform: scale(1.05);
}

.welcome-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.welcome-gallery .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.welcome-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.welcome-gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.feature-check {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-check li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--grey-700);
}

.feature-check li i {
  color: var(--primary);
  font-size: 1rem;
}

/* ========== New Arrivals / Products ========== */
.new-arrivals-section {
  background: var(--white);
}

.product-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.product-card .product-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.product-card .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.product-card .product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card .product-actions a {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--dark);
  font-size: 0.85rem;
}

.product-card .product-actions a:hover {
  background: var(--primary);
  color: var(--white);
}

.product-card .product-body {
  padding: 18px;
}

.product-card .product-category {
  font-size: 0.78rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-card .product-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.product-card .product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

.product-card .product-price .old-price {
  font-size: 0.9rem;
  color: var(--grey-500);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.product-card .product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--grey-500);
}

.product-card .product-meta i {
  font-size: 0.7rem;
}

/* ========== Shop by Collection ========== */
.collection-section {
  background: var(--off-white);
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-card .collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  transition: var(--transition);
}

.collection-card:hover .collection-overlay {
  padding-bottom: 40px;
}

.collection-card .collection-overlay h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.collection-card .collection-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.collection-card .collection-overlay .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.collection-card:hover .collection-overlay .arrow-link {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Shop by Trade ========== */
.trade-section {
  background: var(--white);
}

.trade-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}

.trade-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.trade-card .trade-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.trade-card:hover .trade-icon {
  background: var(--primary);
  color: var(--white);
}

.trade-card h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.trade-card p {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin: 0;
}

/* ========== Stats / Counter ========== */
.stats-section {
  background: var(--secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.1;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 5px;
}

.stat-item .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

/* ========== Real Homes Gallery ========== */
.gallery-section {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* ========== FAQ Section ========== */
.faq-section {
  background: var(--white);
}

.faq-section .accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-section .accordion-item:hover {
  border-color: var(--primary-light);
}

.faq-section .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  padding: 18px 24px;
  background: var(--white);
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--primary);
}

.faq-section .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-section .accordion-body {
  padding: 0 24px 18px;
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========== Why Choose Us ========== */
.why-choose-section {
  background: var(--secondary);
  color: var(--white);
  position: relative;
}

.why-choose-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  height: 100%;
}

.why-choose-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.why-choose-card .wc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(200, 121, 65, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary-light);
  transition: var(--transition);
}

.why-choose-card:hover .wc-icon {
  background: var(--primary);
  color: var(--white);
}

.why-choose-card h5 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-choose-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* ========== Testimonials ========== */
.testimonial-section {
  background: var(--off-white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: #F5A623;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .tc-author .tc-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.testimonial-card .tc-author h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.testimonial-card .tc-author span {
  font-size: 0.82rem;
  color: var(--grey-500);
}

/* ========== CTA / Newsletter ========== */
.cta-section {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -100px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -150px;
  left: -50px;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-form button {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--dark);
}

/* ========== Footer ========== */
.footer {
  background: var(--dark-brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer .footer-contact li i {
  color: var(--primary-light);
  margin-top: 3px;
  font-size: 1rem;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ========== Scroll to Top ========== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar scrolled state */
.navbar-custom.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

/* Hero content entrance animations */
.hero-badge {
  animation: fadeSlideDown 0.8s 0.2s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content h1 {
  animation: fadeSlideDown 0.8s 0.4s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content>p {
  animation: fadeSlideDown 0.8s 0.6s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content .d-flex {
  animation: fadeSlideDown 0.8s 0.8s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stats {
  animation: fadeSlideUp 0.8s 1s both cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accent line animation */
.fade-in.visible .accent-line,
.fade-in.visible .accent-line-center {
  animation: accentGrow 0.6s 0.2s both ease;
}

@keyframes accentGrow {
  from {
    width: 0;
  }

  to {
    width: 60px;
  }
}

/* Button pulse on hover */
.btn-primary-custom:hover i,
.btn-outline-custom:hover i {
  animation: arrowBounce 0.5s ease;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* Trade card icon rotation */
.trade-card:hover .trade-icon {
  animation: iconPop 0.4s ease;
}

@keyframes iconPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* Scroll top btn pulse */
.scroll-top.visible {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(200, 121, 65, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(200, 121, 65, 0.7);
  }
}

/* Why choose card shimmer */
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transition: left 0.6s ease;
}

.why-choose-card {
  position: relative;
  overflow: hidden;
}

.why-choose-card:hover::before {
  left: 100%;
}

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

/* Large tablets / small desktop */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .collection-card {
    height: 260px;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .hero-section {
    min-height: 75vh;
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  .navbar-custom .nav-link {
    padding: 12px 16px !important;
  }

  .nav-icons {
    margin-top: 10px;
    padding: 10px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
    height: 280px;
  }

  .collection-card {
    height: 240px;
  }

  .stat-item .stat-number {
    font-size: 2.4rem;
  }

  .welcome-gallery .gallery-item img {
    height: 160px;
  }
}

/* Mobile landscape & large phones */
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 50px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  /* Hero stats grid on mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
  }

  .hero-stat h3 {
    font-size: 1.4rem;
  }

  .hero-stat p {
    font-size: 0.75rem;
  }

  .btn-primary-custom {
    padding: 10px 24px;
    font-size: 0.88rem;
  }

  .btn-outline-custom {
    padding: 8px 22px;
    font-size: 0.88rem;
  }

   .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item.large {
    height: 180px;
  }

  .collection-card {
    height: 200px;
  }

  .collection-card .collection-overlay {
    padding: 20px 18px;
  }

  .collection-card .collection-overlay h4 {
    font-size: 1.1rem;
  }

  .welcome-gallery {
    gap: 10px;
  }

  .welcome-gallery .gallery-item img {
    height: 140px;
  }

  .sale-banner h2 {
    font-size: 2rem;
  }

  .sale-banner p {
    font-size: 0.9rem;
  }

  .product-card .product-img {
    height: auto;
  }

  .trade-card {
    padding: 20px 12px;
  }

  .trade-card .trade-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .trade-card h5 {
    font-size: 0.95rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .stat-item .stat-label {
    font-size: 0.82rem;
  }

  .testimonial-card {
    padding: 25px 20px;
  }

  .why-choose-card {
    padding: 28px 18px;
  }

  .why-choose-card .wc-icon {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter-form input {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .newsletter-form button {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .footer {
    padding: 50px 0 0;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .faq-section .accordion-button {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.55rem;
  }
	
	.why-choose-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
    font-size: 12px;
}

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-stat h3 {
    font-size: 1.2rem;
  }

  .hero-stat p {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-padding {
    padding: 40px 0;
  }

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

  .gallery-item,
  .gallery-item.large {
    height: 200px;
  }

  .welcome-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .welcome-gallery .gallery-item img {
    height: 100%;
  }

  .product-card .product-body {
    padding: 14px;
  }

  .product-card .product-title {
    font-size: 0.95rem;
  }

  .product-card .product-price {
    font-size: 1rem;
  }

  .collection-card {
    height: 180px;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-bar .filter-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

/* ========== Loading Animation ========== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--grey-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== Sale Banner ========== */
.sale-banner {
  background: #C62828;
  color: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sale-banner h2 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

.sale-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-top: 8px;
}

/* ========== Price Filter ========== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-bar .filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--grey-300);
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--grey-700);
}

.filter-bar .filter-btn:hover,
.filter-bar .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* View All Link */
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.view-all-link:hover {
  color: var(--primary-dark);
  gap: 12px;
}

/* ========== Products Page CSS ========== */
/* Inherits theme variables from style.css */

/* ===== Page Banner / Breadcrumb ===== */
.page-banner {
  background: var(--secondary);
  padding: 50px 0 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/hero-bg.png') center/cover no-repeat;
  opacity: 0.08;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.page-banner .breadcrumb {
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
  color: var(--primary-light);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ===== Product Grid Top Bar ===== */
.products-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 30px;
}

.products-topbar .results-count {
  font-size: 0.9rem;
  color: var(--grey-500);
}

.products-topbar .results-count strong {
  color: var(--secondary);
}

.products-topbar .sort-select {
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.products-topbar .sort-select:focus {
  border-color: var(--primary);
}

.products-topbar .view-toggle {
  display: flex;
  gap: 6px;
}

.products-topbar .view-toggle button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--grey-300);
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--grey-500);
  transition: var(--transition);
}

.products-topbar .view-toggle button.active,
.products-topbar .view-toggle button:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== Product Grid ===== */
.plp-product-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plp-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.plp-product-card .plp-img {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: var(--grey-100);
  border-bottom: 1px solid #ffffffdd;
}

.plp-product-card .plp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plp-product-card:hover .plp-img img {
  transform: scale(1.06);
}

.plp-product-card .plp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.plp-badge-new { background: var(--primary); color: var(--white); }
.plp-badge-sale { background: #C62828; color: var(--white); }
.plp-badge-best { background: #2E7D32; color: var(--white); }

.plp-product-card .plp-quick-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.plp-product-card:hover .plp-quick-actions {
  opacity: 1;
  transform: translateY(0);
}

.plp-quick-actions a {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--dark);
  font-size: 0.85rem;
  transition: var(--transition);
}

.plp-quick-actions a:hover {
  background: var(--primary);
  color: var(--white);
}

.plp-product-card .plp-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plp-product-card .plp-cat {
  font-size: 0.72rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.plp-product-card .plp-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.35;
}

.plp-product-card .plp-title a {
  color: var(--secondary);
}

.plp-product-card .plp-title a:hover {
  color: var(--primary);
}

.plp-product-card .plp-size {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-bottom: 8px;
}

.plp-product-card .plp-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
}

.plp-product-card .plp-price .plp-old {
  font-size: 0.85rem;
  color: var(--grey-500);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

.plp-product-card .plp-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #F5A623;
}

.plp-product-card .plp-rating span {
  color: var(--grey-500);
  font-size: 0.78rem;
  margin-left: 4px;
}

/* ===== Sidebar / Filters ===== */
.filter-sidebar h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.filter-sidebar .filter-group {
  margin-bottom: 28px;
}

.filter-sidebar .filter-group h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter-sidebar .filter-group h6 i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

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

.filter-sidebar .filter-list li {
  margin-bottom: 8px;
}

.filter-sidebar .filter-list li label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
}

.filter-sidebar .filter-list li label:hover {
  color: var(--primary);
}

.filter-sidebar .filter-list li label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.filter-sidebar .filter-list li .count {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--grey-500);
}

/* Price Range Slider */
.price-range-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--grey-700);
  margin-bottom: 8px;
}

.price-range-slider {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Color swatches */
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  cursor: pointer;
  transition: var(--transition);
}

.color-swatch:hover,
.color-swatch.active {
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 2px var(--primary-light);
}

/* Size filter tags */
.size-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-tag {
  padding: 5px 14px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.size-tag:hover,
.size-tag.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ===== Category Chips ===== */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--grey-200);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  text-decoration: none;
}

.category-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.category-chip:hover,
.category-chip.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--cream);
}

/* ===== Pagination ===== */
.plp-pagination .page-item .page-link {
  color: var(--grey-700);
  border: 1px solid var(--grey-200);
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.plp-pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.plp-pagination .page-item .page-link:hover {
  background: var(--cream);
  border-color: var(--primary-light);
  color: var(--primary);
}

/* ===== Content Sections ===== */
.plp-content-section {
  background: var(--off-white);
}

.plp-content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.plp-content-section p {
  color: var(--grey-700);
  font-size: 0.95rem;
  line-height: 1.8;
}

.plp-content-section h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.plp-content-section ul {
  padding-left: 0;
  list-style: none;
}

.plp-content-section ul li {
  padding: 5px 0;
  font-size: 0.92rem;
  color: var(--grey-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plp-content-section ul li i {
  color: var(--primary);
  margin-top: 4px;
  font-size: 0.8rem;
}

/* ===== Collections Grid ===== */
.plp-collection-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  transition: var(--transition);
}

.plp-collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.plp-collection-card:hover img {
  transform: scale(1.08);
}

.plp-collection-card .plp-coll-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

.plp-collection-card .plp-coll-overlay h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.plp-collection-card .plp-coll-overlay span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ===== Feature Explained ===== */
.feature-grid-card {
  padding: 25px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
  height: 100%;
}

.feature-grid-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.feature-grid-card .fg-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: var(--transition);
}

.feature-grid-card:hover .fg-icon {
  background: var(--primary);
  color: var(--white);
}

.feature-grid-card h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.feature-grid-card p {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin: 0;
  line-height: 1.6;
}

/* ===== Size Guide Table ===== */
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.size-guide-table th {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 600;
  text-align: left;
}

.size-guide-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-700);
}

.size-guide-table tr:hover td {
  background: var(--cream);
}

/* ===== FAQ on PLP ===== */
.plp-faq .accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.plp-faq .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  padding: 16px 20px;
  background: var(--white);
  box-shadow: none;
}



.plp-faq .accordion-body {
  padding: 0 20px 16px;
  color: var(--grey-700);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== Mobile Filter Toggle ===== */
.mobile-filter-btn {
  display: none;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  margin-bottom: 20px;
  transition: var(--transition);
}

.mobile-filter-btn:hover {
  background: var(--primary-dark);
}

/* ===== Animations ===== */
.plp-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.plp-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== HERO PREMIUM 3D GRAPHIC ========== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: auto;
    padding: 50px 0;
    perspective: 1600px;
    background: #111;
    margin: 20px;
    border-radius: 20px;
}

/* remove duplicate old overlay if using hero-section::before */
.hero-section::before {
  content: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-3d-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  border-radius: 24px;
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08) translateZ(-40px);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
  border-radius: 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(200, 121, 65, 0.22), transparent 30%), linear-gradient(120deg, rgb(8 8 8 / 0%) 0%, rgb(18 18 18 / 3%) 45%, rgb(0 0 0 / 0%) 100%);
    z-index: 1;
    border-radius: 24px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  transform: translateZ(10px);
  border-radius: 24px;
}

/* Glow graphics */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
}

.hero-glow-1 {
  width: 380px;
  height: 380px;
  right: 8%;
  top: 8%;
  background: rgba(200, 121, 65, 0.20);
  animation: glowFloat1 8s ease-in-out infinite;
}

.hero-glow-2 {
  width: 280px;
  height: 280px;
  left: -40px;
  bottom: 0;
  background: rgba(255,255,255,0.08);
  animation: glowFloat2 10s ease-in-out infinite;
}

.hero-light-beam {
  position: absolute;
  top: -10%;
  right: 14%;
  width: 240px;
  height: 140%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.02),
    transparent
  );
  transform: rotate(18deg);
  filter: blur(16px);
  z-index: 2;
  pointer-events: none;
  animation: beamMove 7s ease-in-out infinite alternate;
}

/* Floating tile graphics */
.floating-tile {
  position: absolute;
  border-radius: 22px;
  z-index: 3;
  transform-style: preserve-3d;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04)),
    linear-gradient(145deg, rgba(200,121,65,0.18), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-tile::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), transparent 50%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 2px,
      transparent 2px,
      transparent 12px
    );
}

.tile-1 {
  width: 180px;
  height: 240px;
  top: 14%;
  right: 12%;
  transform: rotate(-18deg) translateZ(70px);
  animation: tileFloat1 7s ease-in-out infinite;
}

.tile-2 {
  width: 140px;
  height: 180px;
  bottom: 16%;
  right: 24%;
  transform: rotate(14deg) translateZ(50px);
  animation: tileFloat2 9s ease-in-out infinite;
}

.tile-3 {
  width: 110px;
  height: 150px;
  top: 34%;
  right: 4%;
  transform: rotate(28deg) translateZ(35px);
  animation: tileFloat3 8s ease-in-out infinite;
}

/* Rings */
.floating-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  z-index: 2;
  pointer-events: none;
}

.ring-1 {
  width: 320px;
  height: 320px;
  right: 6%;
  top: 18%;
  animation: ringRotate 18s linear infinite;
}

.ring-2 {
  width: 180px;
  height: 180px;
  right: 20%;
  bottom: 14%;
  animation: ringRotateReverse 12s linear infinite;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 12;
  max-width: 680px;
  color: #fff;
  padding: 42px 38px;
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.02));
  pointer-events: none;
}

.hero-badge,
.hero-content h1,
.hero-content p,
.hero-content .d-flex,
.hero-stats {
  position: relative;
  transform-style: preserve-3d;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 121, 65, 0.18);
  border: 1px solid rgba(200, 121, 65, 0.38);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateZ(50px);
}

.hero-content h1 {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
  transform: translateZ(80px);
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-content h1 span {
  color: var(--primary-light);
}

.hero-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  transform: translateZ(65px);
}

.hero-content .d-flex {
  transform: translateZ(75px);
}

.hero-outline-btn {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 2.5rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  transform: translateZ(90px);
}

.hero-stat h3 {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 0.2rem;
}

.hero-stat p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
}

.btn-primary-custom,
.btn-outline-custom {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.btn-primary-custom::after,
.btn-outline-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.24), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-primary-custom:hover::after,
.btn-outline-custom:hover::after {
  left: 140%;
}

/* Animations */
@keyframes heroZoom {
  0% {
    transform: scale(1.08) translateZ(-40px);
  }
  100% {
    transform: scale(1.15) translateZ(-40px);
  }
}

@keyframes glowFloat1 {
  0%,100% { transform: translate3d(0,0,20px); }
  50% { transform: translate3d(-18px,22px,45px); }
}

@keyframes glowFloat2 {
  0%,100% { transform: translate3d(0,0,15px); }
  50% { transform: translate3d(18px,-18px,35px); }
}

@keyframes beamMove {
  0% { transform: rotate(18deg) translateX(0); opacity: 0.55; }
  100% { transform: rotate(22deg) translateX(24px); opacity: 0.85; }
}

@keyframes tileFloat1 {
  0%,100% { transform: rotate(-18deg) translateY(0) translateZ(70px); }
  50% { transform: rotate(-12deg) translateY(-18px) translateZ(95px); }
}

@keyframes tileFloat2 {
  0%,100% { transform: rotate(14deg) translateY(0) translateZ(50px); }
  50% { transform: rotate(8deg) translateY(-14px) translateZ(70px); }
}

@keyframes tileFloat3 {
  0%,100% { transform: rotate(28deg) translateY(0) translateZ(35px); }
  50% { transform: rotate(22deg) translateY(-16px) translateZ(55px); }
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ringRotateReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-content {
    max-width: 100%;
    padding: 30px 24px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .tile-1,
  .tile-2,
  .tile-3,
  .ring-1,
  .ring-2,
  .hero-light-beam {
    opacity: 0.45;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-content {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .hero-content h1 {
    font-size: 2.15rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 7px 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 2rem;
    padding-top: 1.3rem;
  }

  .hero-grid {
    background-size: 36px 36px;
  }

  .tile-1,
  .tile-2,
  .tile-3,
  .ring-1,
  .ring-2,
  .hero-light-beam {
    display: none;
  }
}

.hero-title {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
  transform: translateZ(80px);
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.typing-wrap {
  display: inline-block;
  color: var(--primary-light);
  min-width: 320px;
}

#typed-text {
  display: inline-block;
}

.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--primary-light);
  animation: blinkCursor 0.8s infinite;
  font-weight: 500;
}

@keyframes blinkCursor {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .typing-wrap {
    min-width: 260px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.15rem;
    line-height: 1.2;
  }

  .typing-wrap {
    min-width: 200px;
    display: block;
    margin-top: 6px;
  }
}



/* ===== Responsive ===== */
@media (max-width: 991px) {
  .page-banner h1 { font-size: 2.2rem; }
  .plp-product-card .plp-img { height: 200px; }
  
  .mobile-filter-btn { display: block; }
  
  .filter-sidebar {
    position: fixed;
    top: 0; left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1060;
    padding: 24px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transition: left 0.35s ease;
  }
  
  .filter-sidebar.open { left: 0; }
  
  .filter-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1055;
  }
  
  .filter-overlay.show { display: block; }
  
  .filter-sidebar .close-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--grey-200);
  }
  
  .filter-sidebar .close-filter span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
  }
  
  .filter-sidebar .close-filter button {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--grey-700);
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  .filter-sidebar .close-filter { display: none; }
  .filter-overlay { display: none !important; }
}

@media (max-width: 767px) {
  .page-banner { padding: 35px 0 30px; }
  .page-banner h1 { font-size: 1.7rem; }
  .plp-product-card .plp-img { height: 170px; }
  .plp-content-section h2 { font-size: 1.4rem; }
  .category-chip { padding: 8px 16px; font-size: 0.82rem; }
  .products-topbar { gap: 10px; }
}

@media (max-width: 480px) {
  .page-banner h1 { font-size: 1.4rem; }
  .plp-product-card .plp-img { height: 150px; }
  .plp-product-card .plp-body { padding: 12px; }
  .plp-product-card .plp-title { font-size: 0.92rem; }
  .plp-product-card .plp-price { font-size: 0.95rem; }
	
	.tiles-header-wrap {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 9999;
    display: flex;
    align-items: center;
}
	
	.tiles-header-logo img {
    width: 179px!important;
}
	
	
}

.plp-product-card .product-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.plp-product-card .inquiry-btn {
    background: var(--primary);
    color: #fff;
}
.plp-product-card .sample-btn {
    background: #f3f3f3;
    color: #1f1f1f;
}
.plp-product-card .product-btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

a.nav-link.nav-sale-btn {
    margin-top: 0px;
}

.page-banner-slider {
    display: none;
}

.term-bathroom .page-banner-slider {
    display: block;
}

h3.pdp-spec-group-title {
    margin-top: 15px;
    font-size: 19px;
}

