/* ==================== bathtub.html (recovered from VS Code local history, 6 blocks) ==================== */
/* CSS Variables for Theme Colors */
:root {
  --primary-red: #C62828;
  --dark-red: #8B0000;
  --light-red: #FF5252;
  --primary-black: #121212;
  --dark-black: #000000;
  --light-black: #212121;
  --primary-yellow: #FFD700;
  --dark-yellow: #FFA000;
  --light-yellow: #FFECB3;
  --white: #FFFFFF;
  --gray: #F5F5F5;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--light-black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
}

/* Header Styles */
header {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}



.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-yellow);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .guide-step {
    min-width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #e9eef2 0%, #d6dee5 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== CONTAINER FIXES ===== */
.auto-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 20px;
}

/* ===== TOP NAVBAR ===== */
/* ===== CATEGORY BAR ===== */
/* Dropdown */
/* ===== SIDE MENU ===== */
/* ===== LAYOUT 1 STYLES ===== */
:root {
  --gold: #FFD700;
  --crimson: #DC143C;
  --jet-black: #121212;
  --dark-gray: #1e1e1e;
}

.layout-1 {
  padding: 60px 20px;
  background: radial-gradient(circle at 50% 0%, var(--jet-black) 0%, #000 100%);
}

.layout-1 .hero-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--gold), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cube-container {
  perspective: 1000px;
  width: 280px;
  height: 280px;
  margin: 0 auto 60px;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 20s infinite linear;
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(30, 30, 30, 0.95);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(140px);
}

.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(140px);
}

.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(140px);
}

.cube-face:nth-child(4) {
  transform: rotateY(270deg) translateZ(140px);
}

.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(140px);
}

.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(140px);
}

.cube-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.cube-title {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

/* Tamil Text */
.style2 {
  font-size: 88px;
  color: #fff;
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  text-shadow: -2px -2px 0 #ff0d0d, 2px -2px 0 #ff3c3c, -2px 2px 0 #ff3c3c, 2px 2px 0 #ff3c3c;
}

.stagger-text .line {
  display: block;
}

.line1 {
  margin-left: 0;
}

.line2 {
  margin-left: 220px;
}

.line3 {
  margin-left: 450px;
}

/* Service Grid */
.service-grid-l1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.service-card-l1 {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
}

/* ===== PRODUCT SHOWCASE ===== */
.main-container {
  display: flex;
  min-height: 600px;
  background: #fff;
}

.sidebar {
  width: 280px;
  background: #1a1a1a;
  color: white;
  padding: 30px 0;
}

.products-title {
  color: #ffcc00;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d10000;
}

.product-menu {
  list-style: none;
}

.product-item {
  padding: 15px 25px;
  margin: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.product-item:hover {
  background: #333;
}

.product-item.active {
  background: #d10000;
}

.product-icon {
  font-size: 1.3rem;
  color: #ffcc00;
  width: 25px;
  text-align: center;
}

.content-area {
  flex: 1;
  padding: 30px;
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffcc00;
}

.product-header i {
  font-size: 2.5rem;
  color: #d10000;
}

.product-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
}

.product-gallery-container {
  margin-bottom: 30px;
}

.gallery-main {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: #d10000;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.product-info {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #d10000;
}

.features {
  list-style: none;
  margin-top: 15px;
}

.features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li i {
  color: #ffcc00;
}

.product-specs {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #ffcc00;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .style2 {
    font-size: 60px;
  }

  .line2 {
    margin-left: 150px;
  }

  .line3 {
    margin-left: 300px;
  }
}

@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .product-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .style2 {
    font-size: 40px;
  }

  .line1,
  .line2,
  .line3 {
    margin-left: 0 !important;
    text-align: center;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cube-container {
    width: 220px;
    height: 220px;
  }

  .cube-face {
    width: 220px;
    height: 220px;
  }

  .cube-face:nth-child(1) {
    transform: rotateY(0deg) translateZ(110px);
  }

  .cube-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(110px);
  }

  .cube-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(110px);
  }

  .cube-face:nth-child(4) {
    transform: rotateY(270deg) translateZ(110px);
  }

  .cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(110px);
  }

  .cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(110px);
  }

  .style2 {
    font-size: 32px;
  }
}

/* --- Variables & Reset --- */
:root {
  --primary-red: #D90429;
  --dark-red: #8D0018;
  --accent-yellow: #FFD60A;
  --bg-black: #0f0f0f;
  --card-black: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #b3b3b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* --- Main Section Layout --- */
.sink-about-animated {
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Floating Background Blobs --- */
.floating-elements .float-element {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
}

.el1 {
  background: var(--primary-red);
  top: -100px;
  left: -100px;
}

.el2 {
  background: var(--accent-yellow);
  bottom: -100px;
  right: -100px;
}

/* --- Header --- */
.animated-header {
  text-align: center;
  margin-bottom: 60px;
}

.typing-text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-line {
  display: block;
  color: var(--text-white);
}

.sub-line {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.decoration-line {
  height: 2px;
  width: 60px;
  background: var(--accent-yellow);
}

.decoration-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-red);
  transform: rotate(45deg);
}

/* --- Grid Layout (Video Left, Text Right) --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* --- Video Styling --- */
.animated-video-container {
  position: relative;
}

.video-frame {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  width: 100%;
  height: 600px;
  /* Fixed height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}

.sink-video-animated {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The decorative red box behind video */
.video-accent-box {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-red);
  border-radius: 12px;
  z-index: -1;
  transition: transform 0.3s ease;
}

.animated-video-container:hover .video-accent-box {
  transform: translate(-10px, 10px);
}

.video-caption {
  margin-top: 40px;
  text-align: center;
  font-family: monospace;
  color: var(--accent-yellow);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- Text Content --- */
.reveal-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.highlight-word {
  color: var(--text-white);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
}

/* --- Important Message Box --- */
.important-message {
  background: linear-gradient(145deg, var(--card-black), #222);
  border-left: 4px solid var(--accent-yellow);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-icon {
  font-size: 1.5rem;
  color: var(--accent-yellow);
  background: rgba(255, 214, 10, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.message-content h5 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.message-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Stats --- */
.animated-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Materials Section --- */
.section-subtitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-white);
}

.materials-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.material-item {
  background: var(--card-black);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.material-item:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.1);
}

.material-icon {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.material-item h4 {
  color: var(--text-white);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.material-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .video-accent-box {
    left: 10px;
    top: 10px;
  }

  .typing-text {
    font-size: 2rem;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.projects-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.projects-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.projects-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

/* ===== VIDEO SECTION BASE ===== */
.projects-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.projects-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* ===== MOBILE FIX ONLY ===== */
@media (max-width: 768px) {
  .projects-video-section {
    height: 70vh;
    /* smaller height for mobile */
  }

  .projects-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important */
  }

  .projects-content {
    padding: 0 20px;
    text-align: center;
  }

  .projects-content h1 {
    font-size: 28px;
  }

  .projects-content p {
    font-size: 14px;
  }
}

/* ================= SECTION ================= */
.products-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
}

/* ================= GRID CONTAINER ================= */
.products-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* ================= IMAGE ================= */
.image-box {
  width: 100%;
  height: 250px;

  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;

}

.product-card:hover .image-box img {
  transform: scale(1.07);
}

/* ================= TITLE ================= */
.product-card h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= PRICE TAG ================= */
.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #ffd700;
  padding: 8px 5px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 13px;
}

/* ================= BUTTON ================= */
.view-btn {
  display: block;
  margin: 0 auto;
  background: linear-gradient(90deg, #ff0000, #b30000);
  color: #ffd700;
  border: none;
  padding: 10px 12px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}

.view-btn:hover {
  background: linear-gradient(90deg, #b30000, #ff0000);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-container {
    grid-template-columns: 1fr;
  }

  .image-box {
    height: 200px;
  }
}

.image-box {
  width: 100%;
  height: auto;
  /* remove fixed height */
  border: 2px solid #fff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: 0.4s ease;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3498db;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-icon {
  position: absolute;
  top: 170px;
  left: 20px;
  background: #3498db;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-size: 1.5rem;
  border: 4px solid white;
  z-index: 1;
}

.product-content {
  padding: 30px 20px 20px;
}

.product-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-content p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.product-tag {
  display: none;
  background: #e8f4fc;
  color: #3498db;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .product-content {
    padding: 25px 15px 15px;
  }
}

.kitchen-products {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  /* makes text visible */
}

/* Background Video */
.kitchen-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark Overlay (for readability) */
.kitchen-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.);
  z-index: 1;
}

/* Keep content above video */
.kitchen-products .container {
  position: relative;
  z-index: 2;
}

/* Clean Solid Cards (No Blur) */
.kitchen-products .product-card {
  background: rgba(255, 255, 255, 0.95);
  /* solid white */
  color: #000;
  border: none;
}

.kitchen-products::before {
  background: rgba(0, 0, 0, 0.1);
}

/* ==================== door.html (recovered from VS Code local history, 6 blocks) ==================== */
/* CSS Variables for Theme Colors */
:root {
  --primary-red: #C62828;
  --dark-red: #8B0000;
  --light-red: #FF5252;
  --primary-black: #121212;
  --dark-black: #000000;
  --light-black: #212121;
  --primary-yellow: #FFD700;
  --dark-yellow: #FFA000;
  --light-yellow: #FFECB3;
  --white: #FFFFFF;
  --gray: #F5F5F5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--light-black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}



.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-yellow);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .guide-step {
    min-width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  background: linear-gradient(145deg, #e9eef2 0%, #d6dee5 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== CONTAINER FIXES ===== */
.auto-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 20px;
}

/* ===== TOP NAVBAR ===== */
/* ===== CATEGORY BAR ===== */
/* Dropdown */
/* ===== SIDE MENU ===== */
/* ===== LAYOUT 1 STYLES ===== */
:root {
  --gold: #FFD700;
  --crimson: #DC143C;
  --jet-black: #121212;
  --dark-gray: #1e1e1e;
}

.layout-1 {
  padding: 60px 20px;
  background: radial-gradient(circle at 50% 0%, var(--jet-black) 0%, #000 100%);
}

.layout-1 .hero-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--gold), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cube-container {
  perspective: 1000px;
  width: 280px;
  height: 280px;
  margin: 0 auto 60px;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 20s infinite linear;
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(30, 30, 30, 0.95);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(140px);
}

.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(140px);
}

.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(140px);
}

.cube-face:nth-child(4) {
  transform: rotateY(270deg) translateZ(140px);
}

.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(140px);
}

.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(140px);
}

