.elementor-106 .elementor-element.elementor-element-ea3ce42{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-106 .elementor-element.elementor-element-34fe1ca{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d2dfd92 *//* ========== Product Detail Page ========== */

/* Breadcrumb */
.pdp-breadcrumb {
  background: var(--off-white);
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-200);
}

.pdp-breadcrumb .breadcrumb {
  margin: 0;
  font-size: 0.85rem;
}

.pdp-breadcrumb .breadcrumb-item a {
  color: var(--grey-600);
  text-decoration: none;
  transition: var(--transition);
}

.pdp-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary);
}

.pdp-breadcrumb .breadcrumb-item.active {
  color: var(--secondary);
  font-weight: 600;
}

.pdp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--grey-400);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* ========== Product Section ========== */
.pdp-section {
  padding: 40px 0 60px;
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 100px;
}

.pdp-main-image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8f6f3;
  margin-bottom: 15px;
  position: relative;
  cursor: zoom-in;
}

.pdp-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.pdp-main-image:hover img {
  transform: scale(1.05);
}

.pdp-thumbnails {
  display: flex;
  gap: 12px;
}

.pdp-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}

.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--primary);
  opacity: 1;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.pdp-info {
  padding-left: 20px;
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pdp-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.pdp-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--grey-600);
}

/* Tile Size Selector */
.pdp-size-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.pdp-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pdp-size-btn {
  padding: 10px 20px;
  border: 2px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
}

.pdp-size-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pdp-size-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Quantity */
.pdp-qty-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.pdp-qty-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.pdp-qty-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--grey-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.pdp-qty-box button {
  width: 40px;
  height: 42px;
  border: none;
  background: var(--off-white);
  font-size: 1.1rem;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}

.pdp-qty-box button:hover {
  background: var(--grey-200);
}

.pdp-qty-box input {
  width: 55px;
  height: 42px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--grey-300);
  border-right: 1px solid var(--grey-300);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  outline: none;
}

.pdp-qty-or {
  font-size: 0.85rem;
  color: var(--grey-500);
}

.pdp-qty-m2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-qty-m2 input {
  width: 80px;
  height: 42px;
  text-align: center;
  border: 2px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  outline: none;
}

.pdp-qty-m2 input:focus {
  border-color: var(--primary);
}

.pdp-qty-m2 span {
  font-size: 0.85rem;
  color: var(--grey-600);
}

/* Extra Allowance */
.pdp-allowance {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--grey-600);
}

.pdp-allowance input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Stock */
.pdp-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pdp-stock-info {
  font-size: 0.88rem;
  color: var(--grey-600);
}

.pdp-stock-status {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2e7d32;
}

.pdp-stock-status i {
  margin-right: 4px;
}

/* Coverage */
.pdp-coverage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.pdp-coverage span {
  color: var(--grey-600);
}

.pdp-coverage strong {
  color: var(--secondary);
}

/* Add to Cart & Sample */
.pdp-add-cart {
  width: 100%;
  padding: 14px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.pdp-add-cart:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.3);
}

.pdp-order-sample {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 24px;
}

.pdp-order-sample:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Support Box */
.pdp-support {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 10px;
}

.pdp-support-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
  text-align: center;
}

.pdp-support-sub {
  font-size: 0.82rem;
  color: var(--grey-500);
  text-align: center;
  margin-bottom: 16px;
}

.pdp-support-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--secondary);
  border: 1px solid var(--grey-200);
}

.pdp-support-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  color: var(--primary);
}

.pdp-support-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pdp-support-icon.phone {
  background: #e8f5e9;
  color: #2e7d32;
}

.pdp-support-icon.email {
  background: #e3f2fd;
  color: #1565c0;
}

.pdp-support-icon.whatsapp {
  background: #e8f5e9;
  color: #25d366;
}

.pdp-support-text {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ========== Product Details Table ========== */
.pdp-details-section {
  padding: 50px 0;
  border-top: 1px solid var(--grey-200);
}

.pdp-details-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-200);
}

.pdp-details-heading i {
  transition: transform 0.3s ease;
}

.pdp-details-heading.collapsed i {
  transform: rotate(0deg);
}

.pdp-details-heading:not(.collapsed) i {
  transform: rotate(45deg);
}

.pdp-specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pdp-spec-row {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-100);
}

.pdp-spec-label {
  width: 50%;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey-600);
}

.pdp-spec-value {
  width: 50%;
  font-size: 0.88rem;
  color: var(--secondary);
}

/* ========== Accordion Sections ========== */
.pdp-accordion {
  border-top: 1px solid var(--grey-200);
}

.pdp-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--grey-200);
  border-radius: 0 !important;
}

.pdp-accordion .accordion-button {
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 18px 0;
  box-shadow: none;
}

.pdp-accordion .accordion-button::after {
  content: "+";
  background-image: none;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--grey-500);
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.pdp-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
}

.pdp-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
}

.pdp-accordion .accordion-body {
  padding: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--grey-700);
}

/* ========== You May Also Like ========== */
.pdp-related {
  padding: 60px 0;
  background: var(--off-white);
}

.pdp-related-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 30px;
}

.pdp-related-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  border: 1px solid var(--grey-100);
}

.pdp-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.pdp-related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pdp-related-card:hover img {
  transform: scale(1.05);
}

.pdp-related-body {
  padding: 16px;
  text-align: center;
}

.pdp-related-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
}

.pdp-related-sizes {
  font-size: 0.8rem;
  color: var(--grey-500);
  margin-bottom: 6px;
}

.pdp-related-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.pdp-related-price .old {
  text-decoration: line-through;
  color: var(--grey-400);
  font-weight: 400;
  margin-left: 5px;
  font-size: 0.82rem;
}

/* ========== Fade In Animation ========== */
.pdp-fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pdp-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
  .pdp-info {
    padding-left: 0;
    margin-top: 30px;
  }

  .pdp-main-image img {
    height: 400px;
  }

  .pdp-gallery {
    position: static;
  }
}

@media (max-width: 767px) {
  .pdp-title {
    font-size: 1.4rem;
  }

  .pdp-price {
    font-size: 1.25rem;
  }

  .pdp-main-image img {
    height: 320px;
  }

  .pdp-thumb {
    width: 65px;
    height: 65px;
  }

  .pdp-specs-table {
    grid-template-columns: 1fr;
  }

  .pdp-related-card img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .pdp-main-image img {
    height: 260px;
  }

  .pdp-thumb {
    width: 55px;
    height: 55px;
  }

  .pdp-qty-wrap {
    flex-wrap: wrap;
  }

  .pdp-size-btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-34fe1ca *//* ========== 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: #C87941;
  --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: #FAF8F5;
  --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: 24px 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;
  }
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(60, 40, 20, 0.5) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--primary-light);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 121, 65, 0.2);
  border: 1px solid rgba(200, 121, 65, 0.4);
  color: var(--primary-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 0.2rem;
}

.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 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: 1fr 1fr;
    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: 180px;
  }

  .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;
  }

  .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: 1fr;
  }

  .welcome-gallery .gallery-item img {
    height: 180px;
  }

  .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;
}/* End custom CSS */