  :root {
      --primary-color: #424D52;
      --primary-color-light: #5a686e;
      --soft-bg: #f9fbf9;
      --secondary-color: #F8B02E;
      --text-muted: #6c757d;
      --border-color: #eee;
      --dark-btn: #1d2127;
  }

  /* --- Animation Base Classes --- */
  .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform, opacity;
  }

  .reveal.active {
      opacity: 1;
      transform: translateY(0);
  }

  .reveal-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-left.active,
  .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
  }

  /* Staggered delay logic */
  .stagger-item {
      opacity: 0;
      transform: translateY(20px);
      transition: 0.6s ease-out;
  }

  .active .stagger-item {
      opacity: 1;
      transform: translateY(0);
  }

  .active .stagger-item:nth-child(1) {
      transition-delay: 0.1s;
  }

  .active .stagger-item:nth-child(2) {
      transition-delay: 0.2s;
  }

  .active .stagger-item:nth-child(3) {
      transition-delay: 0.3s;
  }

  .active .stagger-item:nth-child(4) {
      transition-delay: 0.4s;
  }

  .active .stagger-item:nth-child(5) {
      transition-delay: 0.5s;
  }

  /* Preloader Styles */
  #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #424D52;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100000;
      opacity: 1;
      visibility: visible;
      transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  }

  .loader-content {
      text-align: center;
      position: relative;
  }

  .loader-logo {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary-color);
      font-family: Barlow, sans-serif;
      letter-spacing: -2px;
      margin-bottom: 15px;
      display: block;
      animation: logoPulse 1.5s ease-in-out infinite;
  }

  .loader-bar-container {
      width: 150px;
      height: 3px;
      background: #f0f0f0;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
  }

  .loader-bar-progress {
      position: absolute;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--secondary-color);
      animation: loadingMoving 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }

  .loading-text {
      margin-top: 15px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #bbb;
  }

  @keyframes logoPulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 0.7;
      }

      50% {
          transform: scale(1.05);
          opacity: 1;
      }
  }

  @keyframes loadingMoving {
      0% {
          left: -100%;
      }

      50% {
          left: 0%;
      }

      100% {
          left: 100%;
      }
  }

  html,
  body {
      max-width: 100%;
      overflow-x: hidden;
  }

  body {
      font-family: Barlow, sans-serif;
      color: #000000;
      background-color: #fff;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .serif-font {
      /*font-family: 'Barlow', sans-serif;*/
      font-family: Barlow, sans-serif;
  }

  /* Top Bar */
  .top-bar {
      background-color: var(--primary-color);
      color: white;
      padding: 8px 0;
      font-size: 0.85rem;
  }

  .top-bar a {
      color: white;
      text-decoration: underline;
  }

  /* Navbar */
  .navbar {
      padding: 25px 0;
      background: white;
  }

  .navbar-brand {
      display: flex;
      align-items: center;
      font-weight: 800;
      font-size: 1.5rem;
      color: #1a1a1a !important;
  }

  .brand-icon {
      background: var(--primary-color);
      color: var(--secondary-color);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 1.1rem;
  }

  .nav-link {
      font-weight: 500;
      color: #1a1a1a !important;
      margin: 0 12px;
      font-size: 0.95rem;
  }

  .nav-icons a {
      color: #1a1a1a;
      margin-left: 20px;
      font-size: 1.1rem;
      text-decoration: none;
  }

  .badge-primary-custom {
      background-color: var(--primary-color);
      color: white;
  }

  @media (min-width: 992px) {
      .navbar .container {
          position: relative;
      }

      .nav-item.dropdown {
          position: static;
      }

      /* Centers dropdown relative to navbar container */

      .navbar .nav-item.dropdown:hover .dropdown-menu {
          display: block;
          margin-top: 0;
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .dropdown-menu {
          display: block;
          opacity: 0;
          visibility: hidden;
          transform: translateY(15px);
          transition: all 0.3s ease;
          margin-top: 15px !important;
          border: none;
          box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
          border-radius: 15px;
          padding: 15px;
      }

      .nav-item.dropdown::after {
          content: '';
          position: absolute;
          bottom: -20px;
          left: 0;
          width: 100%;
          height: 20px;
      }

      /* Mega Menu Styling */
      .dropdown-menu-mega {
          width: 100%;
          max-width: 1100px;
          left: 50% !important;
          transform: translateX(-50%) translateY(15px) !important;
          padding: 30px !important;
          border-radius: 30px !important;
      }

      .nav-item.dropdown:hover .dropdown-menu-mega {
          transform: translateX(-50%) translateY(0) !important;
      }
  }

  .dropdown-item-mega {
      text-align: center;
      text-decoration: none;
      display: block;
      padding: 10px;
      border-radius: 12px;
      transition: 0.3s;
  }

  .dropdown-item-mega:hover {
      background-color: #f8f9fa;
  }

  .mega-img-wrapper {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 12px;
      background: #f4f5f4;
  }

  .mega-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
  }

  .dropdown-item-mega:hover img {
      transform: scale(1.1);
  }

  .mega-title {
      font-size: 0.85rem;
      font-weight: 800;
      color: #1a1a1a;
      display: block;
      line-height: 1.2;
  }

  /* Hero Section */
  .hero-slider-container {
      position: relative;
      overflow: hidden;
      background-color: #f4f5f4;
  }

  .hero-slide-item {
      height: 75vh;
      min-height: 550px;
      display: flex;
      align-items: center;
      position: relative;
  }

  .hero-img-bg {
      position: absolute;
      right: -5%;
      top: 0;
      height: 100%;
      width: 55%;
      background-size: cover;
      background-position: center;
      border-radius: 100px 0 0 100px;
      z-index: 1;
      transition: 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .hero-slide-content {
      position: relative;
      z-index: 5;
  }

  .hero-badge {
      color: var(--secondary-color);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.85rem;
      margin-bottom: 15px;
      display: block;
  }

  .hero-title {
      font-size: 4.2rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 25px;
  }

  /* Slider Controls */
  .carousel-control-prev,
  .carousel-control-next {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      transition: 0.3s;
      z-index: 10;
  }

  .hero-slider-container:hover .carousel-control-prev,
  .hero-slider-container:hover .carousel-control-next {
      opacity: 1;
  }

  .carousel-control-prev {
      left: 30px;
  }

  .carousel-control-next {
      right: 30px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      filter: invert(1) grayscale(100);
      width: 20px;
  }

  .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--primary-color);
      margin: 0 6px;
  }

  /* Categories Icon Grid */
  .cat-icon-card {
      text-align: center;
      text-decoration: none;
      display: block;
      padding: 20px 10px;
      border-radius: 20px;
      transition: 0.3s;
      border: 1px solid transparent;
  }

  .cat-icon-card:hover {
      transform: translateY(-10px);
  }

  .cat-icon-circle {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #f0f2f0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      overflow: hidden;
      border: 1px solid transparent;
  }

  .cat-icon-card:hover .cat-icon-circle {
      background: #fff;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
      border-color: #eee;
  }

  .cat-icon-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      transition: 0.5s ease;
  }

  .cat-icon-card:hover .cat-icon-circle img {
      transform: scale(1.15);
  }

  .cat-icon-card span {
      font-weight: 800;
      color: #1a1a1a;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
  }

  /* TRENDING PRODUCTS SLIDER */
  .trending-section-modern {
      padding: 100px 0;
      background: #fff;
  }

  .section-tagline {
      color: var(--secondary-color);
      font-weight: 800;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      display: block;
      margin-bottom: 10px;
  }

  .trending-product-card {
      position: relative;
      background: #fff;
      border-radius: 0;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      height: 100%;
  }

  .product-image-container {
      position: relative;
      background-color: #f8f8f8;
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
      overflow: hidden;
      margin-bottom: 20px;
      transition: 0.4s;
      /*border-radius: 50%;*/
  }

  .product-image-container img {
      max-width: 100%;
      height: auto;
      transition: transform 0.6s ease;
  }

  .product-hover-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.02);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: 0.3s;
      z-index: 5;
      /*border-radius: 50%;*/
  }

  .quick-view-btn {
      background: #fff;
      color: #000;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 12px 25px;
      border: none;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(20px);
      transition: 0.4s;
      border-radius: 50px;
  }

  .trending-product-card:hover .product-image-container {
      background-color: #f0f0f0;
  }

  .trending-product-card:hover .product-image-container img {
      transform: scale(1.08);
  }

  .trending-product-card:hover .product-hover-overlay {
      opacity: 1;
  }

  .trending-product-card:hover .quick-view-btn {
      transform: translateY(0);
  }

  .product-meta-data {
      padding: 5px;
      text-align: center;
  }

  .product-title-link {
      font-size: 1.1rem;
      font-weight: 700;
      color: #222;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: 0.3s;
  }

  .product-title-link:hover {
      color: var(--secondary-color);
  }

  .rating-stars-mini {
      color: var(--secondary-color);
      font-size: 0.75rem;
      margin-bottom: 12px;
      display: flex;
      gap: 3px;
      justify-content: center;
  }

  .product-price-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
  }

  .current-price {
      font-size: 1.3rem;
      font-weight: 800;
      color: #000;
      font-family: Barlow, sans-serif;
  }

  .add-to-cart-circle {
      width: 44px;
      height: 44px;
      background-color: var(--secondary-color);
      color: #fff;
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: 0.3s;
      box-shadow: 0 4px 12px rgba(248, 176, 46, 0.3);
  }

  .add-to-cart-circle:hover {
      background-color: var(--primary-color);
      transform: rotate(90deg);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .modern-pagination-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-top: 60px;
      padding: 0;
      border: none;
      background: transparent;
  }

  .modern-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e5e5e5;
      cursor: pointer;
      transition: 0.3s;
      border: none;
      padding: 0;
  }

  .modern-dot.active {
      background: var(--secondary-color);
      transform: scale(1.2);
  }

  /* NEW ARRIVALS GRID (E-COMMERCE FOCUS) */
  .ecom-grid-item {
      position: relative;
      background: #fff;
      padding: 15px;
      border-radius: 24px;
      border: 1px solid #f0f0f0;
      transition: 0.4s;
  }

  .ecom-grid-item:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      transform: translateY(-5px);
  }

  .ecom-image-box {
      background: #f8f8f8;
      border-radius: 18px;
      aspect-ratio: 1/1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 20px;
      position: relative;
  }

  .ecom-image-box img {
      width: 80%;
      transition: 0.5s;
  }

  .ecom-grid-item:hover .ecom-image-box img {
      transform: scale(1.1);
  }

  .ecom-actions {
      position: absolute;
      top: 15px;
      right: 15px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      opacity: 0;
      transform: translateX(10px);
      transition: 0.3s;
  }

  .ecom-grid-item:hover .ecom-actions {
      opacity: 1;
      transform: translateX(0);
  }

  .action-btn {
      width: 38px;
      height: 38px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: #444;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-decoration: none;
      transition: 0.3s;
  }

  .action-btn:hover {
      background: var(--secondary-color);
      color: #fff;
  }

  .badge-new {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary-color);
      color: #fff;
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.65rem;
      font-weight: 800;
      text-transform: uppercase;
  }

  /* EDITION 24 SECTION */
  .edition-focus-section {
      padding: 120px 0;
      background-color: #fff;
      position: relative;
      overflow: hidden;
  }

  .edition-branding-vertical {
      position: absolute;
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      z-index: 5;
  }

  .edition-branding-vertical span {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 6px;
      font-size: 0.75rem;
      color: #ddd;
  }

  .edition-line-accent {
      width: 1px;
      height: 100px;
      background: #eee;
  }

  .edition-content-box {
      position: relative;
      z-index: 10;
      padding-left: 60px;
  }

  .edition-vol-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--soft-bg);
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 30px;
      border: 1px solid #eee;
  }

  .vol-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--secondary-color);
  }

  .vol-text {
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .edition-main-title {
      font-size: 3.8rem;
      font-weight: 800;
      color: var(--primary-color);
      line-height: 1.1;
      margin-bottom: 30px;
  }

  .edition-lead {
      font-size: 1.15rem;
      color: #666;
      line-height: 1.8;
      margin-bottom: 45px;
      max-width: 450px;
  }

  .edition-stats-row {
      display: flex;
      gap: 40px;
      margin-bottom: 50px;
      border-top: 1px solid #f0f0f0;
      padding-top: 40px;
  }

  .stat-item-v4 h4 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 5px;
      color: #1a1a1a;
  }

  .stat-item-v4 p {
      font-size: 0.65rem;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 2px;
      color: #bbb;
      margin: 0;
  }

  .edition-visual-stack {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
  }

  .visual-main-frame {
      width: 85%;
      height: 600px;
      background: #f8f9f8;
      border-radius: 40px 180px 40px 10px;
      position: relative;
      overflow: hidden;
      transition: 0.6s ease;
  }

  .visual-main-frame img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 60px;
      transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .visual-floating-card {
      position: absolute;
      left: 0;
      bottom: 10%;
      background: #fff;
      padding: 30px;
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
      max-width: 280px;
      z-index: 15;
      border: 1px solid #f0f0f0;
      transition: 0.4s;
  }

  .visual-floating-card:hover {
      transform: translateY(-10px) rotate(-2deg);
  }

  .hotspot-price {
      display: inline-block;
      background: var(--primary-color);
      color: #fff;
      padding: 4px 12px;
      border-radius: 4px;
      font-weight: 800;
      font-size: 0.85rem;
      margin-bottom: 15px;
  }

  .hotspot-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 15px;
      display: block;
  }

  .hotspot-link {
      color: var(--secondary-color);
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
  }

  /* CURATED SELECTION */
  .curated-v6-wrapper {
      background: #fdfdfd;
      border-radius: 40px;
      overflow: hidden;
      border: 1px solid #f0f0f0;
      position: relative;
  }

  .curated-v6-container {
      display: flex;
      min-height: 600px;
  }

  .curated-image-side {
      flex: 1.2;
      background-image: url('https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&q=80&w=1600');
      background-size: cover;
      background-position: center;
      position: relative;
  }

  .curated-content-side {
      flex: 1;
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #fff;
      position: relative;
  }

  .curated-v6-tag {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--secondary-color);
      margin-bottom: 20px;
      display: block;
  }

  .curated-v6-title {
      font-size: 3.5rem;
      line-height: 1.1;
      margin-bottom: 30px;
      color: var(--primary-color);
  }

  .curated-v6-desc {
      font-size: 1.1rem;
      color: #777;
      margin-bottom: 45px;
      line-height: 1.8;
  }

  .curated-watermark-bg {
      position: absolute;
      bottom: -30px;
      right: 20px;
      font-size: 8rem;
      font-weight: 900;
      color: rgba(0, 0, 0, 0.02);
      font-family: Barlow, sans-serif;
      z-index: 1;
      pointer-events: none;
  }

  /* UNIQUE FURNITURE COLLECTIONS */
  .collection-section-v4 {
      position: relative;
  }

  .collection-sidebar-nav {
      border-left: 2px solid #f0f0f0;
      padding-left: 0;
  }

  .collection-sidebar-nav .nav-link {
      text-align: left;
      background: transparent !important;
      color: #aaa !important;
      padding: 20px 0 20px 30px;
      font-size: 1.2rem;
      font-weight: 700;
      position: relative;
      transition: 0.4s;
      border: none !important;
      display: flex;
      align-items: center;
      gap: 15px;
  }

  .collection-sidebar-nav .nav-link span.num {
      font-family: Barlow, sans-serif;
      font-size: 0.75rem;
      opacity: 0.5;
      font-weight: 800;
  }

  .collection-sidebar-nav .nav-link.active {
      color: var(--primary-color) !important;
      padding-left: 45px;
  }

  .collection-sidebar-nav .nav-link.active::before {
      content: '';
      position: absolute;
      left: -2px;
      top: 0;
      height: 100%;
      width: 2px;
      background: var(--secondary-color);
  }

  .collection-sidebar-nav .nav-link.active span.num {
      color: var(--secondary-color);
      opacity: 1;
  }

  .collection-mosaic-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      height: 600px;
  }

  .mosaic-item {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: #f9faf9;
      transition: 0.5s;
  }

  .mosaic-item:nth-child(1) {
      grid-row: span 2;
  }

  .mosaic-item:hover {
      transform: scale(0.985);
  }

  .mosaic-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 40px;
      transition: 0.8s ease;
  }

  .mosaic-item:hover .mosaic-img {
      transform: scale(1.1);
  }

  .mosaic-content {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px;
      background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
      opacity: 0;
      transform: translateY(20px);
      transition: 0.4s;
  }

  .mosaic-item:hover .mosaic-content {
      opacity: 1;
      transform: translateY(0);
  }

  .mosaic-title {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 5px;
      color: #1a1a1a;
  }

  .mosaic-price {
      color: var(--primary-color);
      font-weight: 700;
  }

  /* Deals of the Day */
  .deal-strip-modern {
      background: var(--primary-color);
      border-radius: 30px;
      padding: 50px;
      color: white;
      position: relative;
      overflow: hidden;
  }

  .timer-box-modern {
      display: flex;
      gap: 15px;
  }

  .timer-unit-square {
      background: rgba(255, 255, 255, 0.1);
      width: 75px;
      height: 75px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  .timer-unit-square span {
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
  }

  .timer-unit-square small {
      font-size: 0.65rem;
      text-transform: uppercase;
      opacity: 0.7;
      font-weight: 700;
      margin-top: 4px;
  }

  /* Why Choose Us */
  .feature-item-ec {
      padding: 40px;
      background: #f9faf9;
      border-radius: 24px;
      transition: 0.3s;
      height: 100%;
  }

  .feature-item-ec:hover {
      background: #fff;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  }

  .feature-icon-ec {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
      display: block;
  }

  /* BRAND PARTNERS */
  .brand-partners-section {
      padding: 80px 0;
      background: #fff;
      border-top: 1px solid #f0f0f0;
  }

  .brand-logo-img {
      max-width: 140px;
      filter: grayscale(1);
      opacity: 0.3;
      transition: 0.4s;
      cursor: pointer;
  }

  .brand-logo-img:hover {
      filter: grayscale(0);
      opacity: 1;
      transform: scale(1.1);
  }

  /* TESTIMONIALS */
  .testimonial-v9-section {
      padding: 120px 0;
      background: var(--soft-bg);
      position: relative;
      overflow: hidden;
  }

  .v9-watermark {
      position: absolute;
      right: -50px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 22rem;
      font-weight: 900;
      color: rgba(0, 0, 0, 0.02);
      line-height: 1;
      pointer-events: none;
      z-index: 1;
  }

  .v9-container {
      position: relative;
      z-index: 5;
  }

  .v9-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 60px;
  }

  .v9-header-col {
      flex: 1;
      min-width: 300px;
  }

  .v9-slider-col {
      flex: 2.2;
      min-width: 350px;
  }

  .v9-badge {
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: var(--secondary-color);
      margin-bottom: 20px;
      display: block;
  }

  .v9-title {
      font-size: 3.5rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 30px;
      line-height: 1.1;
  }

  .v9-nav-controls {
      display: flex;
      gap: 15px;
      margin-top: 40px;
  }

  .v9-control-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      border: 1px solid #ddd;
      background: transparent;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
      cursor: pointer;
  }

  .v9-control-btn:hover {
      background: var(--primary-color);
      color: #fff;
      border-color: var(--primary-color);
      transform: scale(1.1);
  }

  .testimonial-v9-card {
      background: #fff;
      border-radius: 40px;
      padding: 60px;
      position: relative;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.04);
      border-left: 10px solid var(--secondary-color);
  }

  .v9-quote-icon {
      position: absolute;
      top: -30px;
      left: 60px;
      width: 70px;
      height: 70px;
      background: var(--secondary-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 10px 20px rgba(248, 176, 46, 0.3);
  }

  .v9-rating {
      color: var(--secondary-color);
      font-size: 0.9rem;
      margin-bottom: 25px;
      display: flex;
      gap: 5px;
  }

  .v9-quote-text {
      font-size: 1.8rem;
      line-height: 1.5;
      color: var(--primary-color);
      font-weight: 600;
      font-style: italic;
      margin-bottom: 40px;
  }

  .v9-client-profile {
      display: flex;
      align-items: center;
      gap: 20px;
  }

  .v9-client-img {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #f0f0f0;
  }

  .v9-client-name {
      font-size: 1.2rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 3px;
      display: block;
  }

  .v9-client-role {
      font-size: 0.8rem;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 700;
  }

  /* --- DESIGN JOURNAL (BLOG) REFINED --- */
  .journal-section {
      padding: 120px 0;
      background: #fff;
  }

  .journal-card-v10 {
      border: none;
      border-radius: 24px;
      overflow: hidden;
      transition: 0.4s;
      background: transparent;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .journal-img-box {
      position: relative;
      height: 350px;
      overflow: hidden;
      border-radius: 24px;
      margin-bottom: 25px;
      flex-shrink: 0;
  }

  .journal-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s;
  }

  .journal-card-v10:hover .journal-img-box img {
      transform: scale(1.1);
  }

  .journal-date-tag {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: #fff;
      padding: 10px 20px;
      border-radius: 12px;
      font-weight: 800;
      font-size: 0.8rem;
  }

  .journal-title-v10 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-color);
      text-decoration: none;
      display: block;
      margin-bottom: 15px;
  }

  .journal-title-v10:hover {
      color: var(--secondary-color);
  }

  /* Fixed Button Alignment */
  .btn-journal-link {
      color: #1a1a1a;
      font-weight: 800;
      font-size: 0.85rem;
      text-decoration: none;
      border-bottom: 2px solid var(--secondary-color);
      padding-bottom: 5px;
      display: inline-block;
      align-self: flex-start;
      margin-top: auto;
      transition: 0.3s;
  }

  .btn-journal-link:hover {
      padding-right: 10px;
      color: var(--secondary-color);
  }

  /* FAQ SECTION */
  .faq-v11-section {
      padding: 120px 0;
      background: var(--soft-bg);
  }

  .faq-accordion .accordion-item {
      border: none;
      background: #fff;
      border-radius: 20px !important;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  }

  .faq-accordion .accordion-button {
      padding: 25px 30px;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--primary-color);
      border: none;
      box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
      background: #fff;
      color: var(--secondary-color);
  }

  .faq-accordion .accordion-body {
      padding: 0 30px 30px;
      color: #777;
      line-height: 1.8;
  }

  /* FOOTER */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 0 0 60px;
      border-radius: 60px 60px 0 0;
      position: relative;
      overflow: hidden;
      margin-top: 120px;
  }

  .footer-cta-box {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 40px;
      padding: 60px;
      margin-bottom: 80px;
      margin-top: -60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 10;
      backdrop-filter: blur(15px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 14rem;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -10%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
      letter-spacing: -5px;
  }

  .footer-logo-premium {
      font-size: 2.4rem;
      font-weight: 900;
      letter-spacing: -2px;
      margin-bottom: 25px;
      display: block;
      color: #fff;
      text-decoration: none;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 4px;
      margin-bottom: 35px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 15px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      display: inline-block;
      font-weight: 500;
  }

  .footer-nav-list.nav-links a:hover {
      color: #fff;
      transform: translateX(10px);
  }

  .social-row {
      display: flex;
      gap: 12px;
      margin-top: 30px;
  }

  .social-icon-circle {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      text-decoration: none;
  }

  .social-icon-circle:hover {
      background: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #000;
      transform: translateY(-8px) rotate(15deg);
  }

  .footer-base-line {
      margin-top: 100px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 5;
  }

  .footer-base-line p {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.85rem;
      margin: 0;
  }

  .footer-legal-links {
      display: flex;
      gap: 25px;
  }

  .footer-legal-links a {
      color: rgba(255, 255, 255, 0.3);
      font-size: 0.85rem;
      text-decoration: none;
      transition: 0.3s;
  }

  .footer-legal-links a:hover {
      color: #fff;
  }

  /* Utilities */
  .section-padding {
      padding: 100px 0;
  }

  .btn-luxury {
      background: var(--dark-btn);
      color: #fff;
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 700;
      border: none;
      transition: 0.3s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-luxury:hover {
      background: var(--primary-color);
      color: var(--secondary-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .section-header-ec {
      margin-bottom: 60px;
      text-align: center;
  }

  @media (max-width: 991px) {
      .hero-title {
          font-size: 2.8rem;
      }

      .hero-img-bg {
          width: 100%;
          opacity: 0.2;
          right: 0;
      }

      .footer-cta-box {
          flex-direction: column;
          text-align: center;
          gap: 30px;
          margin-top: -30px;
          padding: 40px;
      }

      .footer-highlight-text {
          font-size: 6rem;
      }

      .v9-row {
          flex-direction: column;
          text-align: center;
          gap: 40px;
      }

      .v9-title {
          font-size: 2.5rem;
      }

      .v9-nav-controls {
          justify-content: center;
      }

      .testimonial-v9-card {
          padding: 40px 30px;
      }

      .v9-quote-text {
          font-size: 1.4rem;
      }

      .v9-client-profile {
          justify-content: center;
      }

      .dropdown-menu-mega {
          width: 100%;
          transform: none !important;
          left: 0 !important;
      }
  }



  /* Hero Section */
  .about-hero-redesign {
      padding: 20px;
      background: white;
  }

  .about-hero-inner {
      border-radius: 0 0 0 100px;
      overflow: hidden;
      position: relative;
      min-height: 500px;
      display: flex;
      align-items: center;
      background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('aasets/image/bgcategory.png');
      background-size: cover;
      background-position: center;
  }

  .about-hero-title {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 20px;
      color: white;
  }

  .about-hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      max-width: 550px;
  }

  .hero-featured-image {
      border-radius: 30px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }

  .header-dash {
      width: 35px;
      height: 3px;
      background: var(--secondary-color);
      border-radius: 10px;
      display: inline-block;
      margin-right: 12px;
      vertical-align: middle;
  }

  /* Mission Section */
  .mission-section {
      padding: 60px 0;
      background: #ffffff;
  }

  .mission-card {
      border-left: 5px solid var(--secondary-color);
      padding: 30px;
      background: var(--soft-bg);
      border-radius: 0 30px 30px 0;
      height: 100%;
  }

  /* Story Section */
  .story-section {
      padding: 60px 0;
      background: #fdfdfd;
  }

  .story-img-wrap {
      position: relative;
      margin-bottom: 30px;
  }

  .story-img-main {
      border-radius: 0 0 0 80px;
      width: 100%;
      height: 450px;
      object-fit: cover;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .story-img-accent {
      position: absolute;
      bottom: -20px;
      right: 0;
      width: 200px;
      height: 200px;
      background: var(--primary-color);
      border-radius: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--secondary-color);
      padding: 20px;
      text-align: center;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  /* Process Section */
  .process-section {
      padding: 60px 0;
      background: var(--primary-color);
      color: white;
      border-radius: 80px 0 80px 0;
      margin: 0 20px;
  }

  .step-number {
      font-size: 3rem;
      font-weight: 900;
      color: var(--secondary-color);
      opacity: 0.2;
      margin-bottom: -15px;
      display: block;
  }

  .step-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
  }

  /* Values Section */
  .values-section {
      background-color: var(--soft-bg);
      padding: 60px 0;
  }

  .value-card {
      background: white;
      padding: 40px;
      border-radius: 30px;
      height: 100%;
      border: 1px solid #f0f0f0;
      transition: 0.3s;
  }

  .value-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary-color);
  }

  .value-icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
      background: #f1f4f5;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 25px;
  }

  /* Sanctuary Section */
  .sanctuary-section {
      background: linear-gradient(rgba(66, 77, 82, 0.9), rgba(66, 77, 82, 0.9)),
          url('https://images.unsplash.com/photo-1590602847861-f357a9332bbc?auto=format&fit=crop&q=80&w=2000');
      background-size: cover;
      padding: 80px 0;
      color: white;
      text-align: center;
      border-radius: 0 100px 0 100px;
      margin: 60px 20px;
  }

  .sanctuary-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      margin-bottom: 20px;
  }

  .btn-luxury {
      background-color: var(--secondary-color);
      color: #000;
      border-radius: 100px;
      padding: 15px 40px;
      font-weight: 800;
      border: none;
      transition: 0.3s;
  }

  .btn-luxury:hover {
      background-color: white;
      color: var(--secondary-color);
      transform: scale(1.05);
  }

  /* Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 80px 0 40px;
      border-radius: 40px 40px 0 0;
      position: relative;
      overflow: hidden;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: clamp(4rem, 15vw, 10rem);
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-logo-premium {
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      text-decoration: none;
      display: block;
      margin-bottom: 20px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 25px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
  }

  .footer-nav-list li {
      margin-bottom: 12px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #fff;
      padding-left: 5px;
  }

  .social-icon-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: 0.3s;
  }

  .social-icon-circle:hover {
      background: var(--secondary-color);
      color: #000;
  }

  .footer-base-line {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 50px;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
  }

  @media (max-width: 991px) {
      .about-hero-inner {
          border-radius: 0 0 0 50px;
          text-align: center;
      }

      .hero-featured-image {
          margin-top: 30px;
      }

      .process-section {
          border-radius: 40px 0 40px 0;
          margin: 0 10px;
      }

      .sanctuary-section {
          border-radius: 0 50px 0 50px;
          margin: 40px 10px;
      }

      .story-img-main {
          height: 350px;
      }

      .story-img-accent {
          width: 160px;
          height: 160px;
          bottom: -10px;
      }
  }



  /* HERO DESIGN (Matching image_8c497f.png) */
  .hero-redesign {
      padding: 40px;
      background: white;
  }

  .hero-inner {
      border-radius: 0 0 0 180px;
      overflow: hidden;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0.2) 100%), url('aasets/image/bgcategory.png');
      background-size: cover;
      background-position: center;
      min-height: 650px;
      display: flex;
      align-items: center;
      position: relative;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
  }

  .hero-text-side {
      padding-left: 100px;
      z-index: 2;
      max-width: 800px;
  }

  .hero-title-main {
      font-size: 4.8rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 25px;
      color: #1a1a1a;
  }

  .hero-subtitle-main {
      font-size: 1.15rem;
      color: #424D52;
      font-weight: 500;
      line-height: 1.8;
      max-width: 500px;
      margin-bottom: 40px;
  }

  .btn-get-started {
      background-color: var(--dark-btn);
      color: white;
      border-radius: 12px;
      padding: 18px 40px;
      font-weight: 700;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      transition: 0.3s;
      text-transform: capitalize;
      text-decoration: none;
  }

  .btn-get-started:hover {
      background-color: var(--primary-color);
      transform: translateY(-3px);
      color: white;
  }

  /* CURATED COLLECTIONS GRID (Matching image_8ee1df.jpg) */
  .collections-section {
      padding: 100px 0;
      background: white;
  }

  .section-header-centered {
      text-align: center;
      margin-bottom: 60px;
  }

  .section-header-centered h2 {
      font-size: 3rem;
      font-weight: 700;
      font-family: Barlow, sans-serif;
      margin-bottom: 15px;
      color: #1a1a1a;
  }

  .section-header-centered p {
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
  }

  .collections-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 350px;
      gap: 25px;
  }

  .collection-card {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      color: white;
      transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
  }

  .collection-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .collection-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.8s;
  }

  .collection-card:hover img {
      transform: scale(1.1);
  }

  .collection-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px;
  }

  .col-card-tag {
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--secondary-color);
      margin-bottom: 10px;
  }

  .col-card-title {
      font-size: 1.8rem;
      font-weight: 700;
      font-family: Barlow, sans-serif;
      margin-bottom: 15px;
      text-transform: uppercase;
  }

  .col-card-link {
      font-size: 0.85rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0.8;
  }

  /* Specific Grid Spans */
  .card-wide {
      grid-column: span 2;
  }

  /* Architectural Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 100px 0 40px;
      border-radius: 60px 60px 0 0;
      position: relative;
      overflow: hidden;
      margin-top: 50px;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 10rem;
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-main-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 40px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 18px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #ffffff;
      padding-left: 10px;
  }

  .footer-social-pill {
      display: flex;
      gap: 15px;
      margin-top: 40px;
  }

  .social-icon-circle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.3s;
      text-decoration: none;
  }

  .social-icon-circle:hover {
      background: var(--secondary-color);
      color: #000;
      transform: translateY(-5px);
  }

  @media (max-width: 991px) {
      .footer-main-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .hero-text-side {
          padding: 60px 30px;
          text-align: center;
          margin: 0 auto;
      }

      .hero-title-main {
          font-size: 3rem;
      }

      .hero-inner {
          border-radius: 0 0 0 80px;
          min-height: 500px;
          background-position: right;
      }

      .collections-grid {
          grid-template-columns: 1fr;
          grid-auto-rows: 400px;
      }

      .card-wide {
          grid-column: span 1;
      }
  }



  /* Hero Header (Matching image_98dee3.jpg) */
  .shop-header {
      padding: 80px 0;
      text-align: center;
      background: #ffffff;
      position: relative;
  }

  .shop-header h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
  }

  .breadcrumb-custom {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .breadcrumb-custom li {
      color: #bbb;
  }

  .breadcrumb-custom li::after {
      content: '/';
      margin: 0 10px;
  }

  .breadcrumb-custom li:last-child::after {
      content: '';
  }

  .breadcrumb-custom a {
      color: #bbb;
      text-decoration: none;
  }

  .breadcrumb-custom .active {
      color: var(--primary-color);
  }

  /* Sidebar Filters */
  .sidebar-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 30px;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
  }

  .filter-group {
      margin-bottom: 40px;
  }

  .filter-group-title {
      font-weight: 800;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      color: #000;
  }

  .filter-check-list {
      list-style: none;
      padding: 0;
  }

  .filter-check-list li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
  }

  .filter-check-list input {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      border: 2px solid #ddd;
      margin-right: 12px;
      cursor: pointer;
      accent-color: var(--primary-color);
  }

  .filter-check-list label {
      font-size: 0.95rem;
      color: #666;
      font-weight: 500;
      cursor: pointer;
  }

  /* Color Filter */
  .color-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 10px;
  }

  /* Active Filter Tags (Matching image_98dee3.jpg) */
  .active-filter-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 30px;
      min-height: 40px;
  }

  .active-filter-label {
      color: #999;
      font-size: 0.85rem;
      font-weight: 700;
  }

  .filter-tag {
      background: var(--secondary-color);
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 700;
      color: #000;
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .filter-tag i {
      cursor: pointer;
      opacity: 0.5;
      transition: 0.2s;
  }

  .filter-tag i:hover {
      opacity: 1;
  }

  .clear-all {
      color: var(--primary-color);
      font-weight: 800;
      font-size: 0.85rem;
      text-decoration: underline;
      text-transform: capitalize;
      margin-left: 10px;
      cursor: pointer;
      border: none;
      background: none;
      padding: 0;
  }

  /* Product Card (Matching image_98dee3.jpg layout) */
  .product-card {
      background: #fff;
      margin-bottom: 40px;
      transition: 0.3s;
  }

  .p-img-container {
      background: var(--secondary-soft);
      /* Soft version of #F8B02E */
      height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover .p-img-container {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
      border-radius: 35px;
  }

  .p-img-container img {
      max-width: 100%;
      transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      
  }

  .product-card:hover .p-img-container img {
      transform: scale(1.08);
      border-radius: 50px;
  }

  .p-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--primary-color);
      color: white;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 800;
  }

  .p-action-btns {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transform: translateX(50px);
      opacity: 0;
      transition: 0.3s;
  }

  .product-card:hover .p-action-btns {
      transform: translateX(0);
      opacity: 1;
  }

  .p-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a1a1a;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: 0.2s;
  }

  .p-btn:hover {
      background: var(--secondary-color);
      color: white;
  }

  .p-info {
      padding: 20px 5px 0;
      position: relative;
  }

  .p-rating-box {
      position: absolute;
      top: 20px;
      right: 5px;
      font-weight: 800;
      font-size: 0.85rem;
      color: #1a1a1a;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .p-rating-box i {
      color: var(--secondary-color);
  }

  .p-cat-name {
      font-size: 0.75rem;
      color: #bbb;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
  }

  .p-title {
      font-size: 1.15rem;
      font-weight: 700;
      font-family: Barlow, sans-serif;
      color: #1a1a1a;
      margin-bottom: 12px;
  }

  .p-price-row {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--primary-color);
  }

  .p-old-price {
      color: #ccc;
      text-decoration: line-through;
      margin-right: 10px;
      font-weight: 500;
  }

  /* Features Bar */
  .shop-features {
      padding: 60px 0;
      background: #ffffff;
      border-top: 1px solid #f0f0f0;
      border-bottom: 1px solid #f0f0f0;
      margin-top: 50px;
  }

  .feature-item {
      display: flex;
      align-items: center;
      gap: 20px;
  }

  .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--secondary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--primary-color);
  }

  .feature-item h6 {
      margin-bottom: 5px;
      font-weight: 800;
  }

  .feature-item p {
      margin-bottom: 0;
      color: #999;
      font-size: 0.85rem;
      font-weight: 600;
  }

  /* Architectural Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 100px 0 40px;
      position: relative;
      overflow: hidden;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 10rem;
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-main-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 40px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 18px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #ffffff;
      padding-left: 10px;
  }

  .footer-social-pill {
      display: flex;
      gap: 15px;
      margin-top: 40px;
  }

  .social-icon-circle {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: 0.3s;
      text-decoration: none;
  }

  .social-icon-circle:hover {
      background: var(--secondary-color);
      color: #000;
      transform: translateY(-5px);
  }

  /* Pagination Styles */
  .pagination-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      color: black;
      font-weight: 800;
      border-radius: 50%;
      text-decoration: none;
      transition: 0.3s;
      cursor: pointer;
  }

  .pagination-link:hover {
      background: #f0f0f0;
  }

  .pagination-link.active {
      background: var(--secondary-color) !important;
  }

  @media (max-width: 991px) {
      .footer-main-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .sidebar-col {
          display: none;
      }

      .shop-header h1 {
          font-size: 2.5rem;
      }
  }



  /* Top Bar */
  .top-bar {
      background-color: var(--primary-color);
      color: white;
      padding: 12px 0;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .top-bar a {
      color: var(--secondary-color);
      text-decoration: none;
      border-bottom: 1px solid;
  }

  /* Navbar */
  .navbar {
      padding: 0px 0;
      background: #424D52;
      border-bottom: 1px solid #f0f0f0;
  }

  .navbar-brand {
      display: flex;
      align-items: center;
      font-weight: 800;
      font-size: 1.5rem;
      color: #1a1a1a !important;
  }

  .brand-icon {
      background: var(--primary-color);
      color: var(--secondary-color);
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-size: 1.1rem;
  }

  .nav-link {
      font-weight: 600;
      color: #ffffff !important;
      margin: 0 15px;
      font-size: 0.9rem;
      transition: 0.3s;
  }

  .nav-link:hover {
      color: var(--secondary-color) !important;
  }

  /* Product Detail Header */
  .details-header {
      padding: 80px 0 40px;
      text-align: center;
      background: #fafafa;
  }

  .details-header h1 {
      font-size: 3.5rem;
      font-weight: 700;
      font-family: Barlow, sans-serif;
      margin-bottom: 15px;
      letter-spacing: -1px;
  }

  .breadcrumb-custom {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .breadcrumb-custom li {
      color: #bbb;
  }

  .breadcrumb-custom li::after {
      content: '/';
      margin: 0 12px;
      opacity: 0.5;
  }

  .breadcrumb-custom li:last-child::after {
      content: '';
  }

  .breadcrumb-custom a {
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
  }

  .breadcrumb-custom a:hover {
      color: var(--primary-color);
  }

  .breadcrumb-custom .active {
      color: var(--primary-color);
  }

  /* Vertical Gallery Layout */
  .product-main-row {
      padding: 80px 0;
  }

  .gallery-container {
      display: flex;
      gap: 20px;
  }

  .thumbnail-col {
      width: 100px;
      flex-shrink: 0;
  }

  .thumb-item {
      width: 100%;
      height: 100px;
      border-radius: 20px;
      background: var(--secondary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 2px solid transparent;
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      margin-bottom: 15px;
  }

  .thumb-item img {
      max-width: 60%;
      transition: 0.4s;
  }

  .thumb-item:hover {
      transform: scale(1.05);
      border-color: #ddd;
  }

  .thumb-item.active {
      border-color: var(--secondary-color);
      background: white;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .main-img-display {
      flex-grow: 1;
      background: #ffffff;
      border: 1px solid #f0f0f0;
      border-radius: 40px;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
  }

  .main-img-display img {
      max-width: 80%;
      transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .main-img-decor {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: var(--secondary-soft);
      border-radius: 50%;
      z-index: -1;
  }

  /* Product Info Styling */
  .product-info-col {
      padding-left: 60px;
  }

  .header-dash {
      width: 30px;
      height: 3px;
      background: var(--secondary-color);
      border-radius: 10px;
      display: inline-block;
      margin-right: 12px;
      vertical-align: middle;
  }

  .p-detail-cat {
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      display: block;
  }

  .p-detail-title {
      font-size: 3.2rem;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.1;
      letter-spacing: -1.5px;
  }

  .badge-stock {
      background: #E6F4EA;
      color: #1E8E3E;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 800;
      vertical-align: middle;
      margin-left: 10px;
  }

  .p-rating-summary {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
  }

  .stars {
      color: var(--secondary-color);
      font-size: 0.85rem;
  }

  .review-count {
      color: #aaa;
      font-size: 0.85rem;
      font-weight: 700;
  }

  .p-detail-price {
      font-size: 2.5rem;
      font-weight: 700;
      font-family: Barlow, sans-serif;
      color: var(--secondary-color);
      margin-bottom: 30px;
      display: flex;
      align-items: baseline;
  }

  .p-detail-price del {
      font-size: 1.4rem;
      color: #ddd;
      margin-left: 15px;
      font-weight: 500;
  }

  .p-short-desc {
      color: #666;
      line-height: 1.9;
      font-size: 1.05rem;
      margin-bottom: 40px;
  }

  /* Technical Selector Chips */
  .attr-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      display: block;
      color: #000;
  }

  .attr-chips {
      display: flex;
      gap: 12px;
      margin-bottom: 40px;
  }

  .chip {
      padding: 14px 28px;
      border: 2px solid #f0f0f0;
      border-radius: 15px;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .chip:hover {
      border-color: var(--primary-color);
      background: #fafafa;
  }

  .chip.active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
      box-shadow: 0 10px 20px rgba(66, 77, 82, 0.2);
  }

  /* Specialized Action Group */
  .action-group {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 50px;
      flex-wrap: wrap;
  }

  .qty-box {
      display: flex;
      align-items: center;
      border: 2px solid #f0f0f0;
      border-radius: 100px;
      padding: 6px;
      background: #fff;
  }

  .qty-btn {
      width: 44px;
      height: 44px;
      border: none;
      background: transparent;
      font-weight: 800;
      font-size: 1.2rem;
      cursor: pointer;
      transition: 0.2s;
  }

  .qty-btn:hover {
      color: var(--secondary-color);
  }

  .qty-input {
      width: 44px;
      border: none;
      text-align: center;
      font-weight: 800;
      outline: none;
      font-size: 1rem;
  }

  .btn-add-cart {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 18px 45px;
      border-radius: 100px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.85rem;
      transition: 0.4s;
  }

  .btn-add-cart:hover {
      background: #000;
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .btn-bulk {
      background: var(--secondary-color);
      color: #000;
      border: none;
      padding: 18px 30px;
      border-radius: 100px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 0.85rem;
      transition: 0.4s;
  }

  .btn-bulk:hover {
      background: #000;
      color: white;
      transform: translateY(-3px);
  }

  .btn-wishlist {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid #f0f0f0;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      transition: 0.3s;
  }

  .btn-wishlist:hover {
      border-color: var(--secondary-color);
      color: var(--secondary-color);
      transform: rotate(15deg);
  }

  /* Benefits Grid */
  .benefits-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px solid #f0f0f0;
  }

  .benefit-item {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .benefit-icon {
      font-size: 1.2rem;
      color: var(--secondary-color);
  }

  .benefit-text {
      font-size: 0.85rem;
      font-weight: 700;
      color: #555;
  }

  /* Content Tabs Redesign */
  .tabs-section {
      padding: 100px 0;
      background: #fdfdfd;
  }

  .nav-tabs-custom {
      display: flex;
      justify-content: center;
      gap: 80px;
      border-bottom: 2px solid #f0f0f0;
      margin-bottom: 80px;
  }

  .tab-trigger {
      padding: 20px 0;
      font-weight: 800;
      font-size: 1.1rem;
      color: #ccc;
      cursor: pointer;
      border-bottom: 4px solid transparent;
      transition: 0.4s;
      text-transform: uppercase;
      letter-spacing: 2px;
  }

  .tab-trigger.active {
      color: var(--primary-color);
      border-color: var(--primary-color);
  }

  .tab-pane {
      display: none;
      animation: slideUp 0.6s ease forwards;
  }

  .tab-pane.active {
      display: block;
  }

  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Descriptions Layout */
  .spec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
  }

  .composition-card {
      background: white;
      border: 1px solid #eee;
      border-radius: 30px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
  }

  .spec-list {
      list-style: none;
      padding: 0;
  }

  .spec-list li {
      display: flex;
      justify-content: space-between;
      padding: 15px 0;
      border-bottom: 1px solid #f7f7f7;
      font-weight: 600;
  }

  .spec-list li span:last-child {
      color: var(--primary-color);
      font-weight: 800;
  }

  /* Review Design */
  .review-card {
      padding: 40px;
      border-radius: 30px;
      background: white;
      border: 1px solid #f0f0f0;
      margin-bottom: 30px;
      transition: 0.3s;
  }

  .review-card:hover {
      border-color: var(--secondary-color);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
  }

  /* RELATED PRODUCTS UNIQUE SECTION */
  .related-section {
      padding: 100px 0;
      background: white;
  }

  .related-card {
      border-radius: 30px;
      padding: 25px;
      transition: 0.4s;
      border: 1px solid #f7f7f7;
      height: 100%;
      text-decoration: none;
      color: inherit;
      display: block;
  }

  .related-card:hover {
      transform: translateY(-10px);
      border-color: var(--secondary-color);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  }

  .related-img {
      background: var(--secondary-soft);
      border-radius: 20px;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      overflow: hidden;
  }

  .related-img img {
      max-width: 60%;
      transition: 0.5s;
  }

  .related-card:hover .related-img img {
      transform: scale(1.1);
  }

  .related-title {
      font-weight: 700;
      font-family: Barlow, sans-serif;
      font-size: 1.1rem;
      margin-bottom: 10px;
  }

  /* Architectural Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 120px 0 60px;
      border-radius: 60px 60px 0 0;
      position: relative;
      overflow: hidden;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 10rem;
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-main-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 40px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 18px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #ffffff;
      padding-left: 10px;
  }

  @media (max-width: 991px) {
      .gallery-container {
          flex-direction: column-reverse;
      }

      .thumbnail-col {
          width: 100%;
          display: flex;
          overflow-x: auto;
          gap: 15px;
          padding-bottom: 10px;
      }

      .thumbnail-col::-webkit-scrollbar {
          display: none;
      }

      .thumb-item {
          width: 80px;
          flex-shrink: 0;
          margin-bottom: 0;
      }

      .product-info-col {
          padding-left: 0;
          margin-top: 50px;
      }

      .spec-grid {
          grid-template-columns: 1fr;
      }

      .footer-main-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .nav-tabs-custom {
          gap: 30px;
      }
  }

  /* Contact Hero */
  .contact-hero {
      padding: 100px 0 60px;
      text-align: center;
      background: #fafafa;
      position: relative;
      overflow: hidden;
  }

  .contact-hero h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -2px;
  }

  .breadcrumb-custom {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
  }

  .breadcrumb-custom li {
      color: #bbb;
  }

  .breadcrumb-custom li::after {
      content: '/';
      margin: 0 15px;
      opacity: 0.5;
  }

  .breadcrumb-custom li:last-child::after {
      content: '';
  }

  .breadcrumb-custom a {
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
  }

  .breadcrumb-custom .active {
      color: var(--primary-color);
  }

  /* Contact Workspace */
  .contact-section {
      padding: 100px 0;
  }

  .contact-info-panel {
      padding-right: 60px;
  }

  .header-dash {
      width: 40px;
      height: 3px;
      background: var(--secondary-color);
      border-radius: 10px;
      display: inline-block;
      margin-right: 15px;
      vertical-align: middle;
  }

  .contact-tag {
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--secondary-color);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 20px;
      display: block;
  }

  .contact-panel-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 30px;
      line-height: 1.1;
  }

  .contact-panel-desc {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 60px;
  }

  .method-card {
      display: flex;
      align-items: flex-start;
      gap: 25px;
      margin-bottom: 45px;
      padding: 30px;
      border-radius: 25px;
      transition: 0.4s;
      border: 1px solid transparent;
  }

  .method-card:hover {
      background: #fff;
      border-color: #f0f0f0;
      box-shadow: var(--card-shadow);
      transform: translateX(10px);
  }

  .method-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--secondary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.4rem;
      flex-shrink: 0;
  }

  .method-content h5 {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 8px;
  }

  .method-content p {
      margin-bottom: 0;
      color: var(--text-muted);
      font-weight: 600;
      line-height: 1.6;
  }

  /* Contact Form */
  .form-container {
      background: #fff;
      border-radius: 40px;
      padding: 60px;
      border: 1px solid #f0f0f0;
      box-shadow: var(--luxury-shadow);
  }

  .form-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 40px;
  }

  .input-group-custom {
      margin-bottom: 35px;
      position: relative;
  }

  .input-group-custom label {
      display: block;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #bbb;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
  }

  .input-group-custom input,
  .input-group-custom textarea {
      width: 100%;
      border: none;
      border-bottom: 2px solid #eee;
      background: transparent;
      padding: 12px 0;
      font-weight: 700;
      color: var(--primary-color);
      outline: none;
      transition: 0.3s;
  }

  .input-group-custom input:focus,
  .input-group-custom textarea:focus {
      border-color: var(--primary-color);
  }

  .input-group-custom textarea {
      min-height: 100px;
      resize: none;
  }

  .btn-send-inquiry {
      width: 100%;
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 22px;
      border-radius: 100px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.85rem;
      margin-top: 20px;
      transition: 0.4s;
  }

  .btn-send-inquiry:hover {
      background: #000;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  /* Presence Map Area */
  .presence-section {
      padding: 100px 0;
      background: #fafafa;
  }

  .location-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
  }

  .location-card {
      background: white;
      border-radius: 30px;
      padding: 40px;
      border: 1px solid #f0f0f0;
      transition: 0.4s;
  }

  .location-card:hover {
      transform: translateY(-10px);
      border-color: var(--secondary-color);
  }

  .loc-tag {
      font-size: 0.7rem;
      font-weight: 800;
      color: #bbb;
      text-transform: uppercase;
      margin-bottom: 15px;
      display: block;
  }

  .loc-city {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 15px;
  }

  .loc-address {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.6;
      margin-bottom: 25px;
  }

  .loc-link {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      border-bottom: 2px solid var(--secondary-color);
  }

  /* Architectural Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 120px 0 60px;
      border-radius: 60px 60px 0 0;
      position: relative;
      overflow: hidden;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 10rem;
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-main-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 40px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 18px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #ffffff;
      padding-left: 10px;
  }

  @media (max-width: 991px) {
      .contact-info-panel {
          padding-right: 0;
          margin-bottom: 80px;
          text-align: center;
      }

      .method-card {
          justify-content: center;
          text-align: center;
          flex-direction: column;
          align-items: center;
      }

      .location-grid {
          grid-template-columns: 1fr;
      }

      .footer-main-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .contact-hero h1 {
          font-size: 3rem;
      }
  }

  /* Contact Hero */
  .contact-hero {
      padding: 100px 0 60px;
      text-align: center;
      background: #fafafa;
      position: relative;
      overflow: hidden;
  }

  .contact-hero h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -2px;
  }

  .breadcrumb-custom {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
  }

  .breadcrumb-custom li {
      color: #bbb;
  }

  .breadcrumb-custom li::after {
      content: '/';
      margin: 0 15px;
      opacity: 0.5;
  }

  .breadcrumb-custom li:last-child::after {
      content: '';
  }

  .breadcrumb-custom a {
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
  }

  .breadcrumb-custom .active {
      color: var(--primary-color);
  }

  /* Contact Workspace */
  .contact-section {
      padding: 100px 0;
  }

  .contact-info-panel {
      padding-right: 60px;
  }

  .header-dash {
      width: 40px;
      height: 3px;
      background: var(--secondary-color);
      border-radius: 10px;
      display: inline-block;
      margin-right: 15px;
      vertical-align: middle;
  }

  .contact-tag {
      font-size: 0.8rem;
      font-weight: 800;
      color: var(--secondary-color);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 20px;
      display: block;
  }

  .contact-panel-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 30px;
      line-height: 1.1;
  }

  .contact-panel-desc {
      color: var(--text-muted);
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 60px;
  }

  .method-card {
      display: flex;
      align-items: flex-start;
      gap: 25px;
      margin-bottom: 45px;
      padding: 30px;
      border-radius: 25px;
      transition: 0.4s;
      border: 1px solid transparent;
  }

  .method-card:hover {
      background: #fff;
      border-color: #f0f0f0;
      box-shadow: var(--card-shadow);
      transform: translateX(10px);
  }

  .method-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--secondary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1.4rem;
      flex-shrink: 0;
  }

  .method-content h5 {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 8px;
  }

  .method-content p {
      margin-bottom: 0;
      color: var(--text-muted);
      font-weight: 600;
      line-height: 1.6;
  }

  /* Contact Form */
  .form-container {
      background: #fff;
      border-radius: 40px;
      padding: 60px;
      border: 1px solid #f0f0f0;
      box-shadow: var(--luxury-shadow);
  }

  .form-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 40px;
  }

  .input-group-custom {
      margin-bottom: 35px;
      position: relative;
  }

  .input-group-custom label {
      display: block;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #bbb;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
  }

  .input-group-custom input,
  .input-group-custom textarea {
      width: 100%;
      border: none;
      border-bottom: 2px solid #eee;
      background: transparent;
      padding: 12px 0;
      font-weight: 700;
      color: var(--primary-color);
      outline: none;
      transition: 0.3s;
  }

  .input-group-custom input:focus,
  .input-group-custom textarea:focus {
      border-color: var(--primary-color);
  }

  .input-group-custom textarea {
      min-height: 100px;
      resize: none;
  }

  .btn-send-inquiry {
      width: 100%;
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 22px;
      border-radius: 100px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.85rem;
      margin-top: 20px;
      transition: 0.4s;
  }

  .btn-send-inquiry:hover {
      background: #000;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  /* Map Section */
  .map-section {
      padding-bottom: 100px;
      position: relative;
  }

  .map-wrapper {
      width: 100%;
      height: 500px;
      border-radius: 40px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      position: relative;
  }

  .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(1) contrast(1.2) opacity(0.85);
      transition: 0.5s ease;
  }

  .map-wrapper:hover iframe {
      filter: grayscale(0.2) contrast(1) opacity(1);
  }

  .map-overlay-info {
      position: absolute;
      bottom: 30px;
      left: 30px;
      background: white;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-width: 300px;
      z-index: 10;
  }

  .map-overlay-info h6 {
      font-weight: 800;
      margin-bottom: 5px;
      color: var(--primary-color);
  }

  .map-overlay-info p {
      margin-bottom: 0;
      font-size: 0.85rem;
      color: var(--text-muted);
  }

  /* Presence Map Area */
  .presence-section {
      padding: 100px 0;
      background: #fafafa;
  }

  .location-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 60px;
  }

  .location-card {
      background: white;
      border-radius: 30px;
      padding: 40px;
      border: 1px solid #f0f0f0;
      transition: 0.4s;
  }

  .location-card:hover {
      transform: translateY(-10px);
      border-color: var(--secondary-color);
  }

  .loc-tag {
      font-size: 0.7rem;
      font-weight: 800;
      color: #bbb;
      text-transform: uppercase;
      margin-bottom: 15px;
      display: block;
  }

  .loc-city {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 15px;
  }

  .loc-address {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.6;
      margin-bottom: 25px;
  }

  .loc-link {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      border-bottom: 2px solid var(--secondary-color);
  }

  /* Architectural Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 120px 0 60px;
      border-radius: 60px 60px 0 0;
      position: relative;
      overflow: hidden;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 10rem;
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-main-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 40px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 18px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #ffffff;
      padding-left: 10px;
  }

  @media (max-width: 991px) {
      .contact-info-panel {
          padding-right: 0;
          margin-bottom: 80px;
          text-align: center;
      }

      .method-card {
          justify-content: center;
          text-align: center;
          flex-direction: column;
          align-items: center;
      }

      .location-grid {
          grid-template-columns: 1fr;
      }

      .footer-main-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .contact-hero h1 {
          font-size: 3rem;
      }

      .map-overlay-info {
          display: none;
      }
  }

  /* Cart Header */
  .cart-hero {
      padding: 80px 0 40px;
      text-align: center;
      background: #fff;
      position: relative;
  }

  .cart-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      letter-spacing: -2px;
  }

  .breadcrumb-custom {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
  }

  .breadcrumb-custom li {
      color: #bbb;
  }

  .breadcrumb-custom li::after {
      content: '/';
      margin: 0 15px;
      opacity: 0.5;
  }

  .breadcrumb-custom li:last-child::after {
      content: '';
  }

  .breadcrumb-custom a {
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
  }

  .breadcrumb-custom .active {
      color: var(--primary-color);
  }

  /* Cart Logic Workspace */
  .cart-main-section {
      padding: 80px 0;
  }

  .cart-items-wrapper {
      padding-right: 40px;
  }

  .project-item-card {
      background: #fff;
      border-radius: 30px;
      padding: 30px;
      margin-bottom: 25px;
      border: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
  }

  .project-item-card:hover {
      border-color: var(--secondary-color);
      box-shadow: var(--luxury-shadow);
      transform: translateX(10px);
  }

  .item-visual-box {
      width: 140px;
      height: 140px;
      border-radius: 20px;
      background: var(--secondary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
  }

  .item-visual-box img {
      max-width: 70%;
      transition: 0.5s;
  }

  .project-item-card:hover .item-visual-box img {
      transform: scale(1.1);
  }

  .item-info-box {
      flex-grow: 1;
      padding: 0 35px;
  }

  .item-category {
      font-size: 0.7rem;
      font-weight: 800;
      color: #bbb;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 5px;
      display: block;
  }

  .item-name {
      font-size: 1.3rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 8px;
  }

  .item-spec {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-muted);
  }

  .item-price-unit {
      width: 120px;
      text-align: right;
  }

  .label-mini {
      font-size: 0.65rem;
      font-weight: 800;
      color: #bbb;
      text-transform: uppercase;
      margin-bottom: 5px;
      display: block;
  }

  .val-bold {
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--primary-color);
  }

  .item-qty-control {
      width: 160px;
      padding: 0 30px;
  }

  .qty-stepper {
      display: flex;
      align-items: center;
      border: 2px solid #f9f9f9;
      border-radius: 100px;
      padding: 4px;
      background: #fff;
  }

  .qty-btn {
      width: 34px;
      height: 34px;
      border: none;
      background: transparent;
      font-weight: 800;
      cursor: pointer;
      border-radius: 50%;
      transition: 0.2s;
  }

  .qty-btn:hover {
      background: var(--secondary-soft);
      color: var(--secondary-color);
  }

  .qty-input {
      width: 34px;
      border: none;
      text-align: center;
      font-weight: 800;
      outline: none;
      font-size: 0.9rem;
  }

  .item-subtotal-box {
      width: 130px;
      text-align: right;
  }

  .btn-item-remove {
      position: absolute;
      top: 25px;
      right: 25px;
      color: #eee;
      cursor: pointer;
      transition: 0.3s;
  }

  .btn-item-remove:hover {
      color: #ff4d4d;
      transform: rotate(90deg) scale(1.2);
  }

  /* Procurement Summary Sidebar */
  .summary-sticky {
      position: sticky;
      top: 120px;
  }

  .procurement-receipt {
      background: var(--primary-color);
      border-radius: 40px;
      padding: 50px;
      color: white;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
  }

  .procurement-receipt::after {
      content: 'P';
      position: absolute;
      bottom: -30px;
      right: -20px;
      font-size: 15rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.03);
      font-family: Barlow, sans-serif;
      pointer-events: none;
  }

  .receipt-title {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 35px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 20px;
  }

  .receipt-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      font-weight: 600;
      font-size: 0.95rem;
  }

  .receipt-row .label {
      color: rgba(255, 255, 255, 0.5);
  }

  .receipt-total {
      margin-top: 40px;
      padding-top: 40px;
      border-top: 1px dashed rgba(255, 255, 255, 0.2);
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .total-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, 0.6);
  }

  .total-val {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--secondary-color);
  }

  .btn-procure-now {
      width: 100%;
      background: var(--secondary-color);
      color: #000;
      border: none;
      padding: 22px;
      border-radius: 100px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.85rem;
      margin-top: 45px;
      transition: 0.4s;
      position: relative;
      z-index: 2;
  }

  .btn-procure-now:hover {
      background: #fff;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .promo-wrap {
      display: flex;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      padding: 6px;
      margin-top: 35px;
  }

  .promo-wrap input {
      background: transparent;
      border: none;
      color: white;
      padding-left: 15px;
      flex-grow: 1;
      outline: none;
      font-size: 0.8rem;
  }

  .promo-btn {
      background: white;
      border: none;
      padding: 10px 20px;
      border-radius: 100px;
      font-weight: 800;
      font-size: 0.7rem;
      text-transform: uppercase;
  }

  /* Empty State */
  .cart-empty-state {
      text-align: center;
      padding: 100px 0;
      display: none;
  }

  .empty-icon-circle {
      width: 120px;
      height: 120px;
      background: #f5f5f5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 35px;
      font-size: 3rem;
      color: #ddd;
  }

  /* Architectural Footer */
  .architect-footer {
      background: #121518;
      color: #ffffff;
      padding: 100px 0 40px;
      border-radius: 60px 60px 0 0;
      position: relative;
      overflow: hidden;
  }

  .footer-highlight-text {
      font-family: Barlow, sans-serif;
      font-size: 10rem;
      position: absolute;
      bottom: -50px;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.02);
      font-weight: 900;
      pointer-events: none;
      z-index: 1;
  }

  .footer-main-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
  }

  .footer-nav-title {
      font-weight: 800;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 40px;
      color: var(--secondary-color);
  }

  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-nav-list li {
      margin-bottom: 18px;
  }

  .footer-nav-list a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
  }

  .footer-nav-list a:hover {
      color: #ffffff;
      padding-left: 10px;
  }

  @media (max-width: 1200px) {
      .project-item-card {
          flex-wrap: wrap;
      }

      .item-info-box {
          width: calc(100% - 140px);
          padding-right: 0;
      }

      .item-price-unit,
      .item-qty-control,
      .item-subtotal-box {
          margin-top: 30px;
          text-align: left;
          width: 33%;
          padding: 0;
      }
  }

  @media (max-width: 991px) {
      .cart-items-wrapper {
          padding-right: 0;
          margin-bottom: 60px;
      }

      .footer-main-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .cart-hero h1 {
          font-size: 2.8rem;
      }

      /* Added Global Responsiveness Fixes */
      .curated-v6-container {
          flex-direction: column;
          min-height: auto;
      }

      .curated-image-side {
          height: 350px;
          flex: none;
          width: 100%;
      }

      .curated-content-side {
          padding: 40px 20px;
          width: 100%;
      }

      .curated-v6-title {
          font-size: 2.5rem;
      }

      .collection-mosaic-grid {
          grid-template-columns: 1fr;
          height: auto;
      }

      .mosaic-item:nth-child(1) {
          grid-row: auto;
          height: 350px;
      }

      .mosaic-item {
          height: 300px;
      }

      .edition-stats-row {
          flex-wrap: wrap;
          gap: 20px;
      }

      .visual-main-frame {
          height: 400px;
          width: 100%;
          margin: 0 auto;
          border-radius: 20px 80px 20px 10px;
      }

      .visual-floating-card {
          position: relative;
          left: 0;
          bottom: 0;
          margin-top: 20px;
          max-width: 100%;
          transform: none !important;
      }

      .location-grid {
          grid-template-columns: 1fr;
      }

      .method-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      .footer-main-grid {
          grid-template-columns: 1fr !important;
      }

      .footer-cta-box {
          flex-direction: column;
          text-align: center;
          gap: 30px;
          margin-top: -30px;
          padding: 40px;
      }

      .footer-highlight-text {
          font-size: 6rem;
          width: 100%;
          text-align: center;
      }

      /* Add wrap for feature items */
      .feature-item-ec {
          padding: 30px;
          text-align: center;
      }
  }

  @media (max-width: 768px) {

      .hero-title,
      .hero-title-main {
          font-size: 2.5rem !important;
      }

      .collections-grid {
          grid-template-columns: 1fr;
          grid-auto-rows: 250px;
      }

      .card-wide {
          grid-column: span 1;
      }

      .gallery-container {
          flex-direction: column-reverse;
      }

      .thumbnail-col {
          width: 100% !important;
          display: flex;
          overflow-x: auto;
          gap: 10px;
      }

      .thumb-item {
          width: 80px;
          height: 80px;
          flex-shrink: 0;
      }

      .main-img-display {
          height: 300px;
          width: 100%;
      }

      .project-item-card {
          flex-direction: column;
          text-align: center;
          align-items: center;
          padding: 20px;
          gap: 15px;
      }

      .item-visual-box {
          width: 100%;
          height: 200px;
      }

      .item-info-box {
          padding: 0 !important;
          width: 100% !important;
      }

      .item-qty-control,
      .item-price-unit,
      .item-subtotal-box {
          width: 100% !important;
          text-align: center !important;
          margin: 5px 0 !important;
      }

      .qty-stepper {
          justify-content: center;
      }

      .btn-item-remove {
          position: relative;
          top: 0;
          right: 0;
          margin-top: 10px;
          color: #ff4d4d;
      }

      .journal-img-box {
          height: 250px;
      }

      /* Testimonials mobile */
      .testimonial-v9-card {
          padding: 30px;
      }

      .v9-quote-icon {
          left: 30px;
          top: -20px;
          width: 50px;
          height: 50px;
          font-size: 1.2rem;
      }
  }

  /* OVERFLOW KILLER */
  html,
  body {
      max-width: 100vw;
      overflow-x: hidden !important;
      width: 100%;
  }

  /* Prevent Bootstrap rows from overflowing viewport when placed without container */
  .row {
      max-width: 100%;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }

  /* Enforce image bounding */
  img {
      max-width: 100%;
      height: auto;
  }

  /* Reduce Logo Size Globally to Medium */
  .navbar-brand img {
      height: 65px !important;
      width: auto;
      transition: 0.3s ease;
  }

  @media (max-width: 991px) {
      .navbar-brand img {
          height: 50px !important;
      }
  }