.cube-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.cube-title {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

/* Tamil Text */
.style2 {
  font-size: 88px;
  color: #fff;
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  text-shadow: -2px -2px 0 #ff0d0d, 2px -2px 0 #ff3c3c, -2px 2px 0 #ff3c3c, 2px 2px 0 #ff3c3c;
}

.stagger-text .line {
  display: block;
}

.line1 {
  margin-left: 0;
}

.line2 {
  margin-left: 220px;
}

.line3 {
  margin-left: 450px;
}

/* Service Grid */
.service-grid-l1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.service-card-l1 {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
}

/* ===== PRODUCT SHOWCASE ===== */
.main-container {
  display: flex;
  min-height: 600px;
  background: #fff;
}

.sidebar {
  width: 280px;
  background: #1a1a1a;
  color: white;
  padding: 30px 0;
}

.products-title {
  color: #ffcc00;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d10000;
}

.product-menu {
  list-style: none;
}

.product-item {
  padding: 15px 25px;
  margin: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.product-item:hover {
  background: #333;
}

.product-item.active {
  background: #d10000;
}

.product-icon {
  font-size: 1.3rem;
  color: #ffcc00;
  width: 25px;
  text-align: center;
}

.content-area {
  flex: 1;
  padding: 30px;
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffcc00;
}

.product-header i {
  font-size: 2.5rem;
  color: #d10000;
}

.product-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
}

.product-gallery-container {
  margin-bottom: 30px;
}

.gallery-main {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: #d10000;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.product-info {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #d10000;
}

.features {
  list-style: none;
  margin-top: 15px;
}

.features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li i {
  color: #ffcc00;
}

.product-specs {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #ffcc00;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .style2 {
    font-size: 60px;
  }

  .line2 {
    margin-left: 150px;
  }

  .line3 {
    margin-left: 300px;
  }
}

@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .product-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .style2 {
    font-size: 40px;
  }

  .line1,
  .line2,
  .line3 {
    margin-left: 0 !important;
    text-align: center;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cube-container {
    width: 220px;
    height: 220px;
  }

  .cube-face {
    width: 220px;
    height: 220px;
  }

  .cube-face:nth-child(1) {
    transform: rotateY(0deg) translateZ(110px);
  }

  .cube-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(110px);
  }

  .cube-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(110px);
  }

  .cube-face:nth-child(4) {
    transform: rotateY(270deg) translateZ(110px);
  }

  .cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(110px);
  }

  .cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(110px);
  }

  .style2 {
    font-size: 32px;
  }
}

/* --- Variables & Reset --- */
:root {
  --primary-red: #D90429;
  --dark-red: #8D0018;
  --accent-yellow: #FFD60A;
  --bg-black: #0f0f0f;
  --card-black: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #b3b3b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* --- Main Section Layout --- */
.sink-about-animated {
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Floating Background Blobs --- */
.floating-elements .float-element {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
}

.el1 {
  background: var(--primary-red);
  top: -100px;
  left: -100px;
}

.el2 {
  background: var(--accent-yellow);
  bottom: -100px;
  right: -100px;
}

/* --- Header --- */
.animated-header {
  text-align: center;
  margin-bottom: 60px;
}

.typing-text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-line {
  display: block;
  color: var(--text-white);
}

.sub-line {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.decoration-line {
  height: 2px;
  width: 60px;
  background: var(--accent-yellow);
}

.decoration-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-red);
  transform: rotate(45deg);
}

/* --- Grid Layout (Video Left, Text Right) --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* --- Video Styling --- */
.animated-video-container {
  position: relative;
}

.video-frame {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  width: 100%;
  height: 400px;
  /* Fixed height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}

.sink-video-animated {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The decorative red box behind video */
.video-accent-box {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-red);
  border-radius: 12px;
  z-index: -1;
  transition: transform 0.3s ease;
}

.animated-video-container:hover .video-accent-box {
  transform: translate(-10px, 10px);
}

.video-caption {
  margin-top: 40px;
  text-align: center;
  font-family: monospace;
  color: var(--accent-yellow);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- Text Content --- */
.reveal-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.highlight-word {
  color: var(--text-white);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
}

/* --- Important Message Box --- */
.important-message {
  background: linear-gradient(145deg, var(--card-black), #222);
  border-left: 4px solid var(--accent-yellow);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-icon {
  font-size: 1.5rem;
  color: var(--accent-yellow);
  background: rgba(255, 214, 10, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.message-content h5 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.message-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Stats --- */
.animated-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Materials Section --- */
.section-subtitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-white);
}

.materials-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.material-item {
  background: var(--card-black);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.material-item:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.1);
}

.material-icon {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.material-item h4 {
  color: var(--text-white);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.material-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .video-accent-box {
    left: 10px;
    top: 10px;
  }

  .typing-text {
    font-size: 2rem;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.projects-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.projects-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.projects-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}

/* ================= SECTION ================= */
.products-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ================= GRID CONTAINER ================= */
.products-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  background: linear-gradient(145deg, #1a1a1a, #222222);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Top Accent Corner */
.product-card::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff0000, #ffd700);
  border-radius: 0 20px 0 30px;
}

/* ================= IMAGE ================= */
.image-box {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover .image-box img {
  transform: scale(1.07);
}

/* ================= TITLE ================= */
.product-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= PRICE TAG ================= */
.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #ffd700;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 13px;
}

/* ================= BUTTON ================= */
.view-btn {
  display: block;
  margin: 0 auto;
  background: linear-gradient(90deg, #ff0000, #b30000);
  color: #ffd700;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}

.view-btn:hover {
  background: linear-gradient(90deg, #b30000, #ff0000);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-container {
    grid-template-columns: 1fr;
  }

  .image-box {
    height: 200px;
  }
}

.image-box {
  width: 100%;
  height: 320px;
  /* adjust as needed */
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  /* optional background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  width: 120%;
  height: 100%;
  object-fit: contain;
  /* 🔥 shows full image */
}

/* PRODUCTS GRID */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

/* CARD BASE STYLE */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Initial hidden state */
  opacity: 0;
  transform: translateY(60px) scale(0.95);

  /* Scroll Animation */
  animation: reveal linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image styling */
.image-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Button styling */
.view-btn {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.view-btn a {
  text-decoration: none;
  color: #fff;
}

.view-btn:hover {
  background: #444;
}

/* KEYFRAMES */
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Optional: stagger effect */
.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-card:nth-child(5) {
  animation-delay: 0.5s;
}

.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

.product-card:nth-child(7) {
  animation-delay: 0.7s;
}

.product-card:nth-child(8) {
  animation-delay: 0.8s;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3498db;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-icon {
  position: absolute;
  top: 170px;
  left: 20px;
  background: #3498db;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-size: 1.5rem;
  border: 4px solid white;
  z-index: 1;
}

.product-content {
  padding: 30px 20px 20px;
}

.product-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-content p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.product-tag {
  display: none;
  background: #e8f4fc;
  color: #3498db;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .product-content {
    padding: 25px 15px 15px;
  }
}

.kitchen-products {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  /* makes text visible */
}

/* Background Video */
.kitchen-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark Overlay (for readability) */
.kitchen-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.);
  z-index: 1;
}

/* Keep content above video */
.kitchen-products .container {
  position: relative;
  z-index: 2;
}

/* Clean Solid Cards (No Blur) */
.kitchen-products .product-card {
  background: rgba(255, 255, 255, 0.95);
  /* solid white */
  color: #000;
  border: none;
}

.kitchen-products::before {
  background: rgba(0, 0, 0, 0.1);
}

/* ==================== fiting.html (recovered from VS Code local history, 5 blocks) ==================== */
/* CSS Variables for Theme Colors */
:root {
  --primary-red: #C62828;
  --dark-red: #8B0000;
  --light-red: #FF5252;
  --primary-black: #121212;
  --dark-black: #000000;
  --light-black: #212121;
  --primary-yellow: #FFD700;
  --dark-yellow: #FFA000;
  --light-yellow: #FFECB3;
  --white: #FFFFFF;
  --gray: #F5F5F5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--light-black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}


.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-yellow);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .guide-step {
    min-width: 100%;
  }
}

/* --- Variables & Reset --- */
:root {
  --primary-red: #D90429;
  --dark-red: #8D0018;
  --accent-yellow: #FFD60A;
  --bg-black: #0f0f0f;
  --card-black: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #b3b3b3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* --- Main Section Layout --- */
.sink-about-animated {
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- Floating Background Blobs --- */
.floating-elements .float-element {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
}

.el1 {
  background: var(--primary-red);
  top: -100px;
  left: -100px;
}

.el2 {
  background: var(--accent-yellow);
  bottom: -100px;
  right: -100px;
}

/* --- Header --- */
.animated-header {
  text-align: center;
  margin-bottom: 60px;
}

.typing-text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-line {
  display: block;
  color: var(--text-white);
}

.sub-line {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.decoration-line {
  height: 2px;
  width: 60px;
  background: var(--accent-yellow);
}

.decoration-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-red);
  transform: rotate(45deg);
}

/* --- Grid Layout (Video Left, Text Right) --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* --- Video Styling --- */
.animated-video-container {
  position: relative;
}

.video-frame {
  position: relative;
  z-index: 2;
}

.video-wrapper {
  width: 100%;
  height: 400px;
  /* Fixed height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}

.sink-video-animated {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The decorative red box behind video */
.video-accent-box {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-red);
  border-radius: 12px;
  z-index: -1;
  transition: transform 0.3s ease;
}

.animated-video-container:hover .video-accent-box {
  transform: translate(-10px, 10px);
}

.video-caption {
  margin-top: 40px;
  text-align: center;
  font-family: monospace;
  color: var(--accent-yellow);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- Text Content --- */
.reveal-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.highlight-word {
  color: var(--text-white);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
}

/* --- Important Message Box --- */
.important-message {
  background: linear-gradient(145deg, var(--card-black), #222);
  border-left: 4px solid var(--accent-yellow);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-icon {
  font-size: 1.5rem;
  color: var(--accent-yellow);
  background: rgba(255, 214, 10, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.message-content h5 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.message-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

/* --- Stats --- */
.animated-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Materials Section --- */
.section-subtitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-white);
}

.materials-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.material-item {
  background: var(--card-black);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.material-item:hover {
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.1);
}

.material-icon {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.material-item h4 {
  color: var(--text-white);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.material-item p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .video-accent-box {
    left: 10px;
    top: 10px;
  }

  .typing-text {
    font-size: 2rem;
  }
}

.product-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  transform: translateZ(20px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  transform-origin: center;
}

.product-card:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

.product-card:hover .product-image img {
  transform: scale(1.15) translateY(-10px);
}

.product-content {
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transform: translateZ(30px);
  border-top: 2px solid;
  border-image: linear-gradient(to right, transparent, #667eea, transparent) 1;
}

.product-tag {
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  padding: 5px 15px;
  border-radius: 25px;
  color: white;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-image {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 20px;
  background: white;
  position: relative;
  z-index: 2;
}

.product-tag {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* ===== TOP NAVBAR ===== */
/* ===== CATEGORY BAR ===== */
/* Dropdown */
/* ===== SIDE MENU ===== */
/* ===== LAYOUT 1 STYLES ===== */
:root {
  --gold: #FFD700;
  --crimson: #DC143C;
  --jet-black: #121212;
  --dark-gray: #1e1e1e;
}

.layout-1 {
  padding: 60px 20px;
  background: radial-gradient(circle at 50% 0%, var(--jet-black) 0%, #000 100%);
}

.layout-1 .hero-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--gold), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cube-container {
  perspective: 1000px;
  width: 280px;
  height: 280px;
  margin: 0 auto 60px;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 20s infinite linear;
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(30, 30, 30, 0.95);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(140px);
}

.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(140px);
}

.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(140px);
}

.cube-face:nth-child(4) {
  transform: rotateY(270deg) translateZ(140px);
}

.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(140px);
}

.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(140px);
}

.cube-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.cube-title {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

/* Tamil Text */
.style2 {
  font-size: 88px;
  color: #fff;
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  text-shadow: -2px -2px 0 #ff0d0d, 2px -2px 0 #ff3c3c, -2px 2px 0 #ff3c3c, 2px 2px 0 #ff3c3c;
}

.stagger-text .line {
  display: block;
}

.line1 {
  margin-left: 0;
}

.line2 {
  margin-left: 220px;
}

.line3 {
  margin-left: 450px;
}

/* Service Grid */
.service-grid-l1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.service-card-l1 {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
}

/* ===== PRODUCT SHOWCASE ===== */
.main-container {
  display: flex;
  min-height: 600px;
  background: #fff;
}

.sidebar {
  width: 280px;
  background: #1a1a1a;
  color: white;
  padding: 30px 0;
}

.products-title {
  color: #ffcc00;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d10000;
}

.product-menu {
  list-style: none;
}

.product-item {
  padding: 15px 25px;
  margin: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.product-item:hover {
  background: #333;
}

.product-item.active {
  background: #d10000;
}

.product-icon {
  font-size: 1.3rem;
  color: #ffcc00;
  width: 25px;
  text-align: center;
}

.content-area {
  flex: 1;
  padding: 30px;
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffcc00;
}

.product-header i {
  font-size: 2.5rem;
  color: #d10000;
}

.product-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
}

.product-gallery-container {
  margin-bottom: 30px;
}

.gallery-main {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: #d10000;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.product-info {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #d10000;
}

.features {
  list-style: none;
  margin-top: 15px;
}

.features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li i {
  color: #ffcc00;
}

.product-specs {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #ffcc00;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .style2 {
    font-size: 60px;
  }

  .line2 {
    margin-left: 150px;
  }

  .line3 {
    margin-left: 300px;
  }
}

@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .product-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .style2 {
    font-size: 40px;
  }

  .line1,
  .line2,
  .line3 {
    margin-left: 0 !important;
    text-align: center;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cube-container {
    width: 220px;
    height: 220px;
  }

  .cube-face {
    width: 220px;
    height: 220px;
  }

  .cube-face:nth-child(1) {
    transform: rotateY(0deg) translateZ(110px);
  }

  .cube-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(110px);
  }

  .cube-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(110px);
  }

  .cube-face:nth-child(4) {
    transform: rotateY(270deg) translateZ(110px);
  }

  .cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(110px);
  }

  .cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(110px);
  }

  .style2 {
    font-size: 32px;
  }
}

.tile-badge {
  display: none;
}

/* ================= SECTION ================= */
.products-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ================= GRID CONTAINER ================= */
.products-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  background: linear-gradient(145deg, #1a1a1a, #222222);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

/* Top Accent Corner */
.product-card::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff0000, #ffd700);
  border-radius: 0 20px 0 30px;
}

/* ================= IMAGE ================= */
.image-box {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
  border: 2px solid #fff;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover .image-box img {
  transform: scale(1.07);
}

/* ================= TITLE ================= */
.product-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================= PRICE TAG ================= */
.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff0000, #b30000);
  color: #ffd700;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 13px;
}

/* ================= BUTTON ================= */
.view-btn {
  display: block;
  margin: 0 auto;
  background: linear-gradient(90deg, #ff0000, #b30000);
  color: #ffd700;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 13px;
}

.view-btn:hover {
  background: linear-gradient(90deg, #b30000, #ff0000);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-container {
    grid-template-columns: 1fr;
  }

  .image-box {
    height: 200px;
  }
}

.products {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #3498db;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-icon {
  position: absolute;
  top: 170px;
  left: 20px;
  background: #3498db;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-size: 1.5rem;
  border: 4px solid white;
  z-index: 1;
}

.product-content {
  padding: 30px 20px 20px;
}

.product-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-content p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.product-tag {
  display: none;
  background: #e8f4fc;
  color: #3498db;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .product-content {
    padding: 25px 15px 15px;
  }
}

.kitchen-products {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  /* makes text visible */
}

/* Background Video */
.kitchen-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark Overlay (for readability) */
.kitchen-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.);
  z-index: 1;
}

/* Keep content above video */
.kitchen-products .container {
  position: relative;
  z-index: 2;
}

/* Clean Solid Cards (No Blur) */
.kitchen-products .product-card {
  background: rgba(255, 255, 255, 0.95);
  /* solid white */
  color: #000;
  border: none;
}

.kitchen-products::before {
  background: rgba(0, 0, 0, 0.1);
}

/* ==================== tiles-pages\kitchentiles.html (recovered from VS Code local history, 2 blocks) ==================== */
:root {
  --gold: #c49b3f;
  --gold-light: #f5d742;
  --cream: #f5f0e8;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1e1e1e;
  --mid: #2a2a2a;
  --text: #e8e0d0;
  --muted: #888;
  --accent: #ff6600;
  --transition: cubic-bezier(0.76, 0, 0.24, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196, 155, 63, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s var(--transition), width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(.tile-card:hover) .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

/* ─── NAV ─── */
.contact-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 155, 63, 0.4);
}

/* ─── SIDE MENU ─── */
/* ─── CATEGORY BAR ─── */
/* ─── HERO ─── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(13, 13, 13, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.3s var(--transition) forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s 0.5s var(--transition) forwards;
}

.hero-title .fill {
  display: block;
  -webkit-text-stroke: 0;
  background: linear-gradient(135deg, #fff 20%, var(--gold-light) 60%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .stroke {
  display: block;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.5);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.8s var(--transition) forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(196, 155, 63, 0.1);
  border-bottom: 1px solid rgba(196, 155, 63, 0.1);
  background: var(--dark2);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(196, 155, 63, 0.4);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── SLIDER ─── */
.slider-section {
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.slider-section::before {
  content: 'FEATURED';
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.2em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 155, 63, 0.06);
  pointer-events: none;
  white-space: nowrap;
}

.slider-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.slider-viewport {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  position: relative;
  perspective: 1200px;
}

.slide-item {
  position: absolute;
  width: 260px;
  transition: all 0.7s var(--transition);
  cursor: pointer;
}

.slide-item.pos-center {
  z-index: 10;
  transform: translateX(0) scale(1.15) rotateY(0deg);
  filter: brightness(1);
}

.slide-item.pos-left {
  z-index: 5;
  transform: translateX(-280px) scale(0.82) rotateY(18deg);
  filter: brightness(0.4);
}

.slide-item.pos-right {
  z-index: 5;
  transform: translateX(280px) scale(0.82) rotateY(-18deg);
  filter: brightness(0.4);
}

.slide-item.pos-hidden-left {
  z-index: 1;
  transform: translateX(-480px) scale(0.65) rotateY(30deg);
  filter: brightness(0.15);
  opacity: 0;
}

.slide-item.pos-hidden-right {
  z-index: 1;
  transform: translateX(480px) scale(0.65) rotateY(-30deg);
  filter: brightness(0.15);
  opacity: 0;
}

.slide-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2/3;
  border: 1px solid rgba(196, 155, 63, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  position: relative;
}

.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}

.slide-item.pos-center .slide-img-wrap img {
  transform: scale(1.05);
}

.slide-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s var(--transition);
  border-radius: 0 0 16px 16px;
}

