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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background-color: #0d1117;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text {
  color: #fff;
}

.logo-accent {
  color: #d4af37;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-list {
  display: flex;
  gap: 4rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d4af37;
}

.header-icons {
  display: flex;
  gap: 2rem;
}

.icon-btn {
  color: #fff;
  transition: color 0.3s ease;
}

.icon-btn:hover {
  color: #d4af37;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(177deg, rgba(13, 17, 23, 0) 5%, rgb(13, 17, 23) 75%);
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  margin-top: 120px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  background-size: 200% 200%;
  color: #0d1117;
  border: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-position: 100% 100%;
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
  transform: translateY(-2px);
}

/* Brands Section */
.brands {
  margin-top: auto;
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.brands-title {
  font-size: 0.7rem;
  color: rgba(139, 157, 195, 0.7);
  font-weight: 600;
  letter-spacing: 0.25em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.brands-logos {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.brand-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(139, 157, 195, 0.5);
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  color: #d4af37;
}

/* Our Story Section */
.story {
  background-color: #0a0f14;
  padding: 10rem 2rem;
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3));
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
}

.story-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(42, 58, 94, 0.5);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.story-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  padding: 2rem 0;
}

.story-subtitle {
  font-size: 0.75rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.story-text {
  font-size: 1rem;
  color: #a0b0c8;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #2a3a5e;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: #8b9dc3;
  margin-top: 0.5rem;
}

/* Featured Watch Section */
.featured {
  background-color: #0d1117;
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.featured-subtitle {
  font-size: 0.75rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.featured-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.featured-text {
  font-size: 1rem;
  color: #a0b0c8;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.featured-specs {
  list-style: none;
  margin-bottom: 2rem;
}

.featured-specs li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #2a3a5e;
}

.spec-label {
  color: #8b9dc3;
}

.spec-value {
  color: #fff;
  font-weight: 500;
}

.featured-price {
  margin-bottom: 2rem;
}

.price-label {
  display: block;
  font-size: 0.875rem;
  color: #8b9dc3;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(42, 58, 94, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.featured-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-image:hover img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #0d1117;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 2;
}

/* Collection Section */
.collection {
  background-color: #0d1117;
  padding: 8rem 2rem;
  position: relative;
}

.collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 58, 94, 0.5), transparent);
}

.collection-header {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.collection-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.collection-nav {
  display: flex;
  gap: 1rem;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  color: #fff;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  opacity: 1;
  color: #d4af37;
}

.nav-arrow svg {
  width: 100%;
  height: 100%;
}

.collection-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
}

.brand-filter {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.filter-link {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  padding: 0.25rem 0;
  position: relative;
}

.filter-link::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: #d4af37;
  transition: height 0.3s ease;
}

.filter-link:hover::before,
.filter-link.active::before {
  height: 100%;
}

.filter-link:hover,
.filter-link.active {
  color: #fff;
}

.filter-link.active {
  color: #d4af37;
  font-weight: 500;
}

.products-wrapper {
  flex: 1;
  overflow: hidden;
}

.products-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2rem;
  padding-top: 1rem;
}

.products-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(42, 58, 94, 0.3);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card:hover .product-image {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
}

.product-card:hover .product-image::after {
  opacity: 1;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: #d4af37;
}

.collection-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  opacity: 1;
  background-color: #d4af37;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.social-link {
  color: #fff;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.social-link:hover {
  opacity: 1;
  color: #d4af37;
}

/* Services Section */
.services {
  background-color: #0a0f14;
  padding: 10rem 2rem;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 58, 94, 0.5), transparent);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-subtitle {
  font-size: 0.75rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.services-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(18, 24, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(42, 58, 94, 0.5);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(26, 34, 64, 0.8);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  color: #d4af37;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.service-card .service-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-text {
  font-size: 0.9rem;
  color: #8b9dc3;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
  background-color: #0d1117;
  padding: 10rem 2rem;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 58, 94, 0.5), transparent);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-subtitle {
  font-size: 0.75rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 5rem;
  letter-spacing: -0.02em;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(10, 15, 20, 0.8) 0%, rgba(18, 24, 42, 0.6) 100%);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: left;
  border: 1px solid rgba(42, 58, 94, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.05);
  transform: translateY(-5px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #a0b0c8;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d4af37;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 500;
  color: #fff;
}

.author-title {
  font-size: 0.875rem;
  color: #8b9dc3;
}

/* Limited Editions Section */
.limited {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 5rem 2rem;
}

.limited-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.limited-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.limited-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.9) 0%, rgba(13, 17, 23, 0.3) 100%);
}

.limited-content {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.limited-text-left {
  max-width: 600px;
}

.limited-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.limited-description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

.limited-text-right {
  max-width: 400px;
  text-align: right;
}

.limited-text-right p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0f14 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.newsletter-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.newsletter-text {
  font-size: 1rem;
  color: rgba(160, 176, 200, 0.9);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input {
  flex: 1;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  background: rgba(18, 24, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 58, 94, 0.5);
  border-radius: 50px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #8b9dc3;
}

.form-input:focus {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  background: rgba(18, 24, 42, 0.8);
}

.form-note {
  font-size: 0.75rem;
  color: #8b9dc3;
}

/* Footer */
.footer {
  background-color: #0a0f14;
  padding: 6rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 58, 94, 0.5), transparent);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.9rem;
  color: #8b9dc3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social .social-link:hover {
  background-color: #d4af37;
  color: #0d1117;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #d4af37;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #8b9dc3;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #2a3a5e;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: #8b9dc3;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .story-image {
    aspect-ratio: 16/9;
    max-width: 600px;
    margin: 0 auto;
  }

  .featured-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .featured-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .collection-content {
    flex-direction: column;
    gap: 3rem;
  }

  .brand-filter {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .brand-filter .filter-link::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .limited-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .limited-text-right {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    padding: 2rem;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .header-icons {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content {
    margin-top: 100px;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .brands-logos {
    gap: 1.5rem;
  }

  .brand-logo {
    font-size: 0.75rem;
  }

  .story {
    padding: 5rem 1.5rem;
  }

  .story-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .featured {
    padding: 5rem 1.5rem;
  }

  .collection {
    padding: 3rem 1rem;
  }

  .collection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .product-card {
    flex: 0 0 220px;
  }

  .product-image {
    height: 280px;
    border-radius: 20px;
  }

  .services {
    padding: 5rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 5rem 1.5rem;
  }

  .limited {
    padding: 3rem 1rem;
  }

  .newsletter {
    padding: 4rem 1.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .brands-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .product-card {
    flex: 0 0 180px;
  }

  .product-image {
    height: 220px;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}
