/** Shopify CDN: Minification failed

Line 2511:0 Unexpected "}"

**/
:root {
  --accent-red: #D1001F;
  --accent-purple: #4B0082;
  --accent-green: #00FF7F;
  --main-black: #000000;
  --sub-white: #FFFFFF;
  --gray-dark: #111111;
  --gray-medium: #333333;
  --gray-light: #666666;
  
  --font-main: 'Kaisei Tokumin', serif;
  --font-mono: 'Kaisei Tokumin', serif;
  
  --shadow-red: 0 0 20px rgba(209, 0, 31, 0.3);
  --shadow-purple: 0 0 20px rgba(75, 0, 130, 0.3);
  --shadow-green: 0 0 20px rgba(0, 255, 127, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
}

/* クリック時の赤い枠を削除 */
a, button, input, select, textarea, img, [tabindex] {
  outline: none !important;
  box-shadow: none !important;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus, img:focus, [tabindex]:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

body {
  font-family: var(--font-main);
  background-color: var(--main-black);
  color: var(--sub-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Responsive Display Control */
.hide-on-desktop {
  display: none !important;
}

.hide-on-mobile {
  display: block !important;
}

@media (max-width: 768px) {
  .hide-on-desktop {
    display: block !important;
  }
  
  .hide-on-mobile {
    display: none !important;
  }
}

/* Responsive Font Sizes - Dynamic Custom Properties */
.mad-billow-particle {
  --particle-subtitle-size: var(--particle-subtitle-desktop, 2rem);
}

.rotating-hero {
  --rotating-title-size: var(--rotating-title-desktop, 3.5rem);
  --rotating-subtitle-size: var(--rotating-subtitle-desktop, 1.25rem);
  --rotating-slide-title-size: var(--rotating-slide-title-desktop, 2rem);
}

.product-trio {
  --trio-title-size: var(--trio-title-desktop, 2.5rem);
  --trio-subtitle-size: var(--trio-subtitle-desktop, 1.125rem);
}

@media (max-width: 768px) {
  .mad-billow-particle {
    --particle-subtitle-size: var(--particle-subtitle-mobile, 1.5rem);
  }
  
  .rotating-hero {
    --rotating-title-size: var(--rotating-title-mobile, 2.5rem);
    --rotating-subtitle-size: var(--rotating-subtitle-mobile, 1rem);
    --rotating-slide-title-size: var(--rotating-slide-title-mobile, 1.5rem);
  }
  
  .product-trio {
    --trio-title-size: var(--trio-title-mobile, 2rem);
    --trio-subtitle-size: var(--trio-subtitle-mobile, 1rem);
  }
}

/* Mad Billow Particle Section */
.mad-billow-particle {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(45deg, var(--main-black) 0%, var(--gray-dark) 100%);
  padding: 60px 0 80px 0;
  text-align: center;
}

/* モバイル表示時の高さ調整 */
@media (max-width: 768px) {
  .mad-billow-particle {
    min-height: 60vh;
    padding: 40px 0 60px 0;
  }
}

.particle-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.mad-billow-particle .container {
  position: relative;
  z-index: 10;
  margin-bottom: 5vh;
}

/* モバイル表示時のコンテナ位置調整 */
@media (max-width: 768px) {
  .mad-billow-particle .container {
    margin-bottom: 3vh;
  }
}

.mad-billow-particle p {
  font-size: var(--particle-subtitle-size);
  margin-bottom: 3rem;
  color: var(--particle-subtitle-color, var(--sub-white));
  opacity: 0.9;
  line-height: 1.4;
}

/* モバイル表示時のテキストサイズ調整 */
@media (max-width: 768px) {
  .mad-billow-particle p {
    margin-bottom: 2rem;
    line-height: 1.3;
  }
}

.particle__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* モバイル表示時のボタン調整 */
@media (max-width: 768px) {
  .particle__actions {
    gap: 1rem;
  }
  
  .mad-billow-particle .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }
}

.mad-billow-particle .btn {
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--sub-white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn--red {
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
}

.btn--red:hover {
  background: transparent;
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-green);
}

.btn--green:hover {
  background: transparent;
  border-color: var(--accent-green);
  color: var(--accent-green);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-medium);
}

.header__inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0;
  min-height: 80px;
}

.header__logo a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-image {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1);
  display: block;
  vertical-align: middle;
}