.slide-item.pos-center .slide-info-overlay {
  transform: translateY(0);
}

.slide-info-overlay h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: #fff;
}

.slide-info-overlay p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

.slider-btn {
  background: none;
  border: 1px solid rgba(196, 155, 63, 0.3);
  color: var(--gold-light);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 20;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ─── FILTER ─── */
.filter-section {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 2rem 1rem 3rem;
  position: relative;
}

.filter-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.filter-btn {
  padding: 0.85rem 2.5rem;
  border: 1px solid rgba(196, 155, 63, 0.2);
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.filter-btn:first-child {
  border-radius: 4px 0 0 4px;
}

.filter-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.filter-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.4s;
}

.filter-btn.active {
  color: var(--dark);
  border-color: var(--gold);
}

.filter-btn.active::before {
  opacity: 1;
}

.filter-btn span {
  position: relative;
  z-index: 1;
}

.filter-btn:hover:not(.active) {
  color: var(--gold-light);
  border-color: rgba(196, 155, 63, 0.4);
}

/* ─── GALLERY ─── */
.gallery-section {
  padding: 0 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.gallery-header h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.count-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
}

.tile-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: border-color 0.4s, box-shadow 0.5s var(--transition);
}

.tile-card.reveal {
  animation: cardReveal 0.8s var(--transition) forwards;
  animation-delay: calc(var(--delay, 0) * 1ms);
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tile-card:hover {
  border-color: rgba(196, 155, 63, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(196, 155, 63, 0.15);
}

.tile-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
  display: block;
}

.tile-card:hover .tile-img img {
  transform: scale(1.1);
}

/* shimmer overlay on hover */
.tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(196, 155, 63, 0.08) 50%, transparent 70%);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.4s;
}

.tile-card:hover .tile-img::after {
  opacity: 1;
  animation: shimmer 1.2s var(--transition);
}

@keyframes shimmer {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: 100% 100%;
  }
}

.tile-footer {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.tile-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(196, 155, 63, 0.4);
  flex-shrink: 0;
}

.btn-book {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--transition), box-shadow 0.3s, filter 0.3s;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 155, 63, 0.4);
  filter: brightness(1.08);
}

.btn-book i {
  font-size: 0.9rem;
  color: #25d366;
}

/* hidden tile-badge from original */
.tile-badge {
  display: none;
}

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(196, 155, 63, 0.15);
  padding: 5rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact-item .ic {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(196, 155, 63, 0.1);
  border: 1px solid rgba(196, 155, 63, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact-item div small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 2px;
}

.footer-contact-item div strong {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted) !important;
  font-size: 0.85rem;
  transition: all 0.3s !important;
}

.social-links a:hover {
  background: rgba(196, 155, 63, 0.15) !important;
  border-color: rgba(196, 155, 63, 0.3) !important;
  color: var(--gold-light) !important;
  transform: translateY(-2px);
}

.newsletter-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: rgba(196, 155, 63, 0.4);
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  padding: 0.65rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(196, 155, 63, 0.3);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {

  .nav-center,
  .contact-btn {
    display: none;
  }

  .hero-section {
    height: 85vh;
  }

  .slider-section {
    padding: 3rem 1rem;
  }

  .slider-viewport {
    min-height: 380px;
  }

  .slide-item {
    width: 180px;
  }

  .slide-item.pos-left {
    transform: translateX(-200px) scale(0.82) rotateY(18deg);
  }

  .slide-item.pos-right {
    transform: translateX(200px) scale(0.82) rotateY(-18deg);
  }

  .gallery-section {
    padding: 0 1rem 4rem;
  }

  .filter-btn {
    padding: 0.75rem 1.3rem;
    font-size: 0.7rem;
  }
}

