/* CSS Variables */
:root {
  --primary: #8b7f6f;
  --accent: #d4a574;
  --bg-light: #f9f7f4;
  --bg-dark: #1a1a1a;
  --text-light: #2a2a2a;
  --text-dark: #f5f5f5;
  --border-light: #e0dbd4;
  --border-dark: #333;
  --white: #ffffff;
  --black: #000000;
  --success: #4caf50;
  --radius: 8px;
}

/* Light Mode (Default) */
html {
  --bg: var(--bg-light);
  --text: var(--text-light);
  --border: var(--border-light);
  --card-bg: var(--white);
  --nav-bg: var(--white);
}

/* Dark Mode */
html.dark-mode {
  --bg: var(--bg-dark);
  --text: var(--text-dark);
  --border: var(--border-dark);
  --card-bg: #2a2a2a;
  --nav-bg: #1f1f1f;
}

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

/* Scrollbar Styling */
/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c49563;
}

/* Firefox */
* {
  scrollbar-color: var(--accent) var(--bg);
  scrollbar-width: thin;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  padding-bottom: 80px; /* Space for mobile bottom nav */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

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

/* Navigation */
.navbar {
  position: fixed;
  background-color: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: background-color 0.3s ease;
}

.navbar-desktop {
  display: none;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

@media (min-width: 769px) {
  .navbar-desktop {
    display: block;
  }

  .navbar-mobile {
    display: none !important;
  }

  body {
    padding-top: 70px;
  }
}

.navbar-mobile {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s ease;
  border-bottom: 3px solid transparent;
  padding-bottom: 8px;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-link-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.7rem;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  background-color: rgba(212, 165, 116, 0.1);
  color: var(--accent);
}

.nav-link .icon,
.nav-link-mobile .icon {
  font-size: 1.3rem;
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link .icon img,
.nav-link-mobile .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-link .icon-home,
.nav-link .icon-products,
.nav-link .icon-customize,
.nav-link .icon-about,
.nav-link-mobile .icon-home,
.nav-link-mobile .icon-products,
.nav-link-mobile .icon-customize,
.nav-link-mobile .icon-about {
  /* PNG icons will display via img tags */
}

.theme-toggle,
.theme-toggle-mobile {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.theme-toggle:hover,
.theme-toggle-mobile:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

html.dark-mode .theme-toggle,
html.dark-mode .theme-toggle-mobile {
  color: #ffdc82;
}

.theme-toggle-header {
  position: fixed;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
  z-index: 101;
}

.theme-toggle-header:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

html.dark-mode .theme-toggle-header {
  color: #ffdc82;
}

@media (max-width: 768px) {
  .theme-toggle-header {
    top: 8px;
    right: 15px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  margin-top: 70px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
    margin-top: 0;
    padding-bottom: 40px;
  }
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 127, 111, 0.4),
    rgba(212, 165, 116, 0.3)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-animated-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 100px;
  height: 100px;
  background-color: var(--accent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent);
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

.element-3 {
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

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

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #c49563;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.cta-button.primary {
  margin-right: 15px;
}

@media (max-width: 600px) {
  .cta-button {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .cta-button.primary {
    margin-right: 0;
  }
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.whatsapp-button:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.whatsapp-icon {
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--card-bg);
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--primary);
}

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

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius);
  background-color: var(--bg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-card p {
  color: var(--text);
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: var(--bg);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text);
  opacity: 0.8;
}

/* Products Page */
.products-page {
  padding: 80px 0;
}

.products-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 40px;
}

/* Product Filter */
.filter-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 0;
  max-height: fit-content;
}

@media (max-width: 600px) {
  .filter-section {
    gap: 6px;
    margin-bottom: 25px;
    padding-top: 0;
  }
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid var(--border);
  background-color: transparent;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--card-bg);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: var(--bg);
}

.product-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-id {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-specs {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
  flex-grow: 1;
}

.multi-image-badge {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 500;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background-color: var(--card-bg);
  border-radius: var(--radius);
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
  z-index: 10;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

@media (max-width: 600px) {
  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

.modal-image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slider-btn {
  flex: 1;
  padding: 8px 12px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: #c49563;
}

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

.image-counter {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.modal-details h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.modal-product-id {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 15px;
}

.modal-specs {
  background-color: var(--bg);
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.modal-specs strong {
  color: var(--primary);
}

.modal-description {
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.modal-notes {
  background-color: var(--bg);
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-left: 4px solid var(--accent);
}

/* Customize Page */
.customize-page {
  padding: 80px 0;
}

.customize-page h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.customize-form {
  max-width: 600px;
  margin: 60px auto;
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .customize-form {
    padding: 20px;
  }
}

.pricing-button-container {
  text-align: center;
  margin-bottom: 40px;
}

.view-pricing-btn {
  padding: 10px 24px;
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-pricing-btn:hover {
  background-color: #c49563;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.form-group small {
  display: block;
  margin-top: 6px;
  color: var(--text);
  opacity: 0.6;
  font-size: 0.85rem;
}

.customize-form .whatsapp-button {
  margin-top: 10px;
}

/* Pricing Modal */
.pricing-modal {
  z-index: 250;
}

.pricing-content {
  max-width: 900px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.pricing-header p {
  color: var(--text);
  opacity: 0.7;
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.pricing-card {
  background-color: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.2);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.2);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

.pricing-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  flex-grow: 1;
}

.pricing-features li {
  color: var(--text);
  opacity: 0.8;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:before {
  content: "✓ ";
  color: var(--accent);
  font-weight: bold;
  margin-right: 6px;
}

.pricing-note {
  background-color: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  text-align: center;
}

.pricing-note p {
  color: var(--text);
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Price Display in Form */
.price-display {
  background-color: var(--bg);
  padding: 15px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  text-align: center;
  margin-bottom: 25px;
  display: none;
}

.price-display.active {
  display: block;
}

.price-display-text {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
}

.info-section {
  max-width: 600px;
  margin: 60px auto;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
}

.info-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.info-section ol {
  list-style-position: inside;
  color: var(--text);
  opacity: 0.8;
}

.info-section li {
  margin-bottom: 10px;
}

/* About Page */
.about-page {
  padding: 80px 0;
}

.about-section {
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-section h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  opacity: 0.9;
}

.feature-list li strong {
  color: var(--accent);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact-section {
  margin: 60px 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

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

.contact-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text);
  opacity: 0.7;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #c49563;
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #c49563;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 60px auto;
}

.faq-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background-color: var(--card-bg);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.faq-question {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  color: var(--text);
  opacity: 0.8;
  font-size: 0.95rem;
  margin: 0;
}

/* Tips Section */
.tips-section {
  margin: 60px 0;
}

.tips-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

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

.tip-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.tip-card h3 {
  color: var(--primary);
  margin-top: 15px;
  margin-bottom: 10px;
}

.tip-card p {
  color: var(--text);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-section p {
  color: var(--text);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #c49563;
}

.footer-bottom {
  text-align: center;
  color: var(--text);
  opacity: 0.5;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* Delivery Info Styles */
.delivery-locations {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 8px;
}

.delivery-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.delivery-list li {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.75;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.delivery-list li:before {
  content: "📍";
  position: absolute;
  left: 0;
  margin-right: 6px;
}

.cod-badge {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 12px;
  padding: 8px 12px;
  background-color: rgba(212, 165, 116, 0.1);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-weight: 500;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .features h2,
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .products-page h1,
  .customize-page h1,
  .about-section h1 {
    font-size: 1.8rem;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link .text {
    display: none;
  }
}
