/* Modern Website Design - Trippies Clothing */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Modern & Elegant */
  --primary-bg: #FAF8F3;
  --secondary-bg: #FFFFFF;
  --accent-color: #D4A574;
  --accent-dark: #B8875E;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;
  --border-color: #E5E5E5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, #D4A574 0%, #B8875E 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  
  /* Animation Easing */
  --easing: cubic-bezier(0.33, 1, 0.68, 1);
  --easing-2: cubic-bezier(0.61, 1, 0.88, 1);
}

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

/* Typography - Standardized Font Sizes */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 { 
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

h4 { 
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* Modern Navigation */
.modern-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.modern-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-primary);
}

/* Hero Section - Modern */
.modern-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--primary-bg);
  overflow: hidden;
  padding-top: 80px;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.modern-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-primary);
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Modern Buttons - unified with bold-button style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 250ms;
  cursor: pointer;
  border: 2px solid var(--text-primary);
  font-family: 'Inter', sans-serif;
  background-color: var(--secondary-bg);
  color: var(--text-primary);
  box-shadow: 4px 4px var(--text-primary);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--text-primary);
  z-index: -1;
  transition: all 250ms;
}

.btn:hover {
  color: white !important;
}

.btn:hover::before {
  width: 100%;
}

.btn > *,
.btn svg {
  position: relative;
  z-index: 1;
  transition: color 250ms;
}

.btn:hover > *,
.btn:hover svg {
  color: white !important;
  fill: white !important;
  stroke: white !important;
}