/* ─── PAGE LOAD BAR ─── */
.load-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.6s var(--transition), opacity 0.5s;
}

.load-bar.done {
  width: 100%;
  opacity: 0;
}

/* ==================== tiles-pages\livingroomtiles.html (recovered from VS Code local history, 2 blocks) ==================== */
:root {
  --cream: #fdf6ed;
  --warm: #f5e6cc;
  --terracotta: #c4694a;
  --terra-light: #e8896b;
  --terra-dark: #9a4a30;
  --sage: #7d9b76;
  --sage-light: #a8c4a2;
  --teal: #3a7d8c;
  --teal-light: #5ba8bb;
  --sand: #d4a96a;
  --sand-light: #eac98a;
  --ink: #2a1f1a;
  --ink2: #3d2e25;
  --text-dark: #1e1410;
  --text-mid: #5a4035;
  --text-soft: #9a7a6a;
  --white: #ffffff;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease2: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--terracotta), var(--sand), var(--sage), var(--teal));
  background-size: 300% 100%;
  animation: pgShimmer 2s linear infinite;
  transition: width 0.4s;
}

@keyframes pgShimmer {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 300%
  }
}

/* ── CURSOR ── */
.cur {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: transform 0.08s;
}

.cur-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(196, 105, 74, 0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease2), height 0.4s var(--ease2), border-color 0.3s;
}

.cur-ring.big {
  width: 65px;
  height: 65px;
  border-color: var(--terracotta);
}

.cur-ring.text-mode {
  width: 80px;
  height: 80px;
  border-color: var(--sage);
  border-style: dashed;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(253, 246, 237, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 105, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  transition: padding 0.4s var(--ease), box-shadow 0.3s;
}

.nav.scrolled {
  padding: 0.6rem 2.5rem;
  box-shadow: 0 8px 40px rgba(42, 31, 26, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
}

.nav-logo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--terracotta), var(--sand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
}

.nav-logo-text span {
  font-size: 0.62rem;
  color: var(--text-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  font-size: 0.8rem;
  background: rgba(196, 105, 74, 0.08);
  border: 1px solid rgba(196, 105, 74, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--terracotta);
}

.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(196, 105, 74, 0.35);
  transition: transform 0.3s var(--ease2), box-shadow 0.3s;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(196, 105, 74, 0.5);
}

/* ── SIDE MENU ── */
.mob-cats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mob-cats a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s;
}

.mob-cats a:hover {
  background: rgba(196, 105, 74, 0.07);
  color: var(--terracotta);
}

.mob-cats img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 105, 74, 0.3);
}

.mob-cats p {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── CATEGORY BAR ── */
.cat-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(196, 105, 74, 0.1);
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 72px;
  box-shadow: 0 4px 20px rgba(42, 31, 26, 0.06);
}

.cat-bar::-webkit-scrollbar {
  display: none;
}

.cat-link {
  text-decoration: none;
  flex-shrink: 0;
}

.cat-item {
  text-align: center;
  min-width: 68px;
  position: relative;
}

.cat-item img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196, 105, 74, 0.2);
  display: block;
  margin: 0 auto 5px;
  transition: border-color 0.3s, transform 0.4s var(--ease2), box-shadow 0.3s;
}

.cat-item:hover img {
  border-color: var(--terracotta);
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 20px rgba(196, 105, 74, 0.3);
}

.cat-item p {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.3s;
}

.cat-item:hover p {
  color: var(--terracotta);
}

.cat-item.dropdown-wrap {
  position: relative;
}

.cat-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid rgba(196, 105, 74, 0.2);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 100;
  box-shadow: 0 12px 40px rgba(42, 31, 26, 0.15);
}

.cat-item.dropdown-wrap:hover .cat-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.cat-drop a {
  display: block;
  padding: 8px 18px;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.cat-drop a:hover {
  background: rgba(196, 105, 74, 0.08);
  color: var(--terracotta);
  padding-left: 24px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fdf0e0 0%, #f5e4c8 40%, #ecdcc0 100%);
}

/* Animated blob background */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: blobFloat 14s ease-in-out infinite;
}

.blob1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(196, 105, 74, 0.22) 0%, transparent 70%);
  top: -20%;
  left: -15%;
  animation-duration: 18s;
}

.blob2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(125, 155, 118, 0.18) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation-duration: 22s;
  animation-delay: -7s;
}

.blob3 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(58, 125, 140, 0.14) 0%, transparent 70%);
  top: 30%;
  left: 40%;
  animation-duration: 16s;
  animation-delay: -4s;
}

.blob4 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(212, 169, 106, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: 20%;
  animation-duration: 20s;
  animation-delay: -10s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(3%, -5%) scale(1.06)
  }

  66% {
    transform: translate(-4%, 3%) scale(0.96)
  }
}

/* Diagonal stripe accent */
.hero-stripes {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(-45deg,
      transparent, transparent 60px,
      rgba(196, 105, 74, 0.025) 60px, rgba(196, 105, 74, 0.025) 61px);
}

/* Floating tile previews */
.hero-float-tile {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 31, 26, 0.2);
  animation: tileBob var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--dly, 0s);
  z-index: 1;
}

.hero-float-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.t1 {
  width: 160px;
  height: 200px;
  top: 10%;
  left: 4%;
  transform: rotate(-8deg);
}

.t2 {
  width: 130px;
  height: 165px;
  top: 15%;
  right: 5%;
  transform: rotate(6deg);
}

.t3 {
  width: 110px;
  height: 140px;
  bottom: 18%;
  left: 8%;
  transform: rotate(4deg);
}

.t4 {
  width: 140px;
  height: 180px;
  bottom: 12%;
  right: 6%;
  transform: rotate(-5deg);
}

@keyframes tileBob {

  0%,
  100% {
    transform: rotate(var(--rot, -6deg)) translateY(0px)
  }

  50% {
    transform: rotate(var(--rot, -6deg)) translateY(-14px)
  }
}

.t1 {
  --rot: -8deg;
  --dur: 8s;
  --dly: 0s;
}

.t2 {
  --rot: 6deg;
  --dur: 10s;
  --dly: -3s;
}

.t3 {
  --rot: 4deg;
  --dur: 9s;
  --dly: -6s;
}

.t4 {
  --rot: -5deg;
  --dur: 11s;
  --dly: -2s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 105, 74, 0.1);
  border: 1px solid rgba(196, 105, 74, 0.25);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}

.hero-tag::before,
.hero-tag::after {
  content: '✦';
  font-size: 0.6rem;
  opacity: 0.6;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s 0.5s var(--ease) forwards;
}

.hero-title .line-warm {
  display: block;
  color: var(--terracotta);
}

.hero-title .line-stroke {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero-title .line-fill {
  display: block;
  background: linear-gradient(135deg, var(--ink) 0%, var(--terra-dark) 50%, var(--sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s var(--ease) forwards;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1.1s var(--ease) forwards;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(196, 105, 74, 0.45);
  transition: transform 0.35s var(--ease2), box-shadow 0.35s;
}

.hero-btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 50px rgba(196, 105, 74, 0.55);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(42, 31, 26, 0.2);
  transition: all 0.35s var(--ease);
}

.hero-btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.scroll-track {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--terracotta), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1
  }

  50% {
    transform: scaleY(0.4);
    opacity: 0.3
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  padding: 1.1rem 0;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── STATS ── */
.stats-section {
  padding: 5rem 2.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--sand), var(--sage), var(--teal));
}

.stats-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 105, 74, 0.06);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media(max-width:760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 16px;
  position: relative;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.7s var(--ease);
}

.stat-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: var(--bg, linear-gradient(135deg, rgba(196, 105, 74, 0.06) 0%, rgba(196, 105, 74, 0.02) 100%));
  border: 1px solid var(--bd, rgba(196, 105, 74, 0.12));
  transition: all 0.4s;
}

.stat-card:hover::before {
  transform: scale(1.02);
}

.s1::before {
  --bg: linear-gradient(135deg, rgba(196, 105, 74, 0.08), rgba(196, 105, 74, 0.03));
  --bd: rgba(196, 105, 74, 0.15);
}

.s2::before {
  --bg: linear-gradient(135deg, rgba(125, 155, 118, 0.08), rgba(125, 155, 118, 0.03));
  --bd: rgba(125, 155, 118, 0.15);
}

.s3::before {
  --bg: linear-gradient(135deg, rgba(58, 125, 140, 0.08), rgba(58, 125, 140, 0.03));
  --bd: rgba(58, 125, 140, 0.15);
}

.s4::before {
  --bg: linear-gradient(135deg, rgba(212, 169, 106, 0.1), rgba(212, 169, 106, 0.03));
  --bd: rgba(212, 169, 106, 0.18);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
  position: relative;
  z-index: 1;
}

.s1 .stat-icon {
  color: var(--terracotta);
}

.s2 .stat-icon {
  color: var(--sage);
}

.s3 .stat-icon {
  color: var(--teal);
}

.s4 .stat-icon {
  color: var(--sand);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.s1 .stat-num {
  color: var(--terracotta);
}

.s2 .stat-num {
  color: var(--sage);
}

.s3 .stat-num {
  color: var(--teal);
}

.s4 .stat-num {
  color: var(--sand);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ── SLIDER SECTION ── */
.slider-section {
  padding: 6rem 2rem;
  background: linear-gradient(160deg, #fef8f0 0%, #f0ead8 100%);
  position: relative;
  overflow: hidden;
}

.slider-section::before {
  content: 'COLLECTION';
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 105, 74, 0.06);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.2em;
}

.section-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.slider-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.slider-viewport {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  perspective: 1400px;
}

.slide-item {
  position: absolute;
  width: 240px;
  transition: all 0.75s var(--ease);
  cursor: pointer;
}

.slide-item.pos-center {
  z-index: 10;
  transform: translateX(0) scale(1.22) rotateY(0deg);
  filter: brightness(1);
}

.slide-item.pos-left {
  z-index: 5;
  transform: translateX(-275px) scale(0.79) rotateY(22deg);
  filter: brightness(0.6) saturate(0.7);
}

.slide-item.pos-right {
  z-index: 5;
  transform: translateX(275px) scale(0.79) rotateY(-22deg);
  filter: brightness(0.6) saturate(0.7);
}

.slide-item.pos-far-left {
  z-index: 2;
  transform: translateX(-460px) scale(0.62) rotateY(38deg);
  filter: brightness(0.25);
  opacity: 0;
}

.slide-item.pos-far-right {
  z-index: 2;
  transform: translateX(460px) scale(0.62) rotateY(-38deg);
  filter: brightness(0.25);
  opacity: 0;
}

.slide-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2/3;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 80px rgba(42, 31, 26, 0.25);
  position: relative;
}

.slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  display: block;
}

.slide-item.pos-center .slide-img-wrap img {
  transform: scale(1.06);
}

.slide-item.pos-center .slide-img-wrap {
  box-shadow: 0 40px 100px rgba(196, 105, 74, 0.35);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.8rem;
  background: linear-gradient(to top, rgba(42, 31, 26, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.55s var(--ease);
  border-radius: 0 0 14px 14px;
}

.slide-item.pos-center .slide-overlay {
  transform: translateY(0);
}

.slide-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.slide-overlay p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 246, 237, 0.7);
  margin-top: 4px;
}

