/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

:root {
  --primary-color: #e91e63;
  --secondary-color: #ff9800;
  --accent-color: #ffd6e8;
  --text-dark: #333;
  --text-light: #666;
  --text-white: #ffffff;
  --bg-light: #faf9f7;
  --bg-white: #ffffff;
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Variables */
body.dark-mode {
  --primary-color: #ff4081;
  --secondary-color: #ffb74d;
  --accent-color: #3a3a3a;
  --text-dark: #e0e0e0;
  --text-light: #b0b0b0;
  --text-white: #ffffff;
  --bg-light: #1a1a1a;
  --bg-white: #2a2a2a;
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.4);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.6);
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: linear-gradient(135deg, #ffd6e8 0%, #ffffff 50%, #ffd6e8 100%);
}

/* Dark Mode Background */
body.dark-mode {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 25%, #4a5568 50%, #2d3748 75%, #1a1a1a 100%);
}

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

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

body.dark-mode .navbar {
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid rgba(255, 64, 129, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  text-decoration: none;
}

.logo-text {
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

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

.dark-mode-toggle {
  background: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 1rem;
}

.dark-mode-toggle:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  transform: scale(1.1);
  box-shadow: var(--shadow-light);
}

.home-btn-nav {
  background: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.home-btn-nav:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: var(--shadow-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-white) 50%, var(--accent-color) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
  /* Performance optimizations */
  will-change: scroll-position;
  isolation: isolate;
}

body.dark-mode .hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
}

.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 1;
}

.hero-left,
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-1,
.hero-img-2 {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7);
  /* Performance optimizations */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  /* Optimized background - simpler gradient */
  background: rgba(255, 255, 255, 0.92);
  /* Remove heavy backdrop-filter, use simple box-shadow instead */
  border-radius: 20px;
  padding: 60px 40px;
  margin: 40px auto;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  /* Performance optimizations */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.brand-name {
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 40px;
  line-height: 1.3;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto;
  /* Optimize for animations */
  backface-visibility: hidden;
  perspective: 1000px;
}

.hero-description p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
  /* Optimize for smooth animations */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Products Section */
.products-section {
  padding: 100px 0 60px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #e91e63, #ff9800);
  border-radius: 2px;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px dashed #e91e63;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px 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.3s ease;
}

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

.product-info {
  padding: 30px;
  text-align: center;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e91e63;
  margin-bottom: 20px;
}