.btn-primary { /* keep class for semantics */ }
.btn-secondary { /* keep class for semantics */ }

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Spacing */
.section {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

/* Masonry Grid for Products */
.masonry-grid {
  column-count: 4;
  column-gap: 1.25rem;
  margin-top: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  page-break-inside: avoid;
}

.modern-product-card {
  background: var(--secondary-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.modern-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 120%;
  overflow: hidden;
  background: var(--primary-bg);
}

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

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

.product-info {
  padding: 0.875rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

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

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Playfair Display', serif;
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* About Section */
.about-section {
  background: var(--secondary-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h3 {
  margin-bottom: 2rem;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.values-list {
  list-style: none;
  margin-top: 2rem;
}

.values-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.values-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  background: var(--primary-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.social-icons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
  margin-top: 2rem;
}

.social-icons-list .icon-content {
  margin: 0;
  position: relative;
  padding: 0;
}

.social-icons-list .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--text-secondary);
  background-color: var(--secondary-bg);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.social-icons-list .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.social-icons-list .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}

.social-icons-list .icon-content a:hover {
  color: white;
}

.social-icons-list .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.social-icons-list .icon-content a:hover .filled {
  height: 100%;
}

/* Instagram gradient */
.social-icons-list .icon-content[data-social="instagram"] a .filled {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}

/* Facebook blue */
.social-icons-list .icon-content[data-social="facebook"] a .filled {
  background-color: #1877f2;
}

/* WhatsApp green */
.social-icons-list .icon-content[data-social="whatsapp"] a .filled {
  background-color: #25d366;
}

/* Email gray */
.social-icons-list .icon-content[data-social="email"] a .filled {
  background-color: #6b6b6b;
}

/* Business Hours Toggle - Fixed Right Side Popup */
.toggle__checkbox {
  display: none;
}

.toggle__checkbox:checked + .hours-box {
  transform: translateX(0);
}

.toggle__checkbox:checked + .hours-box section {
  display: block;
}

.toggle__checkbox:checked + .hours-box .hours-box__item {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-out;
  transition-delay: calc(var(--index) * 0.1s);
  transition-property: transform, opacity;
}

.toggle__checkbox:checked + .hours-box .toggle-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 512 512'%3E %3Cpath d='M437.5 386.6L306.9 256l130.6-130.6c14.1-14.1 14.1-36.8 0-50.9-14.1-14.1-36.8-14.1-50.9 0L256 205.1 125.4 74.5c-14.1-14.1-36.8-14.1-50.9 0-14.1 14.1-14.1 36.8 0 50.9L205.1 256 74.5 386.6c-14.1 14.1-14.1 36.8 0 50.9 14.1 14.1 36.8 14.1 50.9 0L256 306.9l130.6 130.6c14.1 14.1 36.8 14.1 50.9 0 14-14.1 14-36.9 0-50.9z'/%3E %3C/svg%3E ");
}

.hours-box {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateX(calc(100% - 50px));
  transform-origin: right center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s var(--easing);
  z-index: 999;
  min-width: auto;
  max-width: none;
  width: 50px;
  height: 50px;
}

.toggle__checkbox:checked + .hours-box {
  padding: 20px 80px 20px 20px;
  background: var(--secondary-bg);
  border-radius: 12px 0 0 12px;
  border: 2px solid var(--border-color);
  border-right: none;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  max-width: 320px;
  width: auto;
  height: auto;
}

.hours-box section {
  display: none;
}

.hours-box::after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  background: var(--accent-color);
  transform-origin: 100% 50%;
  transform: translateY(-50%);
  transition: transform 0.3s var(--easing);
  z-index: 0;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
}

.toggle__checkbox:checked + .hours-box::after {
  width: 40px;
  height: 40px;
  border-radius: 8px 0 0 8px;
}

.hours-box__item {
  visibility: hidden;
  transform: translateX(20px);
  opacity: 0;
  transition: opacity 0.2s var(--easing-2) 0;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.hours-box__item:first-child {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.hours-box__item:last-child {
  margin-bottom: 0;
}

.toggle {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-icon {
  cursor: pointer;
  display: block;
  width: 24px;
  height: 24px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E %3Ccircle cx='12' cy='12' r='10'/%3E %3Cpath d='M12 6v6l4 2'/%3E %3C/svg%3E ");
  transition: all 0.3s ease;
}

.toggle:hover .toggle-icon {
  opacity: 0.8;
}

/* Legacy social links (keeping for compatibility) */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Bold Form Design - Adapted from Uiverse.io */
.bold-form {
  --form-background: #F5F1E8;
  --input-focus: var(--accent-color);
  --font-color: var(--text-primary);
  --font-color-sub: var(--text-secondary);
  --bg-color: var(--secondary-bg);
  --main-color: var(--text-primary);
  
  padding: 2rem;
  background: var(--form-background);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  width: 100%;
}

.bold-form > p {
  font-family: 'Playfair Display', serif;
  color: var(--font-color);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.bold-form > p > span {
  font-family: 'Inter', sans-serif;
  color: var(--font-color-sub);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.bold-form > input,
.bold-textarea {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--font-color);
  padding: 0.75rem 1rem;
  outline: none;
  transition: all 250ms ease;
}

.bold-textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 0.75rem;
  height: auto;
}

.bold-form > input:focus,
.bold-textarea:focus {
  border-color: var(--input-focus);
  box-shadow: 4px 4px var(--input-focus);
}

.bold-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  width: 100%;
  height: 48px;
  border-radius: 5px;
  border: 2px solid var(--main-color);
  background-color: var(--bg-color);
  box-shadow: 4px 4px var(--main-color);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--font-color);
  cursor: pointer;
  transition: all 250ms;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bold-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--main-color);
  z-index: -1;
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}

.bold-button:hover {
  color: var(--secondary-bg);
}

.bold-button:hover::before {
  width: 100%;
}

.bold-button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px var(--main-color);
}

.bold-button .icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.bold-button:hover .icon {
  transform: translateX(4px);
}


/* Modern Form (legacy - keeping for compatibility) */
.modern-form {
  background: var(--secondary-bg);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

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

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

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

/* Footer */
.modern-footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-links {
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}

.mobile-menu .nav-link {
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1400px) {
  .masonry-grid { column-count: 3; }
}

@media (max-width: 1024px) {
  .masonry-grid { column-count: 2; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 100%; }
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Legal Pages Styles */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--secondary-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.legal-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  list-style: disc;
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.8;
  font-size: 1rem;
}

.legal-content a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.legal-content a:hover {
  color: var(--accent-dark);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 { 
    font-size: clamp(2rem, 6vw, 3rem);
  }

  h2 { 
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  h3 { 
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  h4 { 
    font-size: clamp(1.125rem, 3vw, 1.5rem);
  }

  p {
    font-size: 0.95rem;
  }

  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .masonry-grid {
    column-count: 1;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .product-description {
    font-size: 0.75rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .hero-content p {
    font-size: 1.125rem;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    text-align: center;
    font-size: 0.95rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .contact-item p {
    font-size: 0.95rem;
  }

  .contact-item strong {
    font-size: 0.95rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .legal-content h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .legal-content h3 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
  }

  .legal-content p {
    font-size: 0.95rem;
  }

  .legal-content li {
    font-size: 0.95rem;
  }
  
  .legal-page {
    padding-top: 80px;
  }

  .bold-form > p {
    font-size: 1.25rem;
  }
  
  .bold-form > p > span {
    font-size: 0.9rem;
  }
  
  .bold-form {
    padding: 1.5rem;
    gap: 1.25rem;
  }
  
  .bold-form > input,
  .bold-textarea {
    font-size: 0.95rem;
    height: 44px;
  }

  .bold-textarea {
    min-height: 100px;
  }

  .bold-button {
    font-size: 0.95rem;
    height: 44px;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-column p {
    font-size: 0.9rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.875rem;
  }

  .hours-box {
    width: 45px;
    transform: translateX(calc(100% - 45px));
  }
  
  .toggle {
    width: 45px;
    height: 45px;
  }
  
  .hours-box::after {
    width: 45px;
    height: 45px;
  }
  
  .toggle__checkbox:checked + .hours-box {
    min-width: 260px;
    max-width: 280px;
    padding: 18px 70px 18px 18px;
  }
  
  .hours-box__item {
    font-size: 0.9rem;
  }
  
  .hours-box__item:first-child {
    font-size: 1rem;
  }
}