.header__logo a:hover .logo-image {
  filter: brightness(1.2) drop-shadow(0 0 10px var(--accent-red));
  transform: scale(1.05);
}

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

.header__nav a {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sub-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-purple), var(--accent-green));
  transition: width 0.3s ease;
}

.header__nav a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn {
  background: none;
  border: 2px solid var(--sub-white);
  color: var(--sub-white);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: var(--shadow-red);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-red);
  color: var(--sub-white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--sub-white);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.8) 0%, var(--main-black) 70%);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* 格子状背景を削除 */

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero__title-break {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--accent-red);
  margin: 16px 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.glitch {
  position: relative;
  display: block;
  color: transparent;
  font-size: inherit;
  line-height: inherit;
  overflow: visible;
  min-height: 120px;
  margin-bottom: 20px;
}

.particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle-dot {
  position: absolute;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  transform-origin: center center;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}

/* パーティクルの種類別スタイル */
.particle-dot--main {
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.6), 0 0 8px rgba(255, 255, 255, 0.3);
}

.particle-dot--accent {
  background: linear-gradient(45deg, var(--accent-red), #ff4466);
  box-shadow: 0 0 4px rgba(209, 0, 31, 0.8), 0 0 8px rgba(209, 0, 31, 0.4);
}

.particle-dot--glow {
  background: linear-gradient(45deg, var(--accent-green), #44ff88);
  box-shadow: 0 0 4px rgba(0, 255, 127, 0.8), 0 0 8px rgba(0, 255, 127, 0.4);
}

/* パーティクルコンテナ */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 10;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--sub-white);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

.scroll-indicator {
  width: 2px;
  height: 30px;
  background: var(--sub-white);
  margin: 8px auto 0;
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0%, 100% { height: 30px; opacity: 0.6; }
  50% { height: 15px; opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: currentColor;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn--red {
  color: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
}

.btn--red:hover {
  color: var(--main-black);
  box-shadow: 0 0 30px var(--accent-red);
}

.btn--green {
  color: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-green);
}

.btn--green:hover {
  color: var(--main-black);
  box-shadow: 0 0 30px var(--accent-green);
}

.btn--purple {
  color: var(--accent-purple);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-purple);
}

.btn--purple:hover {
  color: var(--main-black);
  box-shadow: 0 0 30px var(--accent-purple);
}

/* Mission Section */
.mission {
  padding: 120px 0;
  background: var(--gray-dark);
}

.mission__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission__title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-red);
}

.mission__text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.9;
}

.mission__highlight {
  color: var(--accent-green) !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
}

/* Sections */
.section-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub-white);
}

/* Fragrances Section */
.fragrances {
  padding: 120px 0;
  background: var(--main-black);
}

.fragrance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.fragrance-card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-medium);
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
}

.fragrance-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
}

.fragrance-card__image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

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

.fragrance-card:hover .fragrance-card__image img {
  transform: scale(1.1);
}

.fragrance-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fragrance-card:hover .fragrance-card__overlay {
  opacity: 1;
}

.fragrance-card__content {
  padding: 32px 24px;
}

.fragrance-card__name {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fragrance-card__concept {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 20px;
  font-style: italic;
}

.fragrance-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.note {
  background: var(--gray-medium);
  color: var(--sub-white);
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--gray-light);
}

.fragrance-card__price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--sub-white);
}

/* Story Section */
.story {
  padding: 120px 0;
  background: var(--gray-dark);
}

.story__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story__title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 48px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
}

.story__text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

.story__quote {
  font-family: var(--font-mono);
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--accent-purple) !important;
  margin-bottom: 48px !important;
}

.story__highlight {
  color: var(--accent-red) !important;
  font-weight: 600 !important;
}

.story__final {
  font-family: var(--font-mono) !important;
  font-size: 1.25rem !important;
  color: var(--accent-green) !important;
  margin-bottom: 0 !important;
}

