/* ===================================
   RINCELI KIDS - MODERN BOLD DESIGN
   CSS Reset & Base Styles
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - BOLD & MODERN
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2a2a2a;
}

a {
  color: #C41E5B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #8B154A;
  transform: translateY(-2px);
}

strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===================================
   HEADER & NAVIGATION - BOLD STYLE
   =================================== */

header {
  background: #ffffff;
  border-bottom: 4px solid #C41E5B;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(196, 30, 91, 0.15);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav ul li a {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav ul li a:hover {
  background: #C41E5B;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU - HAMBURGER
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #C41E5B;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(196, 30, 91, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B154A;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #C41E5B 0%, #8B154A 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #ffffff;
  color: #C41E5B;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: #ffffff;
  color: #C41E5B;
  transform: translateX(8px);
  border-color: #ffffff;
}

/* ===================================
   HERO SECTION - BOLD & VIBRANT
   =================================== */

.hero {
  background: linear-gradient(135deg, #FF6B9D 0%, #C41E5B 50%, #8B154A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  line-height: 1.1;
}

.hero p {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-subheadline {
  font-size: 24px;
  font-weight: 700;
  color: #FFE66D;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   BUTTONS - BOLD & MODERN
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #FFE66D;
  color: #1a1a1a;
  border-color: #B8860B;
  box-shadow: 0 6px 0 #B8860B, 0 8px 20px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
  background: #B8860B;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 0 #8B6508, 0 12px 24px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: #C41E5B;
  border-color: #C41E5B;
  box-shadow: 0 6px 0 #8B154A, 0 8px 20px rgba(196, 30, 91, 0.3);
}

.btn-secondary:hover {
  background: #C41E5B;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 0 #8B154A, 0 12px 24px rgba(196, 30, 91, 0.4);
}

.btn-link {
  background: transparent;
  color: #C41E5B;
  border: 3px solid #C41E5B;
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: none;
}

.btn-link:hover {
  background: #C41E5B;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===================================
   SECTIONS - SPACING & LAYOUT
   =================================== */

section {
  padding: 60px 0;
  margin-bottom: 0;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #FF6B9D, #4ECDC4);
  border-radius: 3px;
}

/* ===================================
   CARD LAYOUTS - FLEXBOX ONLY
   =================================== */

.collections-grid,
.services-grid,
.features-grid,
.testimonials-grid,
.products-grid,
.values-grid,
.trending-grid,
.looks-grid,
.store-info-grid,
.contact-grid,
.faq-grid,
.next-steps-grid,
.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.collection-card,
.service-card,
.service-item,
.feature,
.testimonial-card,
.product-card,
.value-item,
.trending-item,
.look-card,
.info-card,
.contact-card,
.faq-item,
.step-card,
.cta-card {
  background: #ffffff;
  border: 4px solid #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 400px;
  box-shadow: 8px 8px 0 rgba(196, 30, 91, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.collection-card:hover,
.service-card:hover,
.service-item:hover,
.product-card:hover,
.info-card:hover,
.contact-card:hover,
.step-card:hover,
.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 rgba(196, 30, 91, 0.3), 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #C41E5B;
}

.collection-card h3,
.service-card h3,
.service-item h3,
.product-card h3 {
  color: #C41E5B;
  font-size: 24px;
  margin-bottom: 8px;
}

.collection-card p,
.service-card p,
.service-item p,
.product-card p {
  color: #2a2a2a;
  font-size: 16px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.price {
  font-weight: 700;
  font-size: 20px;
  color: #B8860B;
  display: block;
  margin: 16px 0;
  padding: 12px;
  background: #FFE66D;
  border-radius: 8px;
  text-align: center;
  border: 3px solid #B8860B;
}

/* ===================================
   FEATURE ITEMS - ICON + TEXT
   =================================== */

.feature,
.value-item,
.trending-item,
.feature-item {
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #4ECDC4;
  border-radius: 16px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 6px 6px 0 rgba(78, 205, 196, 0.3);
  transition: all 0.3s ease;
}

.feature:hover,
.value-item:hover,
.trending-item:hover {
  transform: translateY(-6px) rotate(2deg);
  box-shadow: 10px 10px 0 rgba(78, 205, 196, 0.4);
  border-color: #3ABDB4;
}

.feature img,
.value-item img,
.trending-item img,
.service-item img,
.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(3px 3px 0 rgba(196, 30, 91, 0.2));
}

.feature h3,
.value-item h3,
.trending-item h3 {
  color: #4ECDC4;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background: #f8f8f8;
  padding: 60px 0;
}

.testimonial-card {
  background: #ffffff;
  border: 4px solid #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 550px;
  box-shadow: 8px 8px 0 rgba(255, 230, 109, 0.5);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.6;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 3px solid #FFE66D;
}

.testimonial-author strong {
  font-size: 18px;
  color: #C41E5B;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 600;
}

.stars {
  color: #FFE66D;
  font-size: 20px;
  text-shadow: 1px 1px 0 #B8860B;
}

/* ===================================
   PRODUCT CARDS - BADGES
   =================================== */

.product-card {
  position: relative;
}

.badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FF6B9D;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 8px rgba(255, 107, 157, 0.3);
}

.product-image {
  width: 100%;
  height: 200px;
  background: #f8f8f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 3px solid #e0e0e0;
}

.product-image img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(2px 2px 0 rgba(196, 30, 91, 0.2));
}

/* ===================================
   FORMS - BOLD INPUTS
   =================================== */

.newsletter-form,
.form-wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
}

.email-input,
.input-field,
.textarea-field,
select {
  flex: 1 1 250px;
  padding: 16px 20px;
  border: 4px solid #1a1a1a;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1a1a1a;
}

.email-input:focus,
.input-field:focus,
.textarea-field:focus,
select:focus {
  outline: none;
  border-color: #C41E5B;
  box-shadow: 0 0 0 4px rgba(196, 30, 91, 0.2), 6px 6px 0 rgba(196, 30, 91, 0.3);
  transform: translateY(-2px);
}

.textarea-field {
  resize: vertical;
  min-height: 120px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 100%;
  margin-bottom: 20px;
}

.form-field label {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #C41E5B;
}

.form-checkbox label {
  font-size: 14px;
  color: #2a2a2a;
  cursor: pointer;
  font-weight: 600;
}

.form-notice,
.newsletter-notice,
.newsletter-benefit {
  text-align: center;
  font-size: 14px;
  color: #2a2a2a;
  margin-top: 16px;
  font-weight: 600;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

.newsletter,
.newsletter-cta {
  background: linear-gradient(135deg, #d9a2c2 0%, #c41e5b 100%);
  padding: 60px 0;
  text-align: center;
}

.newsletter h2,
.newsletter-cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter h2::after,
.newsletter-cta h2::after {
  background: #ffffff;
}

.newsletter p,
.newsletter-cta p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}

.newsletter-notice,
.newsletter-benefit {
  color: #ffffff;
  font-weight: 700;
}

/* ===================================
   FILTERS - COLLECTIONS PAGE
   =================================== */

.collection-filters {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
  max-width: 300px;
}

.filter-group label {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select {
  flex: 1;
}

/* ===================================
   CONTENT SECTIONS - TEXT & IMAGE
   =================================== */

.content-wrapper,
.about-story,
.commitment-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper p,
.about-story p,
.commitment-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #2a2a2a;
}

.commitment-badges,
.cookie-buttons,
.cta-buttons,
.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.badge,
.commitment-badges span {
  background: #FFE66D;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: 3px solid #B8860B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   FEATURES LIST - CHECK ITEMS
   =================================== */

.features-list,
.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item,
.service-item:not(.services-grid .service-item) {
 
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border: 3px solid #4ECDC4;
  border-radius: 12px;
  box-shadow: 4px 4px 0 rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 6px 6px 0 rgba(78, 205, 196, 0.3);
}

.feature-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.feature-item p {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
}

/* ===================================
   LOCATION & CONTACT INFO
   =================================== */

.location-info,
.contact-info,
.store-details {
  background: #f8f8f8;
  padding: 60px 0;
  text-align: center;
}

.location-details,
.info-details {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: #ffffff;
  border: 4px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(196, 30, 91, 0.2);
}

.location-details p,
.info-details p {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 16px 0;
}

.info-block {
  margin-bottom: 32px;
}

.info-block h3 {
  color: #C41E5B;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===================================
   THANK YOU PAGE - SUCCESS
   =================================== */

.success-icon {
  width: 100px;
  height: 100px;
  background: #4ECDC4;
  border: 6px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: 0 8px 0 #3ABDB4, 0 12px 24px rgba(78, 205, 196, 0.3);
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: #ffffff;
  border: 4px solid #4ECDC4;
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(78, 205, 196, 0.3);
}

.confirmation-box h2 {
  color: #4ECDC4;
  margin-bottom: 24px;
}

.confirmation-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #2a2a2a;
}

.response-time {
  margin-top: 24px;
  padding: 16px;
  background: #FFE66D;
  border-radius: 8px;
  border: 3px solid #B8860B;
}

/* ===================================
   LEGAL PAGES - CONTENT STYLING
   =================================== */

.legal-content {
  padding: 60px 0;
}

.legal-content h2 {
  text-align: left;
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
  color: #C41E5B;
}

.legal-content h2::after {
  display: none;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content a {
  color: #C41E5B;
  text-decoration: underline;
  font-weight: 700;
}

/* ===================================
   CTA BANNERS
   =================================== */

.cta-banner,
.visit-cta,
.return-home {
  background: linear-gradient(135deg, #FF6B9D 0%, #C41E5B 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2,
.visit-cta h2,
.return-home h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner h2::after,
.visit-cta h2::after,
.return-home h2::after {
  background: #ffffff;
}

.cta-banner p,
.visit-cta p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* ===================================
   FOOTER - BOLD DESIGN
   =================================== */

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 0;
  border-top: 6px solid #C41E5B;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #FFE66D;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: #cccccc;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #FFE66D;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 3px solid #333333;
  margin-top: 40px;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
  font-weight: 600;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 4px solid #FFE66D;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-consent p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  flex: 1 1 300px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  white-space: nowrap;
}

.cookie-accept {
  background: #FFE66D;
  color: #1a1a1a;
  border-color: #B8860B;
}

.cookie-accept:hover {
  background: #B8860B;
  color: #ffffff;
  transform: translateY(-2px);
}

.cookie-reject {
  background: #666666;
  color: #ffffff;
  border-color: #444444;
}

.cookie-reject:hover {
  background: #444444;
  transform: translateY(-2px);
}

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-settings:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border: 4px solid #1a1a1a;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 8px 8px 0 rgba(196, 30, 91, 0.3);
}

.cookie-modal-content h2 {
  color: #C41E5B;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  padding: 20px;
  background: #f8f8f8;
  border: 3px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #2a2a2a;
  margin: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: #C41E5B;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Navigation */
  .main-nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Sections */
  section {
    padding: 40px 0;
  }
  
  section h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cards */
  .collection-card,
  .service-card,
  .service-item,
  .feature,
  .testimonial-card,
  .product-card,
  .value-item,
  .info-card,
  .contact-card,
  .step-card,
  .cta-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Forms */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Filters */
  .collection-filters {
    flex-direction: column;
  }
  
  .filter-group {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .collection-card,
  .service-card,
  .testimonial-card,
  .product-card {
    flex: 1 1 45%;
  }
  
  .feature,
  .value-item {
    flex: 1 1 30%;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

:focus-visible {
  outline: 3px solid #C41E5B;
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #FFE66D;
  outline-offset: 3px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}