.sl-btn {
  background: var(--white);
  border: none;
  color: var(--terracotta);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(42, 31, 26, 0.15);
  transition: all 0.35s var(--ease2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sl-btn:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 12px 35px rgba(196, 105, 74, 0.45);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.s-dot {
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: rgba(196, 105, 74, 0.2);
  cursor: pointer;
  transition: all 0.35s;
}

.s-dot.active {
  background: var(--terracotta);
  width: 38px;
}

/* ── FEATURE HIGHLIGHT ── */
.highlight {
  padding: 6rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media(max-width:900px) {
  .highlight {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
  }
}

.hl-img-col {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s var(--ease);
}

.hl-img-col.reveal {
  opacity: 1;
  transform: translateX(0);
}

/* 3-image mosaic */
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 12px;
}

.mosaic-a {
  grid-column: 1;
  grid-row: 1/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mosaic-b {
  grid-column: 2;
  grid-row: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mosaic-c {
  grid-column: 2;
  grid-row: 2;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mosaic-a img,
.mosaic-b img,
.mosaic-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}

.mosaic-a:hover img,
.mosaic-b:hover img,
.mosaic-c:hover img {
  transform: scale(1.12);
}

.mosaic-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(253, 246, 237, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  box-shadow: 0 4px 15px rgba(42, 31, 26, 0.1);
}

.hl-text-col {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s 0.15s var(--ease);
}

.hl-text-col.reveal {
  opacity: 1;
  transform: translateX(0);
}

.hl-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.hl-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--terracotta);
}

.hl-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.hl-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hl-desc {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.hl-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hl-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 105, 74, 0.12);
  background: rgba(253, 246, 237, 0.6);
  transition: all 0.35s var(--ease);
  cursor: default;
}

.hl-feat:hover {
  background: var(--white);
  border-color: rgba(196, 105, 74, 0.25);
  transform: translateX(6px);
  box-shadow: 0 6px 25px rgba(42, 31, 26, 0.08);
}

.hl-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.fi1 {
  background: rgba(196, 105, 74, 0.1);
  color: var(--terracotta);
}

.fi2 {
  background: rgba(125, 155, 118, 0.1);
  color: var(--sage);
}

.fi3 {
  background: rgba(58, 125, 140, 0.1);
  color: var(--teal);
}

.fi4 {
  background: rgba(212, 169, 106, 0.15);
  color: var(--sand);
}

.hl-feat span {
  font-size: 0.82rem;
  color: var(--text-mid);
}

.hl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.5rem;
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(196, 105, 74, 0.35);
  transition: transform 0.35s var(--ease2), box-shadow 0.35s;
}

.hl-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 50px rgba(196, 105, 74, 0.5);
}

/* ── COLOR PALETTE STRIP ── */
.palette-strip {
  padding: 4rem 2.5rem;
  background: var(--white);
}

.palette-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.palette-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.palette-sub {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 3rem;
}

.palette-colors {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
}

.pal-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.pal-swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.4s var(--ease2), box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(42, 31, 26, 0.1);
}

.pal-item:hover .pal-swatch {
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 12px 30px rgba(42, 31, 26, 0.2);
}

.pal-name {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── FILTER ── */
.filter-section {
  padding: 3rem 1rem 2rem;
  display: flex;
  justify-content: center;
}

.filter-wrap {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.f-btn {
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(196, 105, 74, 0.2);
  background: var(--white);
  color: var(--text-mid);
  transition: all 0.35s var(--ease2);
}

.f-btn:hover:not(.active) {
  background: rgba(196, 105, 74, 0.06);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.f-btn.active {
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 25px rgba(196, 105, 74, 0.4);
  transform: translateY(-2px);
}

/* ── GALLERY ── */
.gallery-section {
  padding: 0 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(196, 105, 74, 0.15);
}

.gallery-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
}

.gallery-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.count-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media(max-width:1100px) {
  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:760px) {
  .tile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media(max-width:480px) {
  .tile-grid {
    grid-template-columns: 1fr;
  }
}

/* ── TILE CARD ── */
.tile-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(196, 105, 74, 0.1);
  box-shadow: 0 4px 20px rgba(42, 31, 26, 0.06);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: border-color 0.4s, box-shadow 0.5s var(--ease);
}

.tile-card.reveal {
  animation: cardPop 0.7s var(--ease2) forwards;
  animation-delay: calc(var(--d, 0)*1ms);
}

@keyframes cardPop {
  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.tile-card:hover {
  border-color: rgba(196, 105, 74, 0.3);
  box-shadow: 0 20px 60px rgba(196, 105, 74, 0.18), 0 2px 8px rgba(42, 31, 26, 0.1);
  transform: translateY(-8px) !important;
}

/* ─ Image zoom + tilt ─ */
.tile-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--warm);
}

.tile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--ease);
  transform-origin: center center;
}

.tile-card:hover .tile-img-wrap img {
  transform: scale(1.18);
}

/* Color splash on hover */
.tile-splash {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 105, 74, 0) 0%, rgba(196, 105, 74, 0.12) 50%, rgba(212, 169, 106, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.tile-card:hover .tile-splash {
  opacity: 1;
}

/* View indicator */
.tile-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253, 246, 237, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease2), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(42, 31, 26, 0.15);
}

.tile-card:hover .tile-view-btn {
  transform: translate(-50%, -50%) scale(1);
}

/* Category tag ribbon */
.tile-ribbon {
  position: absolute;
  top: 12px;
  left: 0;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem 0.3rem 0.7rem;
  border-radius: 0 4px 4px 0;
  transform: translateX(-110%);
  transition: transform 0.4s var(--ease2);
  white-space: nowrap;
}

.tile-card:hover .tile-ribbon {
  transform: translateX(0);
}

/* Bottom foot */
.tile-foot {
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tile-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: rgba(196, 105, 74, 0.4);
  flex-shrink: 0;
}

.tile-book {
  flex: 1;
  padding: 0.6rem 0.8rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.35s var(--ease2), box-shadow 0.3s, filter 0.3s;
}

.tile-book:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(196, 105, 74, 0.4);
  filter: brightness(1.06);
}

.tile-book .wa {
  color: #25d366;
  font-size: 0.85rem;
}

.tile-badge {
  display: none;
}

/* ── PARTICLES DIVIDER ── */
.particles-band {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terra-dark) 50%, #7a2e18 100%);
}

.particles-band canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.band-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.band-text .sep {
  color: rgba(255, 255, 255, 0.35);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--text);
  padding: 5rem 2.5rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.fc h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--sand-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.fc a,
.fc p {
  display: block;
  color: rgba(232, 224, 208, 0.5);
  font-size: 0.82rem;
  line-height: 1.9;
  text-decoration: none;
  transition: color 0.25s;
}

.fc a:hover {
  color: var(--sand-light);
}

.fci {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
}

.fci-ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 169, 106, 0.1);
  border: 1px solid rgba(212, 169, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.fci small {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(232, 224, 208, 0.3);
  margin-bottom: 2px;
}

.fci strong {
  font-size: 0.82rem;
  color: rgba(232, 224, 208, 0.75);
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(212, 169, 106, 0.08);
  border: 1px solid rgba(212, 169, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 224, 208, 0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: rgba(212, 169, 106, 0.18);
  color: var(--sand-light);
  transform: translateY(-3px);
}

.nl-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nl-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(232, 224, 208, 0.85);
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.3s;
}

.nl-form input:focus {
  border-color: rgba(212, 169, 106, 0.4);
}

.nl-form input::placeholder {
  color: rgba(232, 224, 208, 0.3);
}

.nl-form button {
  padding: 0.7rem;
  background: linear-gradient(135deg, var(--terracotta), var(--terra-dark));
  border: none;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.nl-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 105, 74, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(232, 224, 208, 0.3);
  letter-spacing: 0.1em;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav {
    padding: 0.7rem 1.2rem;
  }

  .cat-bar {
    margin-top: 62px;
  }

  .hero {
    height: 88vh;
  }

  .hero-float-tile {
    display: none;
  }

  .slider-section {
    padding: 3rem 1rem;
  }

  .slider-viewport {
    min-height: 360px;
  }

  .slide-item {
    width: 180px;
  }

  .slide-item.pos-left {
    transform: translateX(-200px) scale(0.79) rotateY(22deg);
  }

  .slide-item.pos-right {
    transform: translateX(200px) scale(0.79) rotateY(-22deg);
  }

  .gallery-section {
    padding: 0 1rem 4rem;
  }
}

/* ==================== tiles-pages\all-tiles.html (7 blocks) ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  .products-filter {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .filter-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .product-card {
    margin-bottom: 20px;
  }

  .product-title {
    font-size: 18px;
  }

  .product-price {
    font-size: 16px;
  }
}

body {
  background: linear-gradient(145deg, #e9eef2 0%, #d6dee5 100%);
  min-height: 100vh;
}

/* ========== ADDITIONAL MICRO INTERACTIONS ========== */
/* floating shimmer for top navbar */
/*  icon effect */
/* Add little icons to first two links to make them fancier */
/* responsiveness: keep beauty on smaller screens */
/* extra sparkle for category bar (dynamic background) */
@keyframes shine {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/* SIDEBAR */
/* MOBILE ROUND CATEGORY LIST */
/* DROPDOWN BASE */
/* MENU BOX */
/* SHOW */
/* ITEMS */
/* SMALL ARROW */
/* dropdown container */
/* dropdown links */
/* hover effect */
/* arrow pointer */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #e9eef2 0%, #d6dee5 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== CONTAINER FIXES ===== */
.auto-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 20px;
}

/* ===== TOP NAVBAR ===== */
/* ===== CATEGORY BAR ===== */
/* Dropdown */
/* ===== SIDE MENU ===== */
/* ===== LAYOUT 1 STYLES ===== */
:root {
  --gold: #FFD700;
  --crimson: #DC143C;
  --jet-black: #121212;
  --dark-gray: #1e1e1e;
}

.layout-1 {
  padding: 60px 20px;
  background: radial-gradient(circle at 50% 0%, var(--jet-black) 0%, #000 100%);
}

.layout-1 .hero-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--gold), var(--crimson));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cube-container {
  perspective: 1000px;
  width: 280px;
  height: 280px;
  margin: 0 auto 60px;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 20s infinite linear;
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.cube-face {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(30, 30, 30, 0.95);
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.cube-face:nth-child(1) {
  transform: rotateY(0deg) translateZ(140px);
}

.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(140px);
}

.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(140px);
}

.cube-face:nth-child(4) {
  transform: rotateY(270deg) translateZ(140px);
}

.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(140px);
}

.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(140px);
}