/* Values Section */
.values {
  padding: 120px 0;
  background: var(--main-black);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.value-card {
  background: var(--gray-dark);
  border: 2px solid var(--gray-medium);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-green), var(--accent-purple));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.value-card:hover::before {
  transform: translateX(0);
}

.value-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
}

.value-card h3 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub-white);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-light);
}

/* Footer */
.footer {
  background: var(--gray-dark);
  border-top: 1px solid var(--gray-medium);
  padding: 80px 0 40px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

/* Mobile-specific sections */
.footer__mobile-sections {
  display: none;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer-logo-image {
  height: 48px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.footer-logo-image:hover {
  filter: brightness(1.2) drop-shadow(0 0 15px var(--accent-red));
  transform: scale(1.05);
}

.footer__mission {
  margin-top: 16px;
}

.mission-image {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1);
}

.mission-image:hover {
  filter: brightness(1) drop-shadow(0 0 10px var(--accent-green));
  transform: scale(1.05);
}

.footer__social {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-link {
  color: var(--gray-light);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gray-medium);
}

.social-link:hover {
  color: var(--accent-red);
  border-color: var(--accent-red);
  background: rgba(209, 0, 31, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(209, 0, 31, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}

.footer__newsletter {
  margin-top: 0;
}

.footer__newsletter h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub-white);
}

.footer__newsletter p {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 16px;
  opacity: 0.8;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--gray-medium);
  border-radius: 50px;
  overflow: hidden;
  background: transparent;
  transition: border-color 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
  height: 50px;
}

.newsletter-input-wrapper:focus-within {
  border-color: var(--accent-red);
  box-shadow: 0 0 10px rgba(209, 0, 31, 0.2);
}

.newsletter-input {
  order: 1; /* Ensure input is first */
  flex: 1 1 auto;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--sub-white);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
  border-radius: 50px 0 0 50px;
  height: 100%;
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: var(--gray-light);
  opacity: 0.5;
}

.newsletter-btn {
  order: 2; /* Ensure button is second (right) */
  padding: 14px 20px;
  background: var(--accent-red);
  color: var(--sub-white);
  border: none;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
  width: 60px;
  min-width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.newsletter-btn:hover {
  background: #e8001f;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(209, 0, 31, 0.4);
}

.newsletter-btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Ensure proper order for all screen sizes */
.newsletter-form .newsletter-input-wrapper {
  display: flex !important;
  flex-direction: row !important;
}

.newsletter-form .newsletter-input-wrapper .newsletter-input {
  order: 1 !important;
}

.newsletter-form .newsletter-input-wrapper .newsletter-btn {
  order: 2 !important;
  margin-left: auto !important;
}

.footer__links {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-shrink: 0;
  width: auto;
  min-width: 320px;
}

.footer__section h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub-white);
}

.footer__section a {
  display: block;
  color: var(--gray-light);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__section a:hover {
  color: var(--accent-green);
}

.footer__bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--gray-medium);
}

.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop and larger screens - ensure proper footer link spacing */
@media (min-width: 769px) {
  .footer__links {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-shrink: 0;
    width: auto;
    min-width: 320px;
  }
  
  .footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .header__nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-image {
    height: 32px;
  }
  
  .hero {
    margin-top: 64px;
    padding: 40px 0;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .fragrance-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .footer__links {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    min-width: auto;
  }
  
  .footer-logo-image {
    height: 64px !important;
    width: auto !important;
  }
  
  .mission-image {
    height: 28px;
  }
  
  .footer__social {
    margin-top: 16px;
    gap: 16px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  .footer__newsletter {
    margin-top: 0;
  }
  
  .newsletter-input-wrapper {
    flex-direction: row !important;
    gap: 0;
    display: flex !important;
    align-items: center !important;
  }
  
  .newsletter-input {
    flex: 1 !important;
    height: 50px !important;
    padding: 0 20px !important;
    border: none !important;
    border-radius: 30px 0 0 30px !important;
    background: transparent !important;
    color: white !important;
    font-size: 16px !important;
    outline: none !important;
    margin: 0 !important;
  }
  
  .newsletter-btn {
    display: flex !important;
    width: 60px !important;
    height: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #d1001f !important;
    border: none !important;
    border-radius: 0 30px 30px 0 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
  }
}

/* Loading Animation */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles */
*:focus {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

/* Rotating Hero Section */
.rotating-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--main-black);
}

.rotating-hero__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.rotating-hero__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rotating-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.rotating-hero__image--active {
  opacity: 1;
  z-index: 2;
}

.rotating-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) brightness(0.8);
}

