/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #000000;
  position: relative;
  overflow-x: hidden;
  background: #f5f9ff; /* Softer light blue background */
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9));
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: lowercase;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #00ca00;
}

.heart {
  color: #00ca00;
  margin-right: 0.4rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.logo:hover .heart {
  transform: scale(1.2);
}

.tui-member {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.2rem;
  font-weight: 400;
}

.header-search {
  position: relative;
  flex: 1;
  max-width: 500px;
  margin: 0 1rem;
}

.header-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-search input:focus {
  outline: none;
  border-color: #00ca00;
  box-shadow: 0 0 8px rgba(0, 202, 0, 0.2);
}

.search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: #00ca00;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.search-btn:hover {
  background: #00cc00;
  transform: translateY(-50%) scale(1.1);
}

.search-btn svg {
  color: #fff;
  stroke-width: 2.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00ca00;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00ca00;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.cta {
  background: #00ca00;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-link.cta:hover {
  background: #00cc00;
  transform: translateY(-2px);
  color: #fff;
}

.nav-link.cta::after {
  display: none;
}

.product-card {
    display: flex;
    max-width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-images {
    flex: 1;
    padding: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnails {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.thumbnails img {
    width: 190px;
    height: 100px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    border-color: #ccc;
}

.product-details {
    flex: 1;
    padding: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 0 0 20px;
}

.product-options {
    margin-bottom: 20px;
}

.color-options, .size-options {
    margin-bottom: 15px;
}

.color-options p, .size-options p {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px;
}

.colors {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-swatch:hover {
    border-color: #ccc;
}

.sizes {
    display: flex;
    gap: 10px;
}

.size-btn {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.size-btn:hover {
    background-color: #f0f0f0;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: #f0f0f0;
}

.add-to-bag {
    flex: 1;
    padding: 10px;
    background-color: #00ca00;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.add-to-bag:hover {
    background-color: #00ca00;
}

.added-message {
    margin-top: 10px;
    color: #28a745;
    font-size: 14px;
    display: block;
}

/* Footer Section */
.footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-social, .footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social p, .footer-contact p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
}

.contact-icons, .social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icon, .contact-icon {
  font-size: 1.2rem;
  color: #666;
  text-decoration: none;
}

.social-icon:hover, .contact-icon:hover {
  color: #00cc00;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.3rem;
}

.footer-column ul li a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #00cc00;
}

.footer-column.preferences select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #000000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #666;
}

.footer-legal {
  flex: 1;
}

.footer-affiliations {
  display: flex;
  gap: 1rem;
}

.footer-affiliations span {
  font-size: 0.8rem;
  color: #666;
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-made p {
  font-size: 0.8rem;
  color: #666;
}

.footer-made .heart {
  color: #00ca00;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #00cc00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .header-search {
    order: 3;
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-links {
    order: 2;
    gap: 1rem;
  }

  .logo-container {
    order: 1;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-link.cta {
    padding: 0.4rem 0.8rem;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .search-bar input {
    width: 90%;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-card img {
    height: auto;
  }

  .promo-card-overlay {
    padding: 0.5rem;
  }

  .info-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-item {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .info-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .musement-mag-grid {
    grid-template-columns: 1fr;
  }

  .musement-mag-card img {
    height: 150px;
  }

  .musement-mag-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .info-banner-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .info-banner-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .tui-member {
    font-size: 0.65rem;
  }
}