.cube-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.cube-title {
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

/* Tamil Text */
.style2 {
  font-size: 88px;
  color: #fff;
  text-align: center;
  margin: 50px auto;
  max-width: 900px;
  text-shadow: -2px -2px 0 #ff0d0d, 2px -2px 0 #ff3c3c, -2px 2px 0 #ff3c3c, 2px 2px 0 #ff3c3c;
}

.stagger-text .line {
  display: block;
}

.line1 {
  margin-left: 0;
}

.line2 {
  margin-left: 220px;
}

.line3 {
  margin-left: 450px;
}

/* Service Grid */
.service-grid-l1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.service-card-l1 {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
}

/* ===== PRODUCT SHOWCASE ===== */
.main-container {
  display: flex;
  min-height: 600px;
  background: #fff;
}

.sidebar {
  width: 280px;
  background: #1a1a1a;
  color: white;
  padding: 30px 0;
}

.products-title {
  color: #ffcc00;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d10000;
}

.product-menu {
  list-style: none;
}

.product-item {
  padding: 15px 25px;
  margin: 5px 15px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}

.product-item:hover {
  background: #333;
}

.product-item.active {
  background: #d10000;
}

.product-icon {
  font-size: 1.3rem;
  color: #ffcc00;
  width: 25px;
  text-align: center;
}

.content-area {
  flex: 1;
  padding: 30px;
}

.product-content {
  display: none;
}

.product-content.active {
  display: block;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffcc00;
}

.product-header i {
  font-size: 2.5rem;
  color: #d10000;
}

.product-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
}

.product-gallery-container {
  margin-bottom: 30px;
}

.gallery-main {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: white;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail.active {
  border-color: #d10000;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.product-info {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #d10000;
}

.features {
  list-style: none;
  margin-top: 15px;
}

.features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li i {
  color: #ffcc00;
}

.product-specs {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #ffcc00;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
}

.spec-icon {
  width: 50px;
  height: 50px;
  background: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .style2 {
    font-size: 60px;
  }

  .line2 {
    margin-left: 150px;
  }

  .line3 {
    margin-left: 300px;
  }
}

@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .product-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .style2 {
    font-size: 40px;
  }

  .line1,
  .line2,
  .line3 {
    margin-left: 0 !important;
    text-align: center;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cube-container {
    width: 220px;
    height: 220px;
  }

  .cube-face {
    width: 220px;
    height: 220px;
  }

  .cube-face:nth-child(1) {
    transform: rotateY(0deg) translateZ(110px);
  }

  .cube-face:nth-child(2) {
    transform: rotateY(90deg) translateZ(110px);
  }

  .cube-face:nth-child(3) {
    transform: rotateY(180deg) translateZ(110px);
  }

  .cube-face:nth-child(4) {
    transform: rotateY(270deg) translateZ(110px);
  }

  .cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(110px);
  }

  .cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(110px);
  }

  .style2 {
    font-size: 32px;
  }
}

/* CSS Variables for Theme Colors */
:root {
  --primary-red: #C62828;
  --dark-red: #8B0000;
  --light-red: #FF5252;
  --primary-black: #121212;
  --dark-black: #000000;
  --light-black: #212121;
  --primary-yellow: #FFD700;
  --dark-yellow: #FFA000;
  --light-yellow: #FFECB3;
  --white: #FFFFFF;
  --gray: #F5F5F5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--light-black);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: var(--primary-yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--dark-black), var(--primary-black));
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}



.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-yellow);
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {

  .about-content,
  .contact-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .guide-step {
    min-width: 100%;
  }
}

/* Header with gradient */
/* Main Content */
/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h2 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ffff00);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
}

.section-subtitle {
  font-size: 1.3rem;
  color: #ffcc00;
  margin-top: 20px;
  font-weight: 600;
}

/* Materials Grid */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-bottom: 80px;
}

/* Material Card */
.material-card {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid #333;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff0000, #ffff00);
}

.material-card.show {
  opacity: 1;
  transform: translateY(0);
}

.material-card:hover {
  transform: translateY(-15px);
  border-color: #ff0000;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.card-header {
  padding: 25px;
  background: rgba(255, 0, 0, 0.1);
  border-bottom: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #ffff00;
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
  animation: iconFloat 3s infinite ease-in-out;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 0, 0, 0.3);
  color: #ffcc00;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
  border: 1px solid #ff0000;
}

.card-content {
  padding: 25px;
}