.rotating-hero__content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  text-align: left;
  z-index: 100;
  color: var(--sub-white);
  pointer-events: auto;
  max-width: 600px;
}

.rotating-hero__text-wrapper {
  margin-bottom: 40px;
}

.rotating-hero__title {
  font-family: var(--font-mono);
  font-size: var(--rotating-title-size);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--rotating-title-color, var(--sub-white));
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(209, 0, 31, 0.5), 0 0 30px rgba(209, 0, 31, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(209, 0, 31, 0.8), 0 0 40px rgba(209, 0, 31, 0.5);
  }
}

.rotating-hero__subtitle {
  font-size: var(--rotating-subtitle-size);
  margin-bottom: 48px;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  color: var(--rotating-subtitle-color, var(--sub-white));
}

/* Slide Content Styles */
.rotating-hero__slides-content {
  position: relative;
  min-height: 200px;
  margin-bottom: 32px;
}

.rotating-hero__slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.rotating-hero__slide-content--active {
  opacity: 1;
}

.rotating-hero__slide-title {
  font-family: var(--font-mono);
  font-size: var(--rotating-slide-title-size);
  font-weight: 700;
  color: var(--rotating-slide-title-color, var(--accent-red));
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(209, 0, 31, 0.6);
}

.rotating-hero__slide-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 24px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  max-width: 500px;
  color: var(--rotating-slide-description-color, var(--sub-white));
}

.rotating-hero__slide-button {
  margin-bottom: 16px;
}

.btn--slide {
  background: var(--accent-red);
  color: var(--sub-white);
  border: 2px solid var(--accent-red);
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 0 15px rgba(209, 0, 31, 0.4);
}

.btn--slide:hover {
  background: transparent;
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(209, 0, 31, 0.6);
}

.rotating-hero__indicators {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.rotating-hero__indicator {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rotating-hero__indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-purple), var(--accent-green));
  transition: left 0.3s ease;
}

.rotating-hero__indicator--active::before {
  left: 0;
  animation: progress 4s linear;
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

.rotating-hero__indicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scaleY(1.5);
}

/* Responsive */
@media (max-width: 768px) {
  .rotating-hero__content {
    left: 40px;
    max-width: calc(100% - 80px);
  }
  
  .rotating-hero__indicators {
    gap: 12px;
    bottom: 32px;
  }
  
  .rotating-hero__indicator {
    width: 40px;
    height: 3px;
  }
}

/* Product Trio Section (Nonny.beer style) */
.product-trio {
  padding: 80px 0;
  background: var(--main-black);
  position: relative;
  overflow: visible;
}

.product-trio .container {
  position: relative;
  max-width: none;
  width: 100%;
}

/* Decorative tiles outside the card */
.product-trio__tiles {
  position: absolute;
  top: 0;
  left: 80px;
  z-index: 3;
  pointer-events: none;
}

.tile {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  z-index: 3;
}

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

.tile--1 {
  top: 20px;
  left: -60px;
  transform: rotate(-15deg);
}

.tile--2 {
  top: 200px;
  left: -80px;
  transform: rotate(8deg);
}

.tile--3 {
  top: 380px;
  left: -40px;
  transform: rotate(-18deg);
}

