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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header */
.top-banner {
  background: #000;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #000;
  font-weight: 600;
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #000;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  background: #000;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}

.btn:hover {
  background: #f0f0f0;
}

.btn-dark {
  background: #000;
  color: white;
}

.btn-dark:hover {
  background: #333;
}

/* Page Content */
.page-content {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 30px;
  text-align: center;
}

.page-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  color: #000;
}

.page-content h3 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: #333;
}

.page-content p {
  margin-bottom: 20px;
  color: #666;
}

.page-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.page-content li {
  margin-bottom: 10px;
  color: #666;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px;
  background: #f8f8f8;
  font-size: 14px;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #000;
}

/* Scrolling Banner */
.scroll-banner {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Products Section */
.products {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: bold;
  margin-bottom: 16px;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stars {
  color: #ffd700;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
}

/* Occasions Section */
.occasions {
  background: #f8f8f8;
  padding: 80px 20px;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.occasion-item {
  text-align: center;
}

.occasion-icon {
  width: 60px;
  height: 60px;
  background: #000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.occasion-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.occasion-item p {
  color: #666;
  font-size: 14px;
}

/* FAQ Section */
.faq {
  padding: 80px 20px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 0 20px 0;
  color: #666;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Testimonials */
.testimonials {
  background: #f8f8f8;
  padding: 80px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 30px;
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #666;
}

.testimonial-author {
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.blog-card {
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.3s;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
}

.blog-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  padding: 10px 15px;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #333;
}

.pagination a:hover {
  background: #f0f0f0;
}

.pagination .current {
  background: #000;
  color: white;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.team-name {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-role {
  color: #666;
  font-size: 14px;
}

/* Timeline */
.timeline {
  margin: 40px 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.timeline-year {
  font-weight: bold;
  min-width: 60px;
}

.timeline-content h3 {
  margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Footer */
.footer {
  background: #f8f8f8;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.social-links a {
  color: #666;
  text-decoration: none;
  font-size: 20px;
}

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

/* 404 Page */
.error-404 {
  text-align: center;
  padding: 120px 20px;
}

.error-404 h1 {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 20px;
}

.error-404 h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.error-404 p {
  color: #666;
  margin-bottom: 30px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item {
    flex-direction: column;
    gap: 10px;
  }
}