.product-description p {
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.product-description ul {
  text-align: left;
  margin-left: 20px;
  color: #555;
  list-style: none;
  padding-left: 0;
}

.product-description li {
  margin-bottom: 8px;
  position: relative;
}

.product-description li::before {
  content: "✓";
  color: #e91e63;
  font-weight: bold;
  position: absolute;
  left: -20px;
}

/* Gallery Section */
.gallery-section {
  padding: 60px 0 80px 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  width: 100%;
}

.gallery-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.gallery-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  justify-self: center;
  height: fit-content;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-info {
  padding: 18px;
  text-align: center;
}

.gallery-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-spec {
  font-size: 0.85rem;
  color: #666;
  margin: 6px 0;
  font-style: italic;
  line-height: 1.2;
}

.gallery-price {
  font-size: 0.9rem;
  color: #e91e63;
  font-weight: 600;
  margin: 8px 0 0 0;
}

.gallery-large {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.gallery-large img {
  max-width: 100%;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffd6e8 0%, #ffffff 50%, #ffd6e8 100%);
}

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

.about-content .brand-name {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.heart-icon {
  margin-top: 40px;
}

.heart-icon i {
  font-size: 3rem;
  color: #e91e63;
  animation: heartbeatSmooth 2s ease-in-out infinite;
  will-change: transform;
}

@keyframes heartbeatSmooth {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* Contact Section */
.contact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../abstract-colorful-splash-3d-background-generative-ai-background.jpg") center/cover;
  padding: 80px 0;
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.contact-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #e91e63;
  padding-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon.facebook {
  background: #3b5998;
}
.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-icon.tiktok {
  background: #000;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.address-item,
.time-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  line-height: 1.6;
}

.address-item i,
.time-item i {
  color: #e91e63;
  margin-right: 15px;
  margin-top: 3px;
  font-size: 1.1rem;
}

.address-item span,
.time-item span {
  flex: 1;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(233, 30, 99, 0.4);
}

.scroll-to-top-btn:active {
  transform: translateY(-1px);
}

/* Responsive adjustments for scroll button */
@media (max-width: 768px) {
  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top-btn {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 1rem;
  }
}

/* Home Button Styles */
.home-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #e91e63, #f06292);
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
  background: linear-gradient(135deg, #d81b60, #e91e63);
  text-decoration: none;
  color: white;
}

.home-btn:active {
  transform: translateY(0) scale(1.02);
}

.home-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.home-btn:hover i {
  transform: rotate(-10deg) scale(1.1);
}

.home-btn span {
  transition: all 0.3s ease;
}

.home-btn:hover span {
  letter-spacing: 1px;
}

/* Responsive home button */
@media (max-width: 768px) {
  .home-btn {
    top: 20px;
    right: 20px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .home-btn span {
    display: none;
  }

  .home-btn {
    width: 48px;
    height: 48px;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
  }

  .home-btn i {
    font-size: 18px;
  }
}

/* Responsive Design */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-content {
    max-width: 1200px;
    padding: 80px 60px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .brand-name {
    font-size: 4.5rem;
  }

  .main-title {
    font-size: 3rem;
  }

  .hero-description p {
    margin: 0 auto 35px auto;
    max-width: 1000px;
  }

  .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 0 30px;
  }

  .gallery-item {
    max-width: 380px;
    height: fit-content;
  }

  .gallery-image {
    height: 240px;
  }

  .gallery-large img {
    max-width: 700px;
  }
}

/* Standard Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
  .hero-content {
    padding: 70px 50px;
    margin: 50px auto;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .brand-name {
    font-size: 4rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .hero-description p {
    margin: 0 auto 30px auto;
    max-width: 900px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    padding: 0 25px;
  }
  .gallery-item {
    max-width: 330px;
  }

  .gallery-image {
    height: 220px;
  }

  .gallery-large img {
    max-width: 600px;
  }

  .contact-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

/* Laptop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .hero-content {
    margin: 60px auto;
    padding: 50px 40px;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .brand-name {
    font-size: 3.5rem;
  }

  .main-title {
    font-size: 2.2rem;
  }

  .hero-description p {
    font-size: 1rem;
    margin: 0 auto 25px auto;
    max-width: 800px;
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 950px;
    padding: 0 20px;
  }
  .gallery-item {
    max-width: 300px;
  }

  .gallery-image {
    height: 220px;
  }

  .gallery-large img {
    max-width: 500px;
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* Small Laptop (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 40px auto;
    padding: 40px 30px;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
  }

  .brand-name {
    font-size: 3rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .hero-description p {
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto 25px auto;
    max-width: 600px;
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 700px;
    padding: 0 15px;
    justify-content: center;
  }

  .gallery-item {
    max-width: 220px;
    justify-self: center;
  }

  .gallery-image {
    height: 160px;
  }

  .gallery-large img {
    max-width: 450px;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .about-content .brand-name {
    font-size: 3rem;
  }

  .about-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-images {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin: 10px auto;
    padding: 30px 20px;
    max-width: 90%;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .hero-description p {
    font-size: 1rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .product-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-section {
    padding: 60px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-section .container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
    margin-bottom: 30px;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .gallery-item {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
  }

  .gallery-image {
    height: 180px;
  }

  .gallery-info {
    padding: 12px;
  }

  .gallery-title {
    font-size: 0.9rem;
  }

  .gallery-price {
    font-size: 0.8rem;
  }

  .gallery-large {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-large img {
    max-width: 300px;
    width: 90%;
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-content .brand-name {
    font-size: 2.5rem;
  }

  .about-title {
    font-size: 1.5rem;
  }
}

/* Extra small mobile devices (320px and below) */
@media (max-width: 320px) {
  .gallery-section {
    padding: 30px 10px;
    min-height: 50vh;
  }

  .gallery-section .container {
    padding: 0 5px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 280px;
    margin-bottom: 20px;
    padding: 0 10px;
    justify-content: center;
    justify-items: center;
  }

  .gallery-item {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
  }

  .gallery-image {
    height: 160px;
  }

  .gallery-info {
    padding: 10px;
  }

  .gallery-title {
    font-size: 0.8rem;
  }

  .gallery-price {
    font-size: 0.75rem;
  }

  .gallery-large img {
    max-width: 200px;
    width: 90%;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
}

/* Force centering for all mobile devices */
@media (max-width: 768px) {
  .container {
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .gallery-grid {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-items: center !important;
  }

  .gallery-item {
    justify-self: center !important;
  }

  .gallery-large {
    text-align: center !important;
  }
}

/* Laptop Optimizations */
@media (min-width: 1024px) {
  /* Smooth animations for laptop */
  .product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.2);
  }

  .gallery-item {
    transition: all 0.3s ease;
  }

  .gallery-item:hover {
    transform: scale(1.08);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
  }

  /* Better spacing for laptop screens */
  .products-section {
    padding: 120px 0;
  }

  /* Enhanced product cards for laptop */
  .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto 80px auto;
  }

  .product-card {
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.2);
  }

  .product-image {
    height: 240px;
  }

  .product-info {
    padding: 35px;
  }

  .product-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .product-price {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .product-description p {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }

  .product-description li {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* Enhanced typography for laptop */
  .hero-description p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  .product-description p {
    font-size: 1rem;
  }

  .about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
  }

  /* Better grid for laptop screens */
  .contact-content {
    gap: 50px;
  }

  .contact-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .address-item,
  .time-item {
    margin-bottom: 20px;
    font-size: 1rem;
  }
}

/* Ultra-wide screens (1600px+) */
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }

  .hero-content {
    max-width: 1400px;
    padding: 100px 80px;
  }

  .brand-name {
    font-size: 5rem;
  }

  .main-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .product-cards {
    gap: 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
  }
}

/* Ultra-wide screens 2048x1080 */
@media screen and (min-width: 2048px) and (max-width: 2560px) and (max-height: 1440px) {
  .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* Hero Section */
  .hero-content {
    max-width: 1600px;
    padding: 120px 100px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }

  .hero-text {
    width: 100%;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .brand-name {
    font-size: 5.5rem;
    margin-bottom: 30px;
  }

  .main-title {
    font-size: 4rem;
    margin-bottom: 50px;
  }

  .hero-description {
    max-width: 1200px;
    margin: 0 auto;
  }

  .hero-description p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 35px;
  }

  /* Products Section */
  .products-section {
    padding: 150px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-title {
    font-size: 3.5rem;
    margin-bottom: 80px;
  }

  .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto 100px auto;
    justify-items: center;
  }

  .product-card {
    max-width: 480px;
    margin: 0 auto;
    justify-self: center;
  }

  .product-image {
    height: 280px;
  }

  .product-info {
    padding: 45px;
  }

  .product-title {
    font-size: 1.7rem;
    margin-bottom: 22px;
  }

  .product-price {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .product-description p {
    font-size: 1.2rem;
    margin-bottom: 22px;
  }

  .product-description li {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  /* Gallery Section */
  .gallery-section {
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
  }

  .gallery-section .container {
    max-width: 1800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto 60px auto;
    justify-content: center;
    justify-items: center;
  }

  .gallery-item {
    max-width: 500px;
    justify-self: center;
  }

  .gallery-image {
    height: 280px;
  }

  .gallery-info {
    padding: 30px;
  }

  .gallery-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .gallery-price {
    font-size: 1.2rem;
  }

  .gallery-large {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gallery-large img {
    max-width: 800px;
  }

  /* About Section */
  .about-section {
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .about-content .brand-name {
    font-size: 4.5rem;
    margin-bottom: 30px;
  }

  .about-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
  }

  .about-text p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 30px;
  }

  .heart-icon {
    margin-top: 60px;
  }

  .heart-icon i {
    font-size: 4rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
    justify-items: center;
  }

  .contact-content h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .social-icons {
    justify-content: center;
    gap: 20px;
  }

  .social-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .address-item,
  .time-item {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  .address-item i,
  .time-item i {
    font-size: 1.3rem;
    margin-right: 18px;
  }

  /* Scroll Button */
  .scroll-to-top-btn {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    font-size: 1.4rem;
  }
}

/* Ultra Large Desktop (1920px+) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding: 0 60px;
  }

  .hero-content {
    max-width: 1400px;
    padding: 100px 80px;
    margin: 80px auto;
  }

  .brand-name {
    font-size: 5rem;
  }

  .main-title {
    font-size: 3.5rem;
  }

  .product-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .gallery-section {
    padding: 100px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 50px;
  }

  .gallery-item {
    max-width: 400px;
    min-height: 360px;
  }

  .gallery-image {
    height: 280px;
  }

  .gallery-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .gallery-price {
    font-size: 1.1rem;
  }
}

/* Performance optimizations for larger screens */
@media (min-width: 1024px) {
  .hero-img-1,
  .hero-img-2 {
    will-change: transform;
    transform: translateZ(0);
  }

  .product-card,
  .gallery-item {
    will-change: transform;
    transform: translateZ(0);
  }

  /* Smooth gradient transitions */
  .hero-section {
    background: linear-gradient(135deg, #ffd6e8 0%, #ffffff 30%, #ffd6e8 50%, #ffffff 70%, #ffd6e8 100%);
  }

  .about-section {
    background: linear-gradient(135deg, #ffd6e8 0%, #ffffff 30%, #ffd6e8 50%, #ffffff 70%, #ffd6e8 100%);
  }
}

/* Enhanced hover effects for laptop */
@media (min-width: 1024px) {
  .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .product-image img {
    transition: transform 0.5s ease;
  }

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

  /* Better text animations - Optimized */
  .hero-description p {
    opacity: 0;
    will-change: opacity, transform;
    animation: fadeInUpSmooth 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  }

  .hero-description p:nth-child(2) {
    animation-delay: 0.5s;
  }

  .hero-description p:nth-child(3) {
    animation-delay: 0.7s;
  }

  .hero-description p:nth-child(4) {
    animation-delay: 0.9s;
  }
}

@keyframes fadeInUpSmooth {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

.hero-img-1,
.hero-img-2 {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Hover Effects */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(233, 30, 99, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.product-card:hover::before {
  animation: shineSmooth 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes shineSmooth {
  0% {
    transform: rotate(45deg) translate3d(-100%, -100%, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate3d(100%, 100%, 0);
    opacity: 0;
  }
}

/* Performance optimizations for low-end devices */
@media (max-width: 768px) {
  .hero-content {
    /* Simplify background for mobile */
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.1);
  }

  /* Reduce motion for better performance */
  .hero-description p {
    animation-duration: 0.6s;
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-description p {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .heart-icon i {
    animation: none;
  }

  .product-card:hover::before {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* GPU acceleration for supported browsers */
@supports (will-change: auto) {
  .hero-content {
    will-change: transform;
  }

  .hero-description {
    will-change: contents;
  }
}

/* ===== WEDDING DARK MODE COMPREHENSIVE STYLES ===== */

/* Hero Content in Dark Mode */
body.dark-mode .hero-content {
  background: rgba(42, 42, 42, 0.9);
  border: 1px solid rgba(255, 64, 129, 0.3);
}

body.dark-mode .brand-name {
  color: var(--primary-color);
}

body.dark-mode .main-title {
  color: var(--text-dark);
}

body.dark-mode .hero-description p {
  color: var(--text-light);
}

/* Products Section in Dark Mode */
body.dark-mode .products-section {
  background: var(--bg-light);
}

body.dark-mode .section-title {
  color: var(--text-dark);
}

body.dark-mode .section-title::after {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

body.dark-mode .product-card {
  background: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-light);
}

body.dark-mode .product-title {
  color: var(--text-dark);
}

body.dark-mode .product-price {
  color: var(--primary-color);
}

body.dark-mode .product-description p {
  color: var(--text-light);
}

body.dark-mode .product-description li {
  color: var(--text-light);
}

body.dark-mode .product-description li::before {
  color: var(--primary-color);
}

/* Gallery Section in Dark Mode */
body.dark-mode .gallery-section {
  background: var(--bg-white);
}

body.dark-mode .gallery-item {
  border: 1px solid rgba(255, 64, 129, 0.3);
  box-shadow: var(--shadow-light);
}

body.dark-mode .gallery-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

body.dark-mode .gallery-title {
  color: #2c2c2c; /* Màu đen cho gallery title trong dark mode */
}

body.dark-mode .gallery-spec {
  color: #2c2c2c; /* Màu đen cho gallery spec trong dark mode */
}

body.dark-mode .gallery-price {
  color: var(--primary-color);
}

/* About Section in Dark Mode */
body.dark-mode .about-section {
  background: var(--bg-light);
}

body.dark-mode .about-title {
  color: var(--text-dark);
}

body.dark-mode .about-text p {
  color: var(--text-light);
}

/* Contact Section in Dark Mode */
body.dark-mode .contact-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

body.dark-mode .contact-overlay {
  background: rgba(26, 26, 26, 0.8);
}

body.dark-mode .contact-content h3 {
  color: var(--primary-color);
}

body.dark-mode .address-item {
  color: var(--text-light);
}

body.dark-mode .address-item i {
  color: var(--primary-color);
}

body.dark-mode .social-icon {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

body.dark-mode .social-icon:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

/* Scroll to Top Button in Dark Mode */
body.dark-mode .scroll-to-top-btn {
  background: var(--primary-color);
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
}

body.dark-mode .scroll-to-top-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Home Button in Dark Mode */
body.dark-mode .home-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  border: 2px solid var(--primary-color);
}

body.dark-mode .home-btn:hover {
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-3px) scale(1.05);
}

/* Images in Dark Mode */
body.dark-mode .hero-img-1,
body.dark-mode .hero-img-2,
body.dark-mode .product-image img,
body.dark-mode .gallery-image img {
  filter: brightness(0.9) contrast(1.1);
}

body.dark-mode .product-card:hover .product-image img,
body.dark-mode .gallery-item:hover .gallery-image img {
  filter: brightness(1) contrast(1.2);
}

/* Responsive Dark Mode */
@media (max-width: 768px) {
  .dark-mode-toggle {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .home-btn-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

/* Craft Icons in Dark Mode */
body.dark-mode .craft-label {
  background: var(--primary-color);
  color: var(--bg-white);
}

/* Phone Number Links */
.phone-number-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
  /* Remove mobile tap highlight */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.phone-number-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Remove active/focus states on mobile */
.phone-number-link:active,
.phone-number-link:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.phone-numbers {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Minimal Product Cards */
.product-cards-minimal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
  justify-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.product-card-minimal {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  background: var(--bg-white);
  border: 2px solid transparent;
  box-shadow: var(--shadow-light);
}

.product-card-minimal:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.product-card-minimal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card-minimal:hover::before {
  opacity: 0.1;
}

.product-card-minimal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.product-card-minimal:hover .card-overlay {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: white;
}

.overlay-price {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.overlay-hint {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
  color: white;
}

/* Product Modal - Simplified */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  box-sizing: border-box;
}

.product-modal.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: 15px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-modal.show .modal-content {
  opacity: 1;
  transform: scale(1);
}

.modal-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.modal-image {
  width: 100%;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.modal-info {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.modal-info::-webkit-scrollbar {
  width: 4px;
}

.modal-info::-webkit-scrollbar-track {
  background: transparent;
}

.modal-info::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 2px;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.modal-info {
  padding: 30px;
  overflow-y: auto;
  max-height: calc(90vh - 300px);
}

.modal-info::-webkit-scrollbar {
  width: 6px;
}

.modal-info::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 3px;
}

.modal-info::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.modal-info::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.modal-price {
  font-size: 1.4rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.modal-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex: 1;
}

.modal-description p {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.modal-description ul {
  margin-left: 18px;
  margin-top: 10px;
  list-style-type: none;
  padding-left: 0;
}

.modal-description li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: var(--text-dark);
}

.modal-description li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Remove unnecessary animations */

.contact-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(233, 30, 99, 0.2);
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.contact-btn:active {
  transform: translateY(0);
}

.contact-btn i {
  font-size: 0.85rem;
}

/* Responsive Design - Simplified */
@media (max-width: 1024px) {
  .product-cards-minimal {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
  }

  .modal-content {
    max-width: 700px;
    width: 95%;
  }
}

@media (max-width: 768px) {
  .product-cards-minimal {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }

  .product-card-minimal {
    height: 200px;
  }

  .modal-content {
    width: 95%;
    border-radius: 12px;
  }

  .modal-image {
    height: 200px;
    border-radius: 12px 12px 0 0;
  }

  .modal-info {
    padding: 20px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-price {
    font-size: 1.2rem;
  }

  .modal-close {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .product-cards-minimal {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card-minimal {
    height: 220px;
    max-width: 300px;
  }

  .modal-content {
    width: 98%;
    border-radius: 10px;
  }

  .modal-image {
    height: 160px;
    border-radius: 10px 10px 0 0;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
  }

  .modal-info {
    padding: 15px;
  }

  .modal-title {
    font-size: 1.3rem;
  }

  .modal-price {
    font-size: 1.1rem;
  }

  .modal-description {
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}