.card-text {
  color: #ccc;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Content Sections */
.content-section {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 50px;
  border: 2px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease;
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.content-section.show {
  opacity: 1;
  transform: translateX(0);
}

.section-title {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title i {
  margin-right: 20px;
  color: #ffff00;
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.7);
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 25px;
}

.highlight {
  color: #ffff00;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}

/* Progress Bar */
.progress-container {
  height: 8px;
  background: #333;
  border-radius: 4px;
  margin: 60px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #444;
}

.progress-bar {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, #ff0000, #ff5500, #ffff00);
  border-radius: 4px;
  transition: width 0.8s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s infinite;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.step {
  color: #888;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.step.active {
  color: #ffff00;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
  transform: scale(1.1);
}

/* Animated Elements */
.floating-element {
  position: fixed;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  z-index: -1;
  opacity: 0.4;
  animation: floatElement 8s infinite ease-in-out;
}

.floating-element.red {
  background: rgba(255, 0, 0, 0.3);
  border: 2px solid rgba(255, 0, 0, 0.5);
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element.yellow {
  background: rgba(255, 255, 0, 0.3);
  border: 2px solid rgba(255, 255, 0, 0.5);
  top: 60%;
  right: 7%;
  animation-delay: 1s;
}

.floating-element.orange {
  background: rgba(255, 100, 0, 0.3);
  border: 2px solid rgba(255, 100, 0, 0.5);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

/* Footer */
footer {
  background: linear-gradient(to top, #000, #222);
  padding: 40px 0;
  border-top: 3px solid #ff0000;
  margin-top: 80px;
  position: relative;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-title {
  font-size: 2rem;
  color: #ffff00;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-text {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Animations */
@keyframes redPulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  }

  100% {
    text-shadow: 0 0 30px rgba(255, 0, 0, 1), 0 0 40px rgba(255, 0, 0, 0.8);
  }
}

@keyframes yellowPulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
  }

  100% {
    text-shadow: 0 0 30px rgba(255, 255, 0, 1), 0 0 40px rgba(255, 255, 0, 0.8);
  }
}

@keyframes pulseBackground {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes floatElement {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-40px) rotate(10deg);
  }
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes activeBtn {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  }

  100% {
    box-shadow: 0 0 40px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 255, 0, 0.5);
  }
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-btn {
    width: 80%;
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .materials-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 25px;
  }

  .floating-element {
    display: none;
  }
}

/* Products Section Styles */
.products-section {

  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
  animation: pulseGlow 8s infinite alternate;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, #ff0000, #ff9900, #ffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleShimmer 3s infinite alternate;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #ffcc00;
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Products Filter */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 15px 30px;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid #ff0000;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 0, 0.3), transparent);
  transition: left 0.6s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background: rgba(255, 0, 0, 0.3);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.filter-btn.active {
  background: #ff0000;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
  animation: filterPulse 2s infinite alternate;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Product Card */
.product-card {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(100px) rotateX(90deg);
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.product-card.show {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.product-card:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: #ff0000;
  box-shadow: 0 30px 60px rgba(255, 0, 0, 0.3);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff0000, #ff5500);
  color: #fff;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  z-index: 3;
  animation: badgeFloat 3s infinite ease-in-out;
}

.product-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.2) rotate(5deg);
}

.product-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.6s;
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-content {
  padding: 30px;
  position: relative;
}

.product-category {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 0, 0, 0.2);
  color: #ffcc00;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
  border: 1px solid #ff0000;
}

.product-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-description {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.product-price {
  font-size: 2rem;
  color: #ffff00;
  font-weight: 900;
  margin-bottom: 25px;
  text-shadow: 0 0 15px rgba(255, 255, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-price .old-price {
  font-size: 1.4rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 15px;
}

.product-btn {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cart-btn {
  background: linear-gradient(45deg, #ff0000, #ff5500);
  color: #fff;
}

.view-btn {
  background: transparent;
  border: 2px solid #ffff00;
  color: #ffff00;
}

.product-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.view-btn:hover {
  background: rgba(255, 255, 0, 0.2);
}

/* Floating Elements */
.floating-tile {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff0000, #ff9900);
  border-radius: 15px;
  opacity: 0.1;
  animation: floatRandom 15s infinite linear;
  z-index: 1;
}

/* Animations */
@keyframes titleShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@keyframes filterPulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
  }

  100% {
    box-shadow: 0 0 40px rgba(255, 0, 0, 1), 0 0 60px rgba(255, 255, 0, 0.5);
  }
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes floatRandom {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(100px, 50px) rotate(90deg);
  }

  50% {
    transform: translate(50px, 100px) rotate(180deg);
  }

  75% {
    transform: translate(-50px, 50px) rotate(270deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }

  .products-filter {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 80%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    flex-direction: column;
  }
}

.product-price {
  display: none;
}

.product-description {
  display: none;
}

.whatsapp-btn {
  display: inline-block;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.product-btn.view-btn {
  display: none;
}

.product-title {
  display: none;
}

.products-container {
  width: 85%;
  /* was 90% */
  max-width: 1200px;
  /* reduce from 1300 if you had */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  /* reduce spacing */
}

.products-section {
  width: 100%;
  padding: 40px 20px;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.product-image {
  height: 220px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= SECTION ================= */
/* ================= IMAGE (NO CROP FIXED) ================= */
/* ===== IMAGE MODAL ===== */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  text-align: center;
}

.image-modal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

.product-image {
  width: 100%;
  height: 320px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* FIX FOR 100% ZOOM CROP */
  transition: 0.4s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* ================= CONTENT ================= */
.product-content {
  padding: 10px;
}

.product-category {
  font-size: 13px;
  color: #ff3c00;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.old-price {
  font-size: 14px;
  color: #777;
  text-decoration: line-through;
  margin-left: 8px;
}

/* ================= BUTTON ================= */
.product-actions {
  margin-top: 10px;
}

.product-btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

/* WhatsApp Button */
/* ================= RESPONSIVE ================= */
html,
body {
  margin: 0;
  padding: 0;
}

/* ==================== elevation.html (REBUILT from scratch — original lost, no backup available) ==================== */
/* ── RESET / BASE ── */
.pgbar,
.cur-dot,
.cur-aura,
.hero,
.marquee-wrap,
.stats-wrap,
.slider-sec,
.hl-wrap,
.pal-sec,
.wave-div,
#hscrollOuter,
.parallax-sec,
.ring-sec,
.filt-sec,
.gal-sec {
  box-sizing: border-box;
}

.hero *,
.marquee-wrap *,
.stats-wrap *,
.slider-sec *,
.hl-wrap *,
.pal-sec *,
.wave-div *,
#hscrollOuter *,
.parallax-sec *,
.ring-sec *,
.filt-sec *,
.gal-sec * {
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  color: #e8e0d0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
.pgbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, #c4694a, #d4a85a);
  transition: width 0.4s ease, opacity 0.5s;
}

/* ── CURSOR ── */
.cur-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #d4a85a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cur-aura {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 168, 90, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cur-aura.hov {
  width: 60px;
  height: 60px;
  border-color: #d4a85a;
}

.cur-aura.click {
  width: 26px;
  height: 26px;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  align-items: center;
  gap: 3rem;
  padding: 7rem 4rem 4rem;
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 60%);
  position: relative;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-bg-num {
  position: absolute;
  top: -3rem;
  left: -1rem;
  font-size: 14rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 168, 90, 0.08);
  z-index: -1;
  user-select: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a85a;
  margin-bottom: 1.5rem;
}

.tag-pill {
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  padding: 0.35rem 1rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.02;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-title .ht1 {
  color: #fff;
}

.hero-title .ht2 {
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .ht3 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.5);
}

.hero-desc {
  max-width: 480px;
  color: rgba(232, 224, 208, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hbtn-main,
.hbtn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hbtn-main {
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  box-shadow: 0 10px 30px rgba(196, 105, 74, 0.35);
}

.hbtn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(196, 105, 74, 0.5);
}

.hbtn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hbtn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 224, 208, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.sline {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #d4a85a, transparent);
}

.hero-right {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-right-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
  height: 80%;
}

.himg {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.himg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.himg:hover img {
  transform: scale(1.08);
}

.hero-right-inner .himg:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-right-inner .himg:nth-child(3) {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    text-align: center;
  }

  .hero-btns,
  .hero-scroll {
    justify-content: center;
  }

  .hero-right-inner {
    grid-auto-rows: 90px;
  }
}

/* ── MARQUEE ── */
.marquee-wrap {
  padding: 1.5rem 0;
  background: #141414;
  border-top: 1px solid rgba(212, 168, 90, 0.1);
  border-bottom: 1px solid rgba(212, 168, 90, 0.1);
}

.mq-row {
  overflow: hidden;
  padding: 0.4rem 0;
}

.mq-track {
  display: flex;
  width: max-content;
  animation: mqScroll 30s linear infinite;
}

.mq-row:nth-child(2) .mq-track {
  animation-direction: reverse;
  animation-duration: 34s;
}

.mq-row:nth-child(3) .mq-track {
  animation-duration: 26s;
}

@keyframes mqScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.35);
  white-space: nowrap;
  padding: 0 1.5rem;
}

.mq-star {
  color: #d4a85a;
  opacity: 0.6;
  font-size: 0.8rem;
}

/* ── STATS ── */
.stats-wrap {
  padding: 5rem 2rem;
  background: #0d0d0d;
}

.stats-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.scard {
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 168, 90, 0.12);
  background: rgba(212, 168, 90, 0.03);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scard.reveal {
  opacity: 1;
  transform: translateY(0);
}

.sico {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #d4a85a;
}

.snum {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}

.slbl {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.5);
  margin-top: 6px;
}

@media (max-width: 700px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── SLIDER ── */
.slider-sec {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.sl-ghost {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 168, 90, 0.06);
  white-space: nowrap;
  pointer-events: none;
}

.sl-hd {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.sl-tag {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d4a85a;
  margin-bottom: 0.8rem;
}

.sl-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.sl-title em {
  font-style: italic;
  color: #d4a85a;
}

.sl-cont {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.sl-stage {
  flex: 1;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1300px;
}

.sli {
  position: absolute;
  width: 230px;
  transition: all 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  cursor: pointer;
}

.sli.pc {
  z-index: 10;
  transform: translateX(0) scale(1.18);
  filter: brightness(1);
}

.sli.pl {
  z-index: 5;
  transform: translateX(-250px) scale(0.8) rotateY(20deg);
  filter: brightness(0.5);
}

.sli.pr {
  z-index: 5;
  transform: translateX(250px) scale(0.8) rotateY(-20deg);
  filter: brightness(0.5);
}

.sli.pfl {
  z-index: 1;
  transform: translateX(-420px) scale(0.6) rotateY(35deg);
  filter: brightness(0.2);
  opacity: 0;
}

.sli.pfr {
  z-index: 1;
  transform: translateX(420px) scale(0.6) rotateY(-35deg);
  filter: brightness(0.2);
  opacity: 0;
}

.sli-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.sli-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sli-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 13, 13, 0.7);
  color: #d4a85a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.sli-ov {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.sli.pc .sli-ov {
  opacity: 1;
}

.sli-ov h3 {
  color: #fff;
  font-size: 1.3rem;
}

.sli-ov p {
  color: #d4a85a;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.sl-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 90, 0.3);
  background: transparent;
  color: #d4a85a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.sl-btn:hover {
  background: #d4a85a;
  color: #0d0d0d;
}

.sl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 168, 90, 0.25);
  cursor: pointer;
  transition: all 0.3s;
}

.sdot.on {
  background: #d4a85a;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .sl-cont {
    gap: 0.8rem;
  }

  .sli {
    width: 170px;
  }
}

/* ── HIGHLIGHT ── */
.hl-wrap {
  padding: 6rem 2.5rem;
  background: #141414;
}

.hl-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hl-mosaic {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.hl-mosaic.reveal {
  opacity: 1;
  transform: translateX(0);
}

.mg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 12px;
}

.ma2 {
  grid-column: 1;
  grid-row: 1/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mb2 {
  grid-column: 2;
  grid-row: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mc2 {
  grid-column: 2;
  grid-row: 2;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.mg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mo-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 50%);
}

.mbadge2 {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(13, 13, 13, 0.75);
  color: #d4a85a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}

.hl-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1;
}

.hl-count span {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
}

.hl-count small {
  font-size: 0.55rem;
  text-transform: uppercase;
}

.hl-text {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s 0.1s ease;
}

.hl-text.reveal {
  opacity: 1;
  transform: translateX(0);
}

.hl-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d4a85a;
  margin-bottom: 1.2rem;
}

.hl-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.hl-title em {
  font-style: italic;
  color: #d4a85a;
}

.hl-p {
  margin-top: 1.2rem;
  color: rgba(232, 224, 208, 0.6);
  line-height: 1.9;
  font-size: 0.92rem;
}

.hl-feats {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hfeat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hfico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.fi1 {
  background: rgba(196, 105, 74, 0.15);
  color: #c4694a;
}

.fi2 {
  background: rgba(212, 168, 90, 0.15);
  color: #d4a85a;
}

.fi3 {
  background: rgba(90, 158, 106, 0.15);
  color: #5a9e6a;
}

.fi4 {
  background: rgba(58, 122, 140, 0.15);
  color: #3a7a8c;
}

.hfeat span {
  font-size: 0.85rem;
  color: rgba(232, 224, 208, 0.8);
}

.hl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.2rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(196, 105, 74, 0.35);
  transition: transform 0.3s;
}

.hl-cta:hover {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .hl-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── PALETTE ── */
.pal-sec {
  padding: 4rem 2rem;
  background: #0d0d0d;
  text-align: center;
}

.pal-hd h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.pal-hd p {
  color: rgba(232, 224, 208, 0.5);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.pal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pi2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.pi2.reveal {
  opacity: 1;
  transform: translateY(0);
}

.pi2-sw {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.pi2:hover .pi2-sw {
  transform: scale(1.15) translateY(-4px);
}

.pi2-nm {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.6);
}

/* ── WAVE DIVIDER ── */
.wave-div {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #c4694a, #9a4a30);
  overflow: hidden;
}

.wave-div canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wave-txt {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.wave-sep {
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}

/* ── HORIZONTAL SCROLL STRIP ── */
.hscroll-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #141414;
  overflow: hidden;
}

.hscroll-title {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

.hscroll-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
}

.hscroll-title h2 em {
  font-style: italic;
  color: #d4a85a;
}

.hscroll-title p {
  color: rgba(232, 224, 208, 0.5);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.hscroll-sticky {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hscroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 4vw;
  will-change: transform;
}

.hscroll-card {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hscroll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hscroll-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

.hscroll-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.hscroll-card-info h3 {
  color: #fff;
  font-size: 1.3rem;
}

.hscroll-card-info span {
  color: #d4a85a;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hscroll-progress {
  height: 3px;
  background: rgba(212, 168, 90, 0.15);
  margin: 0 4vw 1.5rem;
  border-radius: 3px;
  overflow: hidden;
}

.hscroll-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #c4694a, #d4a85a);
}

/* ── PARALLAX REVEAL ── */
.parallax-sec {
  padding: 6rem 2rem;
  background: #0d0d0d;
}

.parallax-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.parallax-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.parallax-row.pr2,
.parallax-row.pr4 {
  direction: rtl;
}

.parallax-row.pr2>*,
.parallax-row.pr4>* {
  direction: ltr;
}

.par-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.par-img-wrap.rev {
  opacity: 1;
}

.par-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.par-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(13, 13, 13, 0.75);
  color: #d4a85a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

.par-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.par-text.rev {
  opacity: 1;
  transform: translateY(0);
}

.par-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 168, 90, 0.25);
  display: block;
  margin-bottom: 0.5rem;
}

.par-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.8rem;
}

.par-text h3 em {
  font-style: italic;
  color: #d4a85a;
}

.par-text p {
  color: rgba(232, 224, 208, 0.6);
  line-height: 1.8;
  font-size: 0.9rem;
}

.par-tag {
  margin-top: 0.8rem;
  color: #d4a85a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 800px) {

  .parallax-row,
  .parallax-row.pr2,
  .parallax-row.pr4 {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ── ROTATING IMAGE RING ── */
.ring-sec {
  padding: 6rem 2rem;
  background: #141414;
  text-align: center;
}

.ring-hd h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.ring-hd h2 em {
  font-style: italic;
  color: #d4a85a;
}

.ring-hd p {
  color: rgba(232, 224, 208, 0.5);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.ring-stage {
  --c1: #c4694a;
  --c2: #d4a85a;
  --c3: #5a9e6a;
  --c4: #3a7a8c;
  --c5: #7a6858;
  --c6: #b07850;
  position: relative;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  margin: 0 auto;
}

.ring-orbit,
.ring-orbit2 {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(212, 168, 90, 0.15);
  border-radius: 50%;
}

.ring-orbit2 {
  inset: 20%;
}

.ring-pulse {
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: rgba(212, 168, 90, 0.1);
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-pulse2 {
  animation-delay: 1.5s;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.ring-center {
  position: absolute;
  inset: 32%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(212, 168, 90, 0.3), 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.ring-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.ring-tile {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 0 2px var(--tglow, #d4a85a);
  transition: box-shadow 0.3s;
}

.ring-tile:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 0 3px var(--tglow, #d4a85a), 0 0 25px var(--tglow, #d4a85a);
}

.ring-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .ring-tile {
    width: 60px;
    height: 60px;
  }
}

/* ── FILTER ── */
.filt-sec {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem 1rem;
}

.filt-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fbtn {
  padding: 0.8rem 2rem;
  border-radius: 40px;
  border: 1px solid rgba(212, 168, 90, 0.25);
  background: transparent;
  color: rgba(232, 224, 208, 0.6);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.fbtn.on {
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  border-color: transparent;
  font-weight: 600;
}

/* ── GALLERY ── */
.gal-sec {
  padding: 2rem 2.5rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gal-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 168, 90, 0.12);
}

.gal-hd h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.gal-hd h2 em {
  font-style: italic;
  color: #d4a85a;
}

.cnt {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.4);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

@media (max-width: 1100px) {
  .tgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .tgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .tgrid {
    grid-template-columns: 1fr;
  }
}

.tcard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(35px);
  transition: border-color 0.4s, box-shadow 0.5s, transform 0.5s;
}

.tcard.reveal {
  animation: tcardPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--d, 0)*1ms);
}

@keyframes tcardPop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tcard:hover {
  border-color: rgba(212, 168, 90, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(-6px);
}

.timg {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.timg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.tcard:hover .timg img {
  transform: scale(1.1);
}

.timg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 168, 90, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tcard:hover .timg-glow {
  opacity: 1;
}

.timg-corner {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.6);
  color: #d4a85a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.tcard:hover .timg-corner {
  opacity: 1;
}

.trib {
  position: absolute;
  top: 10px;
  left: 0;
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px 4px 8px;
  border-radius: 0 4px 4px 0;
  transform: translateX(-100%);
  transition: transform 0.35s;
}

.tcard:hover .trib {
  transform: translateX(0);
}

.tview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(13, 13, 13, 0.75);
  color: #d4a85a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s;
}

.tcard:hover .tview {
  transform: translate(-50%, -50%) scale(1);
}

.tfoot {
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.tno {
  font-size: 0.82rem;
  color: rgba(212, 168, 90, 0.45);
  flex-shrink: 0;
}

.tbook {
  flex: 1;
  padding: 0.55rem 0.8rem;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, #c4694a, #d4a85a);
  color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.3s, filter 0.3s;
}

.tbook:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.tbook .wa {
  color: #1a3d1a;
  font-size: 0.85rem;
}

/* ==================== paints.html (REBUILT from scratch — original lost, no backup available) ==================== */

main,
main * {
  box-sizing: border-box;
}

main {
  background: #faf7f1;
  color: #211c14;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding: 6rem 4rem 4rem;
  background: linear-gradient(160deg, #fdf3e2 0%, #faf7f1 65%);
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9962f;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 700;
  color: #1c1710;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #c9962f, #e0b95a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(201, 150, 47, 0.2);
  border-radius: 40px;
  font-size: 0.82rem;
  color: #4a4235;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.hero-pill i {
  color: #c9962f;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.7rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #1aa851);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: #1c1710;
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #3a3122;
}

.hero-note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #6b6152;
  max-width: 480px;
  margin-bottom: 1.4rem;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #4a4235;
}

.chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9962f;
}

.hero-visual {
  position: relative;
}

.hero-can-stack {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hero-can-stack img {
  width: 100%;
  display: block;
}

.hero-tag {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: #1c1710;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-tag i {
  color: #c9962f;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 3rem;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .chips-row {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 2rem;
  }
}

/* ── SERVICES ── */
.services-section {
  padding: 5rem 2.5rem;
  background: #fff;
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #1c1710;
  margin-bottom: 0.6rem;
}

.services-header p {
  color: #6b6152;
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: #faf7f1;
  border: 1px solid rgba(201, 150, 47, 0.15);
  transition: transform 0.35s, box-shadow 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card i {
  font-size: 1.7rem;
  color: #c9962f;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  color: #1c1710;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.82rem;
  color: #6b6152;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ── GUARANTEE BAND ── */
.guarantee-band {
  padding: 5rem 2.5rem;
  background: #1c1710;
  color: #fff;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.guarantee-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.9rem;
}

.guarantee-band>div:first-child p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.8;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.guarantee-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.guarantee-item i {
  font-size: 1.2rem;
  color: #c9962f;
  margin-top: 3px;
  flex-shrink: 0;
}

.guarantee-item .title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.guarantee-item span:not(.title) {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .guarantee-band {
    grid-template-columns: 1fr;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.how-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #1c1710;
  margin-bottom: 0.6rem;
}

.how-copy .lead {
  color: #6b6152;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.how-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9962f, #e0b95a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.how-step strong {
  display: block;
  color: #1c1710;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.how-step span {
  font-size: 0.82rem;
  color: #6b6152;
  line-height: 1.6;
}

.how-visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.how-visual img {
  width: 100%;
  display: block;
}

@media (max-width: 900px) {
  .how-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
  }
}

/* ── PAINT PRODUCTS ── */
.paint-products {
  padding: 5rem 2.5rem;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #1c1710;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: #6b6152;
  font-size: 0.92rem;
  margin-bottom: 3rem;
}

.product-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  text-align: left;
}

.product {
  background: #faf7f1;
  border: 1px solid rgba(201, 150, 47, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.product h3 {
  font-size: 0.95rem;
  color: #1c1710;
  padding: 1rem 1.1rem 0.4rem;
}

.order-btn {
  display: block;
  margin: 0.6rem 1.1rem 1.1rem;
  padding: 0.65rem;
  text-align: center;
  background: linear-gradient(135deg, #c9962f, #e0b95a);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform 0.3s, filter 0.3s;
}

.order-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PAINT SYSTEMS / RANGE ── */
#paint-range {
  padding: 5rem 2.5rem;
  background: #faf7f1;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #1c1710;
  margin-bottom: 0.7rem;
}

.section-heading p {
  color: #6b6152;
  font-size: 0.9rem;
  line-height: 1.7;
}

.paint-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.paint-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  border: 1px solid rgba(201, 150, 47, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.paint-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.paint-card-title {
  font-size: 1.15rem;
  color: #1c1710;
}

.paint-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #c9962f;
  background: rgba(201, 150, 47, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.paint-tones {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}

.tone {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tone.blue {
  background: #2a5ea8;
}

.tone.violet {
  background: #6a4ea8;
}

.tone.gold {
  background: #c9962f;
}

.tone.neutral {
  background: #cfc4ae;
}

.paint-copy {
  font-size: 0.85rem;
  color: #6b6152;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.paint-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.78rem;
  color: #4a4235;
  margin-bottom: 1.3rem;
}

.paint-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn-chip {
  padding: 0.6rem 1.1rem;
  font-size: 0.75rem;
  border-radius: 40px;
}

.btn-chip.primary {
  background: linear-gradient(135deg, #25d366, #1aa851);
  color: #fff;
}

.btn-chip.ghost {
  background: transparent;
  border: 1px solid rgba(28, 23, 16, 0.2);
  color: #1c1710;
}

.btn-chip.ghost:hover {
  background: rgba(28, 23, 16, 0.05);
}

@media (max-width: 900px) {
  .paint-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .paint-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SHADE STRIP ── */
.shade-strip {
  max-width: 1000px;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.6rem 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201, 150, 47, 0.15);
}

.shade-strip .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9962f;
  font-weight: 600;
}

.shade-strip-swatches {
  display: flex;
  gap: 8px;
}

.shade-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.shade-strip-cta {
  font-size: 0.82rem;
  color: #4a4235;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shade-strip-cta i {
  color: #c9962f;
}

/* ==================== watertank.html (REBUILT from scratch — original lost, no backup available) ==================== */

.sink-about-animated,
.sink-about-animated *,
.tank-clean-section,
.tank-clean-section *,
.water-tank-section,
.water-tank-section * {
  box-sizing: border-box;
}

/* ── ABOUT / INTRO ── */
.sink-about-animated {
  position: relative;
  overflow: hidden;
  padding: 6rem 2.5rem;
  background: #0b1420;
  color: #e6edf3;
  font-family: 'Poppins', sans-serif;
}

.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.float-element {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.float-element.el1 {
  background: #2196f3;
  top: -10%;
  left: -8%;
}

.float-element.el2 {
  background: #29b6f6;
  bottom: -15%;
  right: -8%;
}

.sink-about-animated .container {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 auto;
}

.animated-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.typing-text {
  display: block;
}

.typing-text .text-line {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
}

.typing-text .sub-line {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: #64b5f6;
  margin-top: 0.5rem;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.4rem;
}

.decoration-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #29b6f6);
}

.decoration-line:last-child {
  background: linear-gradient(90deg, #29b6f6, transparent);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #29b6f6;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.video-frame {
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.sink-image-animated {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.video-overlay-animated {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 20, 32, 0.7) 100%);
}

.video-accent-box {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid #29b6f6;
  border-radius: 16px;
  z-index: 1;
}

.animated-text-content .reveal-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(230, 237, 243, 0.7);
  margin-bottom: 1.1rem;
}

.important-message {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(41, 182, 246, 0.08);
  border: 1px solid rgba(41, 182, 246, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
}

.message-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2196f3, #29b6f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.message-content h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
}

.message-content p {
  font-size: 0.82rem;
  color: rgba(230, 237, 243, 0.6);
  line-height: 1.7;
}

.animated-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.8rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #29b6f6;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(230, 237, 243, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.materials-section {
  text-align: center;
}

.section-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #fff;
  margin-bottom: 2.2rem;
}

.materials-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.material-item {
  padding: 1.8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(41, 182, 246, 0.12);
  transition: transform 0.3s, border-color 0.3s;
}

.material-item:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 182, 246, 0.4);
}

.material-icon {
  font-size: 1.5rem;
  color: #29b6f6;
  margin-bottom: 0.8rem;
}

.material-item h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.material-item p {
  font-size: 0.78rem;
  color: rgba(230, 237, 243, 0.55);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .materials-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .materials-showcase {
    grid-template-columns: 1fr;
  }

  .animated-stats {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}

/* ── TANK PRODUCT GRID ── */
.tank-clean-section {
  position: relative;
  padding: 5rem 2.5rem;
  background: #0d1b2a;
  overflow: hidden;
}

.tank-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  z-index: 0;
}

.tank-grid {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.tank-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(41, 182, 246, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}

.tank-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.tank-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tank-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.tank-card:hover .tank-img img {
  transform: scale(1.08);
}

.tank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #2196f3, #29b6f6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.tank-content {
  padding: 1.2rem 1.3rem 1.4rem;
}

.tank-content h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1rem;
}

.tank-btn {
  display: block;
  text-align: center;
  padding: 0.7rem;
  background: linear-gradient(135deg, #25d366, #1aa851);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.3s, filter 0.3s;
}

.tank-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

@media (max-width: 900px) {
  .tank-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tank-grid {
    grid-template-columns: 1fr;
  }
}

/* ── decorative unused cube (kept inert, no JS drives it here) ── */
#cube,
#cube .face {
  display: none;
}

/* ── WATER TANK STORAGE / BENEFITS ── */
.water-tank-section {
  padding: 5rem 2.5rem;
  background: #0b1420;
  text-align: center;
}

.water-container {
  max-width: 1000px;
  margin: 0 auto;
}

.water-tank-section .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 1.3rem;
}

.water-tank-section .section-desc {
  color: rgba(230, 237, 243, 0.65);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.water-tank-section .benefits-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: #fff;
  margin: 2.5rem 0 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  text-align: left;
}

.benefit-card {
  padding: 1.8rem 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(41, 182, 246, 0.12);
  transition: transform 0.3s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 182, 246, 0.4);
}

.benefit-card span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.benefit-card h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.8rem;
  color: rgba(230, 237, 243, 0.55);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}