* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #e74c3c;
  --secondary: #2c3e50;
  --accent: #f39c12;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.header-top {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.header-top span {
  margin: 0 1rem;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  width: 200px;
  height: 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 8px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name {
  display: none;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s;
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: ripple 2s infinite;
}
@keyframes pulse-whatsapp {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: white;
  color: var(--secondary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-secondary:hover {
  background: white;
  color: var(--secondary);
}
.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInRight 1s;
}
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title span {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  color: var(--secondary);
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s;
}
.about-image:hover img {
  transform: scale(1.1);
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.products {
  padding: 5rem 2rem;
  background: white;
}
.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.category-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.4s;
  z-index: 0;
}
.category-card:hover::before {
  left: 0;
}
.category-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.category-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.category-card:hover > * {
  color: white;
}
.category-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}
.category-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.category-card p {
  color: #666;
  margin-bottom: 1rem;
}
.view-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: white;
  border-radius: 30px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: zoomIn 0.4s ease-out;
  display: flex;
  flex-direction: column;
}
.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.5rem;
  position: relative;
  flex-shrink: 0;
}
.modal-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.modal-header p {
  opacity: 0.95;
  font-size: 1.1rem;
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}
.modal-body {
  padding: 3rem;
  overflow-y: auto;
  flex: 1;
}
.modal-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.modal-product-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  cursor: pointer;
  animation: cardFadeIn 0.5s ease-out backwards;
}
.modal-product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.modal-product-card:nth-child(2) {
  animation-delay: 0.15s;
}
.modal-product-card:nth-child(3) {
  animation-delay: 0.2s;
}
.modal-product-card:nth-child(4) {
  animation-delay: 0.25s;
}
.modal-product-card:nth-child(5) {
  animation-delay: 0.3s;
}
.modal-product-card:nth-child(6) {
  animation-delay: 0.35s;
}
.modal-product-card:nth-child(7) {
  animation-delay: 0.4s;
}
.modal-product-card:nth-child(8) {
  animation-delay: 0.45s;
}
.modal-product-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.modal-product-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.modal-product-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.modal-product-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
.product-showcase {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.product-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}
.product-showcase .section-title span,
.product-showcase .section-title h2 {
  color: white;
}
.showcase-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.showcase-tab {
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.showcase-tab:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.showcase-tab.active {
  background: white;
  color: #667eea;
  border-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.showcase-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto;
  z-index: 1;
  overflow: hidden;
}
.showcase-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.showcase-card {
  min-width: 320px;
  flex: 0 0 320px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s;
}
.showcase-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.showcase-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.showcase-content {
  padding: 1.5rem;
}
.showcase-content h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.showcase-content p {
  color: #666;
  font-size: 0.95rem;
}
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.slider-btn {
  background: white;
  color: #667eea;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.slider-btn:hover:not(:disabled) {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}
.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}
.gallery {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.8),
    rgba(118, 75, 162, 0.8)
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover::before {
  opacity: 1;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.2);
}
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s;
}
.gallery-modal.active {
  display: flex;
}
.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: zoomIn 0.4s;
}
.gallery-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.gallery-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.gallery-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.testimonials {
  padding: 5rem 2rem;
  background: white;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-weight: 600;
  font-style: italic;
}
.contact-us {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}
.contact-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.contact-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0.3rem 0;
}
.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  width: 100%;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}
footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 4rem 2rem 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.footer-section a:hover {
  color: var(--accent);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
  font-size: 1.2rem;
  cursor: pointer;
}
.social-icon:hover {
  background: var(--accent);
  transform: translateY(-5px) rotate(360deg);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@media (max-width: 1024px) {
  .showcase-card {
    min-width: 300px;
    flex: 0 0 300px;
  }
  .modal-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 768px) {
  .header-main {
    flex-wrap: wrap;
  }
  nav {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }
  nav.active {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
  }
  .menu-toggle {
    display: block;
  }
  .hero-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .features,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-categories {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    min-width: 280px;
    flex: 0 0 280px;
  }
  .modal-header h2 {
    font-size: 2rem;
    padding-right: 3rem;
  }
  .modal-header {
    padding: 2rem;
  }
  .modal-body {
    padding: 2rem;
  }
  .modal-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }
  .modal-close {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .features,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    min-width: 250px;
    flex: 0 0 250px;
  }
  .modal-header h2 {
    font-size: 1.5rem;
  }
  .modal-header p {
    font-size: 0.95rem;
  }
  .modal-body {
    padding: 1.5rem;
  }
  .modal-product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .modal-product-card {
    padding: 1.5rem;
  }
  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}