/* PC Responsive tile sizing and positioning - exact Void specifications */
@media (min-width: 769px) and (max-width: 900px) {
  .product-trio__tiles {
    left: 60px;
  }
  
  .tile {
    width: 160px;
    height: 160px;
  }
  
  .tile--1 {
    top: 25px;
    left: -30px;
    transform: rotate(-12deg);
  }
  
  .tile--2 {
    top: 170px;
    left: -40px;
    transform: rotate(6deg);
  }
  
  .tile--3 {
    top: 315px;
    left: -20px;
    transform: rotate(-15deg);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .product-trio__tiles {
    left: 80px;
  }
  
  .tile {
    width: 190px;
    height: 190px;
  }
  
  .tile--1 {
    top: 15px;
    left: -25px;
    transform: rotate(-13deg);
  }
  
  .tile--2 {
    top: 165px;
    left: -35px;
    transform: rotate(7deg);
  }
  
  .tile--3 {
    top: 315px;
    left: -15px;
    transform: rotate(-16deg);
  }
}

@media (min-width: 1101px) and (max-width: 1279px) {
  .product-trio__tiles {
    left: 100px;
  }
  
  .tile {
    width: 220px;
    height: 220px;
  }
  
  .tile--1 {
    top: -5px;
    left: -20px;
    transform: rotate(-14deg);
  }
  
  .tile--2 {
    top: 150px;
    left: -30px;
    transform: rotate(7deg);
  }
  
  .tile--3 {
    top: 305px;
    left: -10px;
    transform: rotate(-17deg);
  }
}

@media (min-width: 1280px) and (max-width: 1300px) {
  .product-trio__tiles {
    left: 110px;
  }
  
  .tile {
    width: 240px;
    height: 240px;
  }
  
  .tile--1 {
    top: -20px;
    left: -18px;
    transform: rotate(-14deg);
  }
  
  .tile--2 {
    top: 138px;
    left: -28px;
    transform: rotate(7deg);
  }
  
  .tile--3 {
    top: 296px;
    left: -8px;
    transform: rotate(-17deg);
  }
}

@media (min-width: 1301px) and (max-width: 1399px) {
  .product-trio__tiles {
    left: 120px;
  }
  
  .tile {
    width: 250px;
    height: 250px;
  }
  
  .tile--1 {
    top: -20px;
    left: -15px;
    transform: rotate(-14deg);
  }
  
  .tile--2 {
    top: 140px;
    left: -25px;
    transform: rotate(7deg);
  }
  
  .tile--3 {
    top: 300px;
    left: -5px;
    transform: rotate(-17deg);
  }
}

@media (min-width: 1400px) {
  .product-trio__tiles {
    left: 120px;
  }
  
  .tile {
    width: 250px;
    height: 250px;
  }
  
  .tile--1 {
    top: -20px;
    left: -15px;
    transform: rotate(-14deg);
  }
  
  .tile--2 {
    top: 140px;
    left: -25px;
    transform: rotate(7deg);
  }
  
  .tile--3 {
    top: 300px;
    left: -5px;
    transform: rotate(-17deg);
  }
}

/* Main card - rounded rectangle with white background */
.product-trio__card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  max-width: none;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  min-height: 500px;
}

