:root {
  --primary: #008000;
  --secondary: #f5f5f5;
  --accent: #9ce83f;
  --dark: #222;
  --light: #fff;
  --transition: 0.3s;
}

/* ================= PAGE LOADER ================= */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #056908 0%, #097610 50%, #0a8a12 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

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

.loader-content {
  text-align: center;
  color: #fff;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #ffb300;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-content p {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--secondary);
  color: var(--dark);
  min-height: 100vh;
  padding-top: 70px;
  overflow-x: hidden;
}

/* Selection color */
::selection {
  background: #ffb300;
  color: #fff;
}

::-moz-selection {
  background: #ffb300;
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #008000, #ffb300);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffb300, #008000);
}

/* ================= NAVBAR ================= */
.navbar {
    background: linear-gradient(90deg, #6dca2e 0%, #097610 80%);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 30px rgba(0,128,0,0.25);
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.logo {
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.logo img {
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  animation: none;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(255,179,0,0.5));
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links li a {
  text-decoration: none;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.nav-links li a:hover::before {
  left: 100%;
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255,179,0,0.9);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(255,179,0,0.4);
}

.nav-links li a:active {
  transform: translateY(0) scale(0.98);
}

/* Hamburger menu (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navbar Social Media Icons */
.navbar-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 1.5rem;
}

.navbar-social a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  transition: 
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.navbar-social a:hover {
  background: var(--accent, #ffb300);
  color: #4e342e;
  box-shadow: 0 4px 16px rgba(255,179,0,0.10);
}

/* ================= HERO SLIDER (PREMIUM) ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Gradient overlay for better text visibility */
.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0,128,0,0.3) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(255,179,0,0.2) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Ken Burns Effect - Smooth Zoom (Once Only) */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  will-change: transform;
  transition: none;
}

.slide.active img {
  animation: kenBurnsZoom 5s ease-out forwards;
}

.slide:not(.active) img {
  animation: none !important;
  transform: scale(1);
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

/* Modern Glassmorphism Caption */
.slide-caption {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 600px;
  padding: 2.5rem 3rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/* Mobile caption fade animation */
@media (max-width: 768px) {
  .slide-caption {
    animation: fadeInCenter 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes fadeInCenter {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }
}

.slide-caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #ffb300 0%, #008000 100%);
  border-radius: 20px 0 0 20px;
}

.slide-caption h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 
    2px 2px 8px rgba(0,0,0,0.5),
    0 0 20px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  line-height: 1.2;
}

.slide-caption p {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 
    1px 1px 6px rgba(0,0,0,0.5),
    0 0 15px rgba(0,0,0,0.3);
  line-height: 1.6;
}

/* Modern Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #008000 100%);
  border-color: #ffb300;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(255,179,0,0.5);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev { 
  left: 30px; 
}

.slider-btn.next { 
  right: 30px; 
}

/* Modern Progress Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.slider-dots span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.4s;
}

.slider-dots span:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.slider-dots span.active {
  background: linear-gradient(135deg, #ffb300 0%, #008000 100%);
  box-shadow: 0 0 12px rgba(255,179,0,0.6);
  width: 32px;
  border-radius: 50px;
}

.slider-dots span.active::before {
  border-color: rgba(255,179,0,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .hero-slider {
    height: 400px;
  }

  .slide-caption {
    left: 5%;
    max-width: 500px;
    padding: 2rem 2.5rem;
  }

  .slide-caption h2 {
    font-size: 2.2rem;
  }

  .slide-caption p {
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }

  .slide-caption {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    padding: 1.8rem 2rem;
    text-align: center;
  }

  .slide-caption::before {
    display: none;
  }

  .slide-caption h2 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .slide-caption p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .slider-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }

  .slider-dots {
    bottom: 15px;
    padding: 8px 12px;
    gap: 8px;
  }

  .slider-dots span {
    width: 10px;
    height: 10px;
  }

  .slider-dots span.active {
    width: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-slider {
    height: 350px;
  }

  .slide-caption {
    max-width: 90%;
    padding: 1.5rem 1.5rem;
  }

  .slide-caption h2 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }

  .slide-caption p {
    font-size: 0.85rem;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }

  .slider-dots {
    bottom: 12px;
    padding: 6px 10px;
    gap: 6px;
  }

  .slider-dots span {
    width: 8px;
    height: 8px;
  }

  .slider-dots span.active {
    width: 20px;
  }
}

/* Categories */
.categories {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
}

.categories h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #008000;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cat-btn {
  background: #008000;
  color: var(--light);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.cat-btn.active,
.cat-btn:hover {
  background: #b0e5b0;
  color: #004c00;
}

/* Furniture Grid */
.furniture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 2rem 4vw;
  max-width: 1200px;
  margin: 0 auto 2.5rem auto;
}

.furniture-item {
  background: var(--light);
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.furniture-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,128,0,0.05) 0%, rgba(255,179,0,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.furniture-item:hover::before {
  opacity: 1;
}

.furniture-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,128,0,0.2);
  border: 2px solid rgba(255,179,0,0.3);
}

