/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
}

/* Navigation Styles */
#main-nav {
  background: #2c2c2c;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-btn {
  background: none;
  color: white;
  border: 2px solid transparent;
  padding: 0.7rem 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-family: "Georgia", serif;
  transition: all 0.3s ease;
  border-radius: 25px;
}

.nav-btn:hover {
  background: #764ba2;
  border-color: #764ba2;
  transform: translateY(-2px);
}

.nav-btn.active {
  background: #764ba2;
  border-color: #764ba2;
}

/* Hero Section */
.hero {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  color: #764ba2;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 2rem;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(118, 75, 162, 0.5);
}

/* Section Content */
.section-content {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease;
}

.section-content h2 {
  color: #764ba2;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .nav-btn {
    margin: 0.2rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
/* Product Grid Styles */
.section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* Enhanced Product Card Styles */
.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(118, 75, 162, 0.3);
}

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

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

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

/* Product badge - "New" or "Sale" */
.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #764ba2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 10;
}

.product-card h3 {
  padding: 1rem;
  color: #333;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.product-card:hover h3 {
  color: #764ba2;
}

.price {
  padding: 0 1rem;
  font-size: 1.8rem;
  color: #764ba2;
  font-weight: bold;
}

.order-btn {
  width: calc(100% - 2rem);
  margin: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-weight: bold;
}

.order-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.order-btn:active {
  transform: scale(0.98);
}
/* Quick View Overlay */
.product-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(118, 75, 162, 0.95);
  color: white;
  padding: 1rem;
  transition: bottom 0.3s ease;
  text-align: center;
}

.product-card:hover .product-overlay {
  bottom: 0;
}

.product-overlay p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.quick-view-btn {
  background: white;
  color: #764ba2;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}
/* DEBUG - Force products to show */
#candles-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 2rem !important;
  padding: 2rem 0 !important;
}

#portraits-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 2rem !important;
  padding: 2rem 0 !important;
}

.product-card {
  display: block !important;
}
/* About Section Styles */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-story,
.about-mission,
.about-values {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.about-content h3 {
  color: #764ba2;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  font-size: 1.1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.about-values li:last-child {
  border-bottom: none;
}

.about-values strong {
  color: #764ba2;
  font-weight: bold;
}
/* Contact Section Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 2rem auto;
}

.contact-info,
.contact-form-container {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-info h3,
.contact-form-container h3 {
  color: #764ba2;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item h4 {
  color: #333;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  font-size: 1rem;
  margin: 0.3rem 0;
}

.contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
}

/* Contact Form Styles */
.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Georgia", serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #764ba2;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}

.footer-section h3 {
  color: #764ba2;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: #667eea;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-style: italic;
  color: #999;
  font-size: 0.95rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #764ba2;
  padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  color: #ccc;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 5px 15px rgba(118, 75, 162, 0.5);
}

.footer-social-text {
  font-size: 0.9rem;
  color: #999;
  margin-top: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-credits {
  color: #666;
  font-style: italic;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-links a:hover {
    padding-left: 0;
  }
}