/* Product image on the right */
.product-trio__image {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.product-trio__image img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

/* Content in the center */
.product-trio__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.product-trio__title {
  font-family: var(--font-mono);
  font-size: var(--trio-title-size);
  font-weight: 700;
  color: var(--trio-title-color, var(--main-black));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-trio__subtitle {
  font-size: var(--trio-subtitle-size);
  color: var(--trio-subtitle-color, #666);
  margin-bottom: 24px;
  line-height: 1.4;
}

.product-trio__action {
  display: flex;
}

/* Yellow button like nonny.beer */
.btn--yellow {
  background: #f4d03f;
  color: var(--main-black);
  border: 2px solid #f4d03f;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn--yellow:hover {
  background: #f1c40f;
  border-color: #f1c40f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

/* Hide mobile tiles on desktop */
.product-trio__mobile-tiles {
  display: none;
}

/* PC text alignment - left align text but keep centered positioning */
@media (min-width: 769px) {
  .product-trio__content {
    text-align: left;
  }
  
  .product-trio__action {
    justify-content: flex-start;
  }
}

/* PC MAD BILLOW TRIO image responsive sizing */
@media (min-width: 768px) and (max-width: 900px) {
  .product-trio__image img {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .product-trio__image img {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 1101px) and (max-width: 1279px) {
  .product-trio__image img {
    width: 220px;
    height: 220px;
  }
}

@media (min-width: 1280px) and (max-width: 1300px) {
  .product-trio__image img {
    width: 240px;
    height: 240px;
  }
}

@media (min-width: 1301px) and (max-width: 1500px) {
  .product-trio__image img {
    width: 260px;
    height: 260px;
  }
}

@media (min-width: 1501px) {
  .product-trio__image img {
    width: 280px;
    height: 280px;
  }
}

/* Responsive - Mobile layout with tiles below button */
@media (max-width: 768px) {
  .product-trio {
    padding: 60px 0;
  }
  
  .product-trio .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  /* Hide decorative tiles on mobile */
  .product-trio__tiles {
    display: none;
  }
  
  .product-trio__card {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 40px 20px;
    margin: 0 10px;
    position: relative;
    width: calc(100% - 20px);
    min-height: 1050px;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  
  .product-trio__content {
    position: absolute;
    z-index: 2;
    top: 260px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .product-trio__image {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
  }
  
  .product-trio__image img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .product-trio__action {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  /* Mobile tiles container - below the button inside the card */
  .product-trio__mobile-tiles {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 520px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    z-index: 5;
  }
  
  .mobile-tile {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    background: white;
    z-index: 6;
  }
  
  /* Individual tile rotation */
  .mobile-tile:nth-child(1) {
    transform: rotate(-12deg);
  }
  
  .mobile-tile:nth-child(2) {
    transform: rotate(8deg);
  }
  
  .mobile-tile:nth-child(3) {
    transform: rotate(-8deg);
  }
  
  .mobile-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 7;
    position: relative;
  }
}

/* Mobile responsive tile sizing - exact specifications */
@media (min-width: 320px) and (max-width: 369px) {
  .product-trio__mobile-tiles {
    width: 160px;
  }
  
  .mobile-tile {
    width: 160px;
    height: 160px;
  }
}

@media (min-width: 370px) and (max-width: 399px) {
  .product-trio__mobile-tiles {
    width: 180px;
  }
  
  .mobile-tile {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 400px) and (max-width: 446px) {
  .product-trio__mobile-tiles {
    width: 180px;
  }
  
  .mobile-tile {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 447px) and (max-width: 479px) {
  .product-trio__mobile-tiles {
    width: 180px;
  }
  
  .mobile-tile {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 480px) and (max-width: 539px) {
  .product-trio__mobile-tiles {
    width: 200px;
  }
  
  .mobile-tile {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 540px) and (max-width: 599px) {
  .product-trio__mobile-tiles {
    width: 220px;
  }
  
  .mobile-tile {
    width: 220px;
    height: 220px;
  }
}

@media (min-width: 600px) and (max-width: 679px) {
  .product-trio__mobile-tiles {
    width: 240px;
  }
  
  .mobile-tile {
    width: 240px;
    height: 240px;
  }
}

@media (min-width: 680px) and (max-width: 768px) {
  .product-trio__mobile-tiles {
    width: 260px;
  }
  
  .mobile-tile {
    width: 260px;
    height: 260px;
  }
}

/* Still Got Questions Section (getcalisober.com style) */
.still-questions-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.still-questions__row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}

.still-questions__media {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.still-questions__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #f5f5f5;
}

.still-questions__content {
  padding: 40px 0;
  animation: slideInRight 0.8s ease-out;
}

.still-questions__title {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 40px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.still-questions__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Calisober-style buttons */
.btn--cali-primary,
.btn--cali-secondary {
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn--cali-primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn--cali-primary:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-2px);
}

.btn--cali-secondary {
  background: transparent;
  color: #000000;
  border-color: #000000;
}

.btn--cali-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .still-questions-section {
    padding: 30px 0 40px 0;
  }
  
  .still-questions__row {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  
  .still-questions__media {
    height: 300px;
    margin-bottom: 30px;
  }
  
  .still-questions__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .still-questions__buttons {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Force button visibility on mobile - highest specificity */
  .footer .footer__content .footer__brand .footer__newsletter .newsletter-form .newsletter-input-wrapper .newsletter-btn {
    display: flex !important;
    width: 60px !important;
    height: 50px !important;
    background: #d1001f !important;
    border: none !important;
    border-radius: 0 30px 30px 0 !important;
    position: relative !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    min-width: 60px !important;
    box-sizing: border-box !important;
  }
  
  .footer .footer__content .footer__brand .footer__newsletter .newsletter-form .newsletter-input-wrapper .newsletter-btn .newsletter-btn-icon {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    fill: white !important;
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Footer mobile layout */
  .footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .footer__mobile-sections {
    display: block;
    order: -1;
    margin-bottom: 40px;
  }
  
  .footer__links {
    display: none;
  }
  
  .footer__brand {
    order: 1;
  }
  
  .footer__section {
    border-bottom: 1px solid var(--gray-medium);
    padding: 20px 0;
  }
  
  .footer__section:last-child {
    border-bottom: none;
  }
  
  .footer__section h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    width: 100%;
  }
  
  .footer__section h4 span {
    flex: 1;
    text-align: left;
  }
  
  .footer__section h4:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--sub-white);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer__section.active h4:after {
    transform: rotate(45deg);
  }
  
  .footer__section-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
  }
  
  .footer__section.active .footer__section-links {
    max-height: 200px;
    padding-top: 20px;
  }
  
  .footer__brand {
    text-align: center;
    margin-top: 20px;
  }
  
  .footer__social {
    justify-content: center;
    margin: 24px 0;
  }
  
  .footer__newsletter {
    text-align: center;
    margin-top: 30px;
  }
  
  /* Mobile newsletter form - complete reset and rebuild */
  .footer__newsletter {
    padding: 0 20px;
    text-align: center;
  }
  
  .newsletter-form {
    max-width: 100%;
  }
  
  .newsletter-input-wrapper {
    display: flex !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    border: 1px solid #444 !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    background: transparent !important;
    height: 50px !important;
    align-items: center !important;
  }
  
  .newsletter-input {
    flex: 1 !important;
    height: 50px !important;
    padding: 0 20px !important;
    border: none !important;
    border-radius: 30px 0 0 30px !important;
    background: transparent !important;
    color: white !important;
    font-size: 16px !important;
    outline: none !important;
    margin: 0 !important;
  }
  
  .newsletter-input::placeholder {
    color: #888;
  }
  
  .newsletter-btn {
    width: 60px;
    height: 50px;
    background: #d1001f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .newsletter-btn-icon {
    width: 18px;
    height: 18px;
    fill: white;
  }
  
  .footer__newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .footer__newsletter p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

/* Removed conflicting mobile styles - using only new solution below */

/* MOBILE NEWSLETTER FORM FIX - COMPLETE SOLUTION */
@media screen and (max-width: 768px) {
  
  /* Input wrapper - container for input and button */
  .newsletter-input-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    position: relative !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    height: 50px !important;
    border: 1px solid #444 !important;
    border-radius: 30px !important;
    background: transparent !important;
    overflow: hidden !important; /* Keep button within border */
  }
  
  /* Input field - MUST BE FIRST */
  .newsletter-input {
    order: 1 !important; /* Force input to be first */
    flex: 1 1 auto !important;
    width: calc(100% - 60px) !important;
    height: 50px !important;
    border: none !important;
    background: transparent !important;
    color: white !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    border-radius: 30px 0 0 30px !important;
    outline: none !important;
  }
  
  /* Submit button - MUST BE SECOND (RIGHT SIDE) */
  .newsletter-btn,
  button.newsletter-btn,
  .newsletter-input-wrapper button[type="submit"] {
    order: 2 !important; /* Force button to be second (right) */
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    height: 50px !important;
    background: #d1001f !important;
    border: none !important;
    border-radius: 0 30px 30px 0 !important;
    position: relative !important;
    z-index: 10 !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    margin-left: auto !important; /* Push to right */
  }
  
  /* Icon inside button */
  .newsletter-btn-icon,
  .newsletter-btn svg,
  .newsletter-btn img {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    fill: white !important;
    color: white !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none !important;
    object-fit: contain !important;
  }
  
  /* Ensure hidden input doesn't interfere */
  input[type="hidden"] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}
  
  html body .footer .footer__content .footer__brand .footer__newsletter .newsletter-form .newsletter-input-wrapper .newsletter-input {
    flex: 1 !important;
    height: 50px !important;
    padding: 0 20px !important;
    border: none !important;
    border-radius: 30px 0 0 30px !important;
    background: transparent !important;
    color: white !important;
    font-size: 16px !important;
    outline: none !important;
    margin: 0 !important;
    order: 1 !important;
  }
}