.furniture-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.furniture-item h3 {
  margin: 1rem 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.furniture-item p {
  color: #555;
  font-size: 1rem;
  padding: 0 1rem 1rem 1rem;
  text-align: center;
}

/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, #056908 0%, #097610 50%, #0a8a12 100%);
  color: #fff;
  padding: 3rem 0 0 0;
  margin-top: 3rem;
  font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffb300, #ff9800, #ffb300, transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -50%; }
  100% { left: 100%; }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* FOOTER TOP */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 2rem 0 3rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* FOOTER BRAND */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-logo img {
  /* Normal logo - no filter */
  transition: all 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.footer-about {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c8e6c9;
  margin: 0;
}

/* FOOTER LINKS */
.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #ffb300;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ffb300;
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links ul li a {
  color: #e8f5e9;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links ul li a::before {
  content: "▸";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s;
  color: #ffb300;
}

.footer-links ul li a:hover {
  color: #ffb300;
  transform: translateX(15px);
}

.footer-links ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* FOOTER CONTACT */
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #ffb300;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #ffb300;
  border-radius: 2px;
}

.footer-contact p {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #e8f5e9;
}

.footer-contact p i {
  color: #ffb300;
  font-size: 1.1rem;
  min-width: 20px;
  transition: transform 0.3s;
}

.footer-contact p:hover i {
  transform: scale(1.2);
}

.footer-contact a {
  color: #e8f5e9;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #ffb300;
}

/* FOOTER SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-icon.whatsapp:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.social-icon.instagram:hover {
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.5);
}

.social-icon i {
  position: relative;
  z-index: 1;
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.95rem;
  color: #c8e6c9;
  margin: 0;
}

.footer-dev {
  font-size: 0.9rem;
  color: #c8e6c9;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-dev i {
  color: #ffb300;
  font-size: 1rem;
  animation: codeFloat 2s ease-in-out infinite;
}

@keyframes codeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.gn-link {
  color: #ffb300;
  text-decoration: none;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 179, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid transparent;
}

.gn-link:hover {
  background: #ffb300;
  color: #056908;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.4);
  border: 1px solid #ffb300;
}

.gn-link strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}


.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pagination button {
  background: #008000;
  color: var(--light);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.pagination button.active,
.pagination button:hover {
  background: var(--accent);
  color: var(--dark);
}

/* --- Detail Page Styles --- */
.detail-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
}

.detail-slider {
  position: relative;
  width: 600px;
  max-width: 100vw;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.detail-slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.2rem;
  transition: opacity 0.4s;
  background: #eee;
}

