/* Furniture Website Styles - Pure HTML/CSS Version */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  width: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  color: #2d3436;
}

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.loader {
  text-align: center;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #8B9D83;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #2d3436;
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo span {
  display: inline-block;
}

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

.nav-link {
  text-decoration: none;
  color: #2d3436;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nav-link.active,
.nav-link:hover {
  color: #8B9D83;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B9D83;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #2d3436;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #8B9D83;
  padding-left: 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #2d3436;
  padding: 8px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: #f5f5f5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #B4846C;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #2d3436;
  padding: 8px;
}

/* Hero Section */
.hero-section {
  margin-top: 70px;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
  background: #8B9D83;
}

.hero-slide.active {
  opacity: 1;
}

.hero-container {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  width: 50%;
  padding-left: 20px;
  color: white;
  -webkit-animation: slideInLeft 0.8s ease-out;
  animation: slideInLeft 0.8s ease-out;
}

.hero-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
  display: block;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  width: 50%;
  -webkit-animation: slideInRight 0.8s ease-out;
  animation: slideInRight 0.8s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  -webkit-transform: translateY(-50%) scale(1.1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-btn:disabled:hover {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

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

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

@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
  }

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

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

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/* Button Styles */
.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  justify-content: center;
}

.btn-primary {
  background: #2d3436;
  color: white;
}

.btn-primary:hover {
  background: #1e2426;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 52, 54, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2d3436;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #2d3436;
}

.btn-white:hover {
  background: #f5f5f5;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-link {
  background: none;
  color: #8B9D83;
  padding: 0;
  font-weight: 600;
}

.btn-link:hover {
  color: #6d7d67;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.btn-cart {
  background: #8B9D83;
  color: white;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.btn-cart:hover {
  background: #6d7d67;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Section Titles */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3436;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #636e72;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Unique Design Section */
.unique-design-section {
  background: white;
}

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

.design-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
}

.design-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.design-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.design-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.design-card:hover .design-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.design-content {
  padding: 25px;
}

.design-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #2d3436;
}

.design-content p {
  color: #636e72;
  margin-bottom: 15px;
}

/* Inspiration Section */
.inspiration-section {
  background: #f8f9fa;
}

.inspiration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.inspiration-text h2 {
  text-align: left;
  margin-bottom: 20px;
}

.inspiration-text p {
  color: #636e72;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inspiration-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.inspiration-img.large {
  grid-row: span 2;
}

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

.inspiration-img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.inspiration-img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Handmade Section */
.handmade-section {
  background: linear-gradient(135deg, #B4846C 0%, #A67C6D 100%);
  padding: 0;
}

.handmade-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.handmade-image {
  overflow: hidden;
}

.handmade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.handmade-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  color: white;
}

.handmade-text h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.handmade-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Products Section */
.products-slider-wrapper {
  position: relative;
  padding: 0 70px;
}

.products-slider {
  overflow: hidden;
}

.products-track {
  display: flex;
  gap: 35px;
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  padding: 0 35px;
}

.product-card {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 425px) {
  .product-card {
    flex: 0 0 calc(100%);
  }
}

.product-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

.wishlist-btn:hover {
  background: #B4846C;
  color: white;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.wishlist-btn:hover svg {
  stroke: white;
}

.product-info {
  padding: 20px;
}

.product-category {
  color: #8B9D83;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 18px;
  margin: 8px 0;
  color: #2d3436;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0;
}

.product-rating .stars {
  color: #FFA500;
  font-size: 16px;
}

.product-rating span {
  font-size: 14px;
  color: #636e72;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #2d3436;
}

/* Special Offer Section */
.offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer-images {
  position: relative;
}

.offer-main-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  background: #B4846C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.badge-content {
  text-align: center;
  color: white;
}

.badge-discount {
  display: block;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 14px;
  letter-spacing: 2px;
}

.offer-text h2 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #2d3436;
}

.offer-text h3 {
  font-size: 24px;
  color: #8B9D83;
  margin-bottom: 20px;
}

.offer-text p {
  color: #636e72;
  line-height: 1.8;
  margin-bottom: 25px;
}

.offer-features {
  list-style: none;
  margin-bottom: 30px;
}

.offer-features li {
  padding: 8px 0;
  color: #2d3436;
  font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
  background: white;
}

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

.testimonial-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating .stars {
  color: #FFA500;
  font-size: 20px;
}

.testimonial-text {
  color: #636e72;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: #2d3436;
}

.testimonial-author p {
  font-size: 14px;
  color: #636e72;
}

/* Brands Section */
.brands-section {
  background: #f8f9fa;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.brand-card {
  background: white;
  padding: 40px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.brand-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brand-logo {
  font-size: 18px;
  font-weight: 700;
  color: #2d3436;
  text-align: center;
}

/* Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.article-card:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.article-content {
  padding: 25px;
}

.article-date {
  color: #8B9D83;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-content h3 {
  font-size: 20px;
  margin: 12px 0;
  color: #2d3436;
}

.article-content p {
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #8B9D83 0%, #6d7d67 100%);
  padding: 80px 20px;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 15px;
}

.newsletter-content p {
  color: white;
  opacity: 0.95;
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
}

.newsletter-input:focus {
  outline: 2px solid white;
}

/* Footer */
.footer {
  background: #2d3436;
  color: white;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #8B9D83;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #8B9D83;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #6d7d67;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Notification */
.notification {
  position: fixed;
  top: 90px;
  right: 20px;
  background: #2d3436;
  color: white;
  padding: 15px 25px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1001;
}

.notification.show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* Animations */
@-webkit-keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

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

  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 52px;
  }

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

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 992px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    max-width: 350px;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 30px;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    gap: 15px;
    z-index: 999;
    align-items: flex-start;
  }

  .nav.nav-open {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo span {
    display: none;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .header-actions {
    gap: 10px;
  }

  .icon-btn {
    padding: 6px;
  }

  /* Mobile dropdown */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    padding-left: 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.dropdown-open .dropdown-menu {
    max-height: 500px;
    margin-top: 10px;
  }

  .dropdown-item {
    padding: 10px 15px;
  }

  .dropdown-item:hover {
    padding-left: 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .inspiration-content {
    grid-template-columns: 1fr;
  }

  .handmade-content {
    grid-template-columns: 1fr;
  }

  .handmade-text {
    padding: 60px 40px;
  }

  .offer-content {
    grid-template-columns: 1fr;
  }

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

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

  .products-slider-wrapper .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {

  /* .hero-section {
    height: auto;
    min-height: 500px;
  }
   */
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

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

  .products-track {
    gap: 20px;
  }

  .product-card {
    flex: 0 0 calc(50% - 10px);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .articles-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-text h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .products-slider-wrapper {
    padding: 0 0;
  }

  .product-card {
    flex: 0 0 calc(100%);
  }

  .products-track {
    /* transform: translateX(0) !important; */
    padding: 0 15px;
  }

  .slider-btn.next {
    right: 0;
  }

  .slider-btn .prev {
    left: 0;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
  }

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

  .handmade-text {
    padding: 40px 30px;
  }

  .handmade-text h2 {
    font-size: 32px;
  }
}