.detail-slider .slider-thumbs {
  display: flex;
  gap: 0.7rem;
  margin: 1.2rem 0 0.7rem 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.detail-slider .slider-thumbs img {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  transition: border 0.2s, opacity 0.2s;
  flex: 0 0 auto;
}

.detail-slider .slider-thumbs img.active {
  border: 2px solid var(--accent, #ffb300);
  opacity: 1;
}

.detail-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-slider .slider-arrow:hover {
  background: var(--accent, #ffb300);
  color: #222;
}
.detail-slider .slider-arrow.prev { left: 16px; }
.detail-slider .slider-arrow.next { right: 16px; }

.detail-info {
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-info h2 {
  color: var(--primary, #6d4c41);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.detail-info p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 1.2rem;
}

.detail-info ul {
  margin: 1.2rem 0 1.5rem 1.2rem;
  padding: 0;
  color: #555;
  font-size: 1.05rem;
}
.detail-info ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.detail-info .back-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent, #ffb300);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
.detail-info .back-link:hover {
  color: #4e342e;
  text-decoration: underline;
}

/* Search bar: always show button next to input */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 1rem; /* 2rem-dən 1rem-ə sal və ya 0 et */
  margin-right: 0;
  flex-shrink: 0;
  max-width: 100%;
  overflow: visible;
}

.search-bar input {
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  outline: none;
  width: 180px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.search-bar button {
  margin-left: -8px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent, #ffb300);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 36px;
  min-height: 36px;
  /* Ensure button is always visible */
  opacity: 1;
  visibility: visible;
}

.search-bar button i {
  color: #fff;
  font-size: 1rem;
}

.search-bar button:hover {
  background: #ff9800;
}

@media (max-width: 900px) {
  .search-bar {
    justify-content: flex-start; /* Mobilde də solda qalsın */
    margin-left: 0;
    width: 100%;
  }
}

/* Responsive: Stack on mobile */
@media (max-width: 1100px) {
  .detail-container {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
  }
  .detail-slider {
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .detail-info {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .detail-slider img {
    height: 220px;
  }
  .detail-slider .slider-thumbs img {
    width: 50px;
    height: 36px;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #097610 0%, #056908 100%);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .nav-links li a {
    display: block;
    padding: 1rem;
    border-radius: 0;
    width: 100%;
  }

  .nav-links li a:hover {
    background: rgba(255,255,255,0.15);
    transform: none;
  }
}

/* Bedroom furniture grid styles */
.furniture-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.furniture-item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.2rem 1rem 1.5rem 1rem;
  max-width: 320px;
  width: 100%;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.furniture-item img {
  width: 100%;
  max-width: 270px;
  height: 180px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(255,179,0,0.06);
}

.furniture-item h3 {
  font-size: 1.15rem;
  color: #6d4c41;
  margin-bottom: 0.5rem;
}

.furniture-item p {
  color: #4e342e;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.furniture-item span {
  color: #ffb300;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 700px) {
  .furniture-grid {
    gap: 1rem;
  }
  .furniture-item {
    max-width: 95vw;
    min-width: 0;
    padding: 1rem 0.5rem 1.2rem 0.5rem;
  }
  .furniture-item img {
    max-width: 100%;
    height: 140px;
  }
}

/* --- Contact Page Styles --- */
.contact-hero {
  background: linear-gradient(120deg, #a6e487 0%, #c1d9b6 100%);
  padding: 2.5rem 0 2rem 0;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 2px 24px rgba(255,179,0,0.07);
}
.contact-hero h1 {
  font-size: 2.2rem;
  color: var(--primary, #ffffff);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.contact-hero p {
  font-size: 1.1rem;
  color: #f4f4f4;
  font-weight: bold;
  max-width: 600px;
  margin: 0 auto;
}
.contact-section {
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  border-radius: 1rem;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
  padding: 1.2rem 1rem;
  box-shadow: 0 2px 16px rgba(255,179,0,0.08);
}
.contact-info h2 {
  color: var(--accent, #ffb300);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.contact-info p, .contact-info a {
  color: #4e342e;
  font-size: 1.05rem;
  margin: 0.2rem 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info i {
  color: var(--accent, #ffb300);
  font-size: 1.2rem;
  min-width: 22px;
}
.contact-form {
  flex: 2 1 340px;
  min-width: 220px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.contact-form h2 {
  color: var(--accent, #ffb300);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  outline: none;
  background: #f9f9f9;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent, #ffb300);
  background: #fffbe7;
}
.contact-form button {
  background: var(--accent, #ffb300);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.contact-form button:hover {
  background: #ff9800;
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
  }
  .contact-info, .contact-form {
    max-width: 100%;
  }
}

/* --- Creative Bedroom Page Styles --- */
.bedroom-hero {
  background: linear-gradient(120deg, #76d876 0%, #008000 100%);
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 4px 32px rgba(140, 120, 255, 0.10);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.bedroom-hero img {
  width: 120px;
  height: 120px;
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  margin-bottom: 1.2rem;
  object-fit: cover;
}
.bedroom-hero h1 {
  font-size: 2.7rem;
  color: white;
  margin-bottom: 0.7rem;
  letter-spacing: 1.5px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
.bedroom-hero p {
  font-size: 1.25rem;
  color: #e3d8d5;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.92;
}
.bedroom-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #fff 0%, #e0c3fc 80%);
  opacity: 0.25;
  border-radius: 50%;
  z-index: 0;
}
.bedroom-hero::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #fff 0%, #8ec5fc 80%);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 0;
}

/* Bedroom Furniture Grid - Creative Card Style */
.furniture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.5rem;
  padding: 2.5rem 4vw;
  max-width: 1300px;
  margin: 0 auto 3rem auto;
}

.furniture-item {
  background: linear-gradient(135deg, #ceddce 0%, #ecf5ec 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(140, 120, 255, 0.10), 0 1.5px 8px rgba(255,179,0,0.06);
  padding: 1.5rem 1.2rem 2rem 1.2rem;
  max-width: 340px;
  width: 100%;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.22s;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.furniture-item:hover {
  transform: translateY(-10px) scale(1.035) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(140, 120, 255, 0.18), 0 4px 24px rgba(255,179,0,0.10);
  background: linear-gradient(135deg, #e3f0ff 0%, #f3e7fa 100%);
}
.furniture-item img {
  width: 100%;
  max-width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 1.1rem;
  background: #f5f5f5;
  box-shadow: 0 2px 12px rgba(140, 120, 255, 0.08);
  transition: transform 0.22s;
}
.furniture-item:hover img {
  transform: scale(1.06) rotate(1.5deg);
}
.furniture-item h3 {
  font-size: 1.22rem;
  color: #6d4c41;
  margin-bottom: 0.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.furniture-item p {
  color: #4e342e;
  font-size: 1.03rem;
  margin-bottom: 0.8rem;
  opacity: 0.93;
}
.furniture-item span {
  color: #ffb300;
  font-weight: bold;
  font-size: 1.13rem;
  letter-spacing: 0.5px;
  background: #fffbe7;
  padding: 0.3rem 1.1rem;
  border-radius: 1.2rem;
  box-shadow: 0 1px 6px rgba(255,179,0,0.07);
  display: inline-block;
}

.furniture-item::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #ffecd2 0%, #fcb69f 80%);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 0;
}

.furniture-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -30px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #e0c3fc 0%, #fff 80%);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 900px) {
  .bedroom-hero {
    padding: 2.2rem 0 1.2rem 0;
    border-radius: 0 0 1.2rem 1.2rem;
  }
  .furniture-grid {
    gap: 1.2rem;
    padding: 1.2rem 2vw;
  }
  .furniture-item {
    max-width: 98vw;
    min-width: 0;
    padding: 1rem 0.5rem 1.2rem 0.5rem;
  }
  .furniture-item img {
    max-width: 100%;
    height: 120px;
  }
}

/* --- Creative Showcase Section --- */
.creative-showcase {
  position: relative;
  margin: 2rem auto 2rem auto;
  max-width: 1100px;
  min-height: 320px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(140, 120, 255, 0.10);
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #e0c3fcaf 0%, #ffecd2 100%);
  z-index: 1;
  gap: 0;
  transition: box-shadow 0.3s;
}
.creative-showcase:hover {
  box-shadow: 0 8px 48px 0 rgba(255,179,0,0.18), 0 2px 24px rgba(140, 120, 255, 0.13);
}
.creative-showcase .creative-bg {
  position: absolute;
  left: -80px;
  top: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #fff 0%, #37ff00 80%);
  opacity: 0.18;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.creative-showcase .creative-content {
  position: relative;
  z-index: 2;
  flex: 2 1 400px;
  padding: 2.5rem 2.5rem 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: left;
  align-items: flex-start;
}
    .creative-showcase .creative-content h2 {
        font-size: 2rem;
        color: white;
        margin-bottom: 0.5rem;
        font-weight: bold;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }
.creative-showcase .creative-content p {
  font-size: 1.15rem;
  color: #4e342e;
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.creative-anim-text {
  display: inline-block;
  background: #fffbe7;
  color: #e1b91b;
  padding: 0.2rem 1rem;
  border-radius: 1.2rem;
  font-weight: bold;
  margin-top: 0.7rem;
  animation: creativePulse 1.8s infinite alternate;
}
@keyframes creativePulse {
  0% { box-shadow: 0 0 0 0 #ffb30044; }
  100% { box-shadow: 0 0 24px 8px #ffb30033; }
}
.creative-btn {
  display: inline-block;
  background: var(--accent, #ffb300);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-top: 1.2rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(255,179,0,0.08);
}
.creative-btn:hover {
  background: #e1b91b;
  color: #4e342e;
  box-shadow: 0 4px 24px rgba(255,179,0,0.13);
}
.creative-img {
  flex: 1 1 320px;
  max-width: 340px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.5rem;
  margin-right: 2.5rem;
  margin-left: 1rem;
  box-shadow: 0 2px 16px rgba(140, 120, 255, 0.10);
  z-index: 2;
  background: #fff;
  display: block;
  transition: transform 0.25s;
}
.creative-showcase:hover .creative-img {
  transform: scale(1.04) rotate(-1deg);
}

/* 2-ci section üçün soldan sağa düzülmə (şəkil solda, mətn sağda) */
.creative-showcase.creative-right {
  flex-direction: row;
  background: linear-gradient(120deg, #ffecd2 0%, #7ac15d 100%);
}
.creative-showcase.creative-right .creative-content {
  padding: 2.5rem 2.5rem 2.5rem 3.5rem;
  text-align: left;
  align-items: flex-start;
}
.creative-showcase.creative-right .creative-img {
  margin-right: 2.5rem;
  margin-left: 1rem;
}

/* 1-ci və 3-cü section üçün soldan sağa düzülmə */
.creative-showcase.creative-left {
  flex-direction: row;
  background: linear-gradient(120deg, #7ac15d 0%, #ffecd2 100%);
}
.creative-showcase.creative-left .creative-content {
  padding: 2.5rem 2.5rem 2.5rem 3.5rem;
  text-align: left;
  align-items: flex-start;
}
.creative-showcase.creative-left .creative-img {
  margin-right: 2.5rem;
  margin-left: 1rem;
}

/* Mobil üçün düzülmə */
@media (max-width: 900px) {
  .creative-showcase,
  .creative-showcase.creative-right,
  .creative-showcase.creative-left {
    flex-direction: column !important;
    padding: 0;
    min-height: 0;
    background: linear-gradient(120deg, #e0c3fc 0%, #ffecd2 100%);
  }
  .creative-showcase .creative-content,
  .creative-showcase.creative-right .creative-content,
  .creative-showcase.creative-left .creative-content {
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    text-align: center !important;
    align-items: center !important;
  }
  .creative-img {
    margin: 1.2rem auto 2rem auto !important;
    width: 95vw;
    max-width: 98vw;
    height: 180px;
  }
}


/* style.css sonuna əlavə edin */
.navbar-social-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
  z-index: 105; /* Daha yüksək z-index */
}
.social-dropbtn {
  background: var(--accent, #ffb300);
  color: #fff;
  padding: 0.5rem 1.2rem;
  font-size: 1.08rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.social-dropbtn:hover {
  background: #e1b91b;
}
.social-dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border-radius: 1rem;
  z-index: 9999; /* Navbar-dan üstün olsun */
  margin-top: 0.5rem;
  right: 0;
  padding: 0.7rem 0;
  top: 100%;
  left: auto;
}

.social-dropdown-content a {
  color: #6d4c41;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 0.7rem;
  font-size: 1.05rem;
  transition: background 0.18s;
}
.social-dropdown-content a:hover {
  background: #ffecd2;
}
.navbar-social-dropdown:hover .social-dropdown-content,
.navbar-social-dropdown:focus-within .social-dropdown-content {
  display: block;
}


/* --- About Page Styles --- */
 .about-hero {
      background: linear-gradient(120deg, #ffecd2 0%, #c5e8b4 100%);
      padding: 3rem 0 2rem 0;
      text-align: center;
      border-radius: 0 0 2rem 2rem;
      box-shadow: 0 2px 24px rgba(255,179,0,0.07);
    }
    .about-hero img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      margin-bottom: 1rem;
    }
    .about-hero h1 {
      font-size: 2.5rem;
      color: var(--primary, #6d4c41);
      margin-bottom: 0.5rem;
      letter-spacing: 1px;
    }
    .about-hero p {
      font-size: 1.2rem;
      color: #5a4636;
      max-width: 600px;
      margin: 0 auto;
    }
    .about-section {
      max-width: 900px;
      margin: 2.5rem auto 2rem auto;
      background: #fff;
      border-radius: 1.2rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      padding: 2.5rem 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      align-items: flex-start;
    }
    .about-img {
      flex: 1 1 260px;
      min-width: 220px;
      max-width: 340px;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 2px 16px rgba(255,179,0,0.08);
      background: #fafafa;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 1rem;
    }
    .about-content {
      flex: 2 1 340px;
      min-width: 220px;
      max-width: 540px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .about-content h2 {
      color: var(--accent, #ffb300);
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .about-content p {
      color: #4e342e;
      font-size: 1.1rem;
      margin-bottom: 1.2rem;
      line-height: 1.7;
    }
    .about-values {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }
    .about-value {
      flex: 1 1 180px;
      background: #fff8e1;
      border-radius: 0.8rem;
      padding: 1.2rem 1rem;
      text-align: center;
      box-shadow: 0 2px 8px rgba(255,179,0,0.06);
    }
    .about-value i {
      color: var(--accent, #ffb300);
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .about-value h3 {
      font-size: 1.1rem;
      color: #6d4c41;
      margin-bottom: 0.3rem;
    }
    .about-value p {
      font-size: 0.98rem;
      color: #6d4c41;
      margin: 0;
    }
    @media (max-width: 900px) {
      .about-section {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0.5rem;
      }
      .about-img, .about-content {
        max-width: 100%;
      }
    }


/* style.css sonuna əlavə edin */
.offer-banner {
  width: 100%;
  background: linear-gradient(90deg, #ffb300 0%, #ffecd2 100%);
  box-shadow: 0 4px 32px 0 #ffb30033;
  padding: 1.2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1200;
  position: relative;
  margin-bottom: 0;
  animation: offerPop 1s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes offerPop {
  0% { transform: scale(0.8) translateY(-40px); opacity: 0; }
  80% { transform: scale(1.05) translateY(8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.offer-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  width: 95vw;
}
.offer-icon {
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, #e1b91b 0%, #ffb300 100%);
  border-radius: 50%;
  padding: 0.7rem 1rem;
  box-shadow: 0 2px 12px #ffb30044;
  margin-right: 0.5rem;
  animation: offerIconPulse 1.5s infinite alternate;
}
@keyframes offerIconPulse {
  0% { box-shadow: 0 0 0 0 #ffb30044; }
  100% { box-shadow: 0 0 24px 8px #ffb30033; }
}
.offer-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: #008000;
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}
.offer-title b {
  color: #e1306c;
  font-size: 1.5rem;
  margin-left: 0.3rem;
}
.offer-desc {
  font-size: 1.05rem;
  color: #008000;
  display: block;
}
.offer-btn {
  margin-left: 2rem;
  background: linear-gradient(135deg, #e1306c 0%, #c51d5a 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(225,48,108,0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.offer-btn::after {
  content: "🎁";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s;
}

.offer-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  color: #056908;
  box-shadow: 0 8px 32px rgba(255,179,0,0.6);
  transform: translateY(-3px) scale(1.08);
  padding-right: 3rem;
  animation: none;
}

.offer-btn:hover::after {
  right: 15px;
  opacity: 1;
}
@media (max-width: 700px) {
  .offer-content {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }
  .offer-btn {
    margin-left: 0;
    margin-top: 0.7rem;
    width: 100%;
    max-width: 220px;
  }
}

/* FOOTER RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 1.5rem 0 2rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .footer-about {
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  /* Add horizontal padding to cards */
  .furniture-item {
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
}



/* assets/css/style.css - Modal üçün stil əlavə edin */
.modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.38);
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.35s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-content {
  background: linear-gradient(120deg, #fffbe7 0%, #e0f7fa 100%);
  padding: 2.5rem 2.2rem 2rem 2.2rem;
  border-radius: 1.5rem;
  min-width: 320px;
  max-width: 95vw;
  position: relative;
  box-shadow: 0 8px 40px 0 rgba(140, 120, 255, 0.13), 0 2px 16px rgba(255,179,0,0.13);
  animation: modalPop 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@keyframes modalPop {
  0% { transform: scale(0.85) translateY(40px); opacity: 0; }
  80% { transform: scale(1.05) translateY(-8px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  font-size: 2rem;
  color: #e1306c;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}
.close:hover {
  color: #ffb300;
  transform: scale(1.2) rotate(10deg);
}
#modalProductTitle {
  color: #008000;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-align: center;
}
#orderForm {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
#orderForm label {
  display: block;
  margin-top: 12px;
  color: #6d4c41;
  font-weight: 500;
  font-size: 1.07rem;
  letter-spacing: 0.2px;
}
#orderForm input,
#orderForm textarea {
  width: 100%;
  margin-top: 5px;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  border: 1.5px solid #e0c3fc;
  background: #fff;
  font-size: 1.05rem;
  transition: border 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}
#orderForm input:focus,
#orderForm textarea:focus {
  border: 1.5px solid #ffb300;
  background: #fffbe7;
}
#orderForm button {
  margin-top: 18px;
  background: linear-gradient(90deg, #ffb300 0%, #008000 100%);
  color: #fff;
  border: none;
  padding: 0.8rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px #ffb30033;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.5px;
}
#orderForm button:hover {
  background: linear-gradient(90deg, #008000 0%, #ffb300 100%);
  color: #fff;
  box-shadow: 0 4px 24px #ffb30055;
}
#orderSuccess {
  display: none;
  color: #008000;
  margin-top: 16px;
  font-size: 1.13rem;
  font-weight: 600;
  text-align: center;
  background: #e0f7fa;
  border-radius: 1rem;
  padding: 0.7rem 1rem;
  box-shadow: 0 2px 8px #b2dfdb44;
  animation: modalPop 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
@media (max-width: 600px) {
  .modal-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    min-width: 0;
    width: 98vw;
  }
  #orderForm {
    max-width: 98vw;
  }
}

/* Sifariş et butonu üçün kreativ stil */
.order-btn {
  margin-top: 14px;
  background: linear-gradient(135deg, #ffb300 0%, #008000 100%);
  color: #fff;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 2rem;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,179,0,0.3);
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}

.order-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.order-btn:hover::before {
  width: 300px;
  height: 300px;
}

.order-btn:hover, .order-btn:focus {
  background: linear-gradient(135deg, #008000 0%, #ffb300 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,179,0,0.5);
  transform: translateY(-4px) scale(1.08);
}

.order-btn:active {
  transform: translateY(-2px) scale(1.02);
}
.furniture-section h2 {
  font-size: 2.1rem;
  color: #008000;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(90deg, #fffbe7 0%, #e0f7fa 100%);
  padding: 1rem 0;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(255,179,0,0.07);
  display: block;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: static; /* Dəyişiklik: position və transform silindi */
  left: unset;
  transform: unset;
}

    /* Kiçik ekranlar üçün (mobil cihazlar) */
    @media (max-width: 768px) {
        .product-order-container {
            flex-direction: column;
        }

        .product-info, .order-form {
            flex: unset;
            width: 100%;
            text-align: center;
        }

        .order-form button {
            width: auto;
        }
    }

.luxury-hero {
    position: relative;
    height: 70vh;
    background-image: url('/assets/img/homeSlider/kitchen.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* PARALLAX EFFECT */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

    /* Qaranlıq blur overlay */
    .luxury-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
    }

/* Text block */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    padding: 1rem;
    animation: fadeUp 1.4s ease forwards;
}

    .hero-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 1.3rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }

/* Button */
.hero-btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 2rem;
    background: linear-gradient(135deg, #ffb300 0%, #008000 100%);
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(255,179,0,0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 12px 48px rgba(255,179,0,0.6);
    background: linear-gradient(135deg, #008000 0%, #ffb300 100%);
}

.hero-btn:active {
    transform: translateY(-3px) scale(1.03);
}

/* Fade animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
.showcase-3d {
    text-align: center;
    margin: 2rem auto;
}

    .showcase-3d h2 {
        font-size: 2.3rem;
        font-weight: 800;
        color: #008000;
        margin-bottom: 1.5rem;
    }

.card-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 3D Card */
.card3d {
    width: 280px;
    background: #fff;
    border-radius: 1.2rem;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
}

    .card3d:hover {
        transform: perspective(700px) rotateX(8deg) rotateY(-8deg) scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

    .card3d img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 1rem;
        margin-bottom: 1rem;
        transition: transform 0.35s;
    }

    .card3d:hover img {
        transform: scale(1.12);
    }

    .card3d h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #6d4c41;
    }


/* ================= CAROUSEL ================= */
.my-carousel {
    width: 100%;
    padding: 30px 0 20px 0;
}

.carousel-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.carousel-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,128,0,0.1) 0%, rgba(255,179,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.carousel-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0px 12px 35px rgba(0,128,0,0.25);
}

.carousel-card:hover::after {
    opacity: 1;
}

.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.carousel-card h3 {
    padding: 15px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.carousel-card:hover h3 {
    color: #008000;
}
