:root {
  --primary: #073B4C;
  --accent: #EF476F;
  --yellow: #FFD166;
  --blue: #118AB2;
  --green: #06D6A0;
  --bg: #FFFFFF;
  --paper: #F7F3EA;
  --text: #073B4C;
  --shadow: rgba(7, 59, 76, 0.15);
  --radius: 8px;
  --space-md: clamp(1.5rem, 5vw, 3rem);
  --transition: all 0.3s ease-in-out;
  
  --h1: clamp(2.5rem, 6vw, 4rem);
  --h2: clamp(2rem, 5vw, 3rem);
  --h3: clamp(1.5rem, 4vw, 2rem);
  --body: clamp(1rem, 1.2vw, 1.25rem);
  --small: clamp(0.875rem, 1vw, 1rem);
}

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

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

body {
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  font-size: var(--body);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: var(--transition);
}

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

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button, .button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

button:hover, .button:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

section {
  padding: var(--space-md) 0;
  position: relative;
}

section:first-of-type {
  padding-top: 0;
}

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

header {
  position: sticky;
  top: 0;
  background-color: var(--bg);
  z-index: 1000;
  box-shadow: 0 5px 15px var(--shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}

.logo:hover {
  background: linear-gradient(45deg, var(--accent), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: var(--transition);
  padding-top: 80px;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5rem 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(7, 59, 76, 0.1);
}

.mobile-nav-section:last-child {
  border-bottom: none;
}

.mobile-nav a {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 700;
}

.close-nav {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-top: 0;
}

.close-nav span {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
}

.close-nav span:first-child {
  transform: rotate(45deg);
}

.close-nav span:last-child {
  transform: rotate(-45deg);
}

.close-nav:hover span {
  background-color: var(--accent);
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

.hero p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out 0.3s forwards;
}

.hero .button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out 0.6s forwards;
  margin-top: 2rem;
}

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

.products {
  background-color: var(--paper);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
  transition: var(--transition);
}

.product-card:nth-child(even) {
  transform: rotate(2deg);
}

.product-card:hover {
  transform: translateY(-10px) rotate(0);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-content {
  padding: 1.5rem;
}

.product-price {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;
}

.product-card .button {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.creative-zones {
  padding: var(--space-md) 0;
}

.creative-zones > .container > .creative-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.creative-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
}

.creative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.creative-content {
  padding: 0 1rem;
}

.creative-content h2 {
  margin-bottom: 1.5rem;
}

.creative-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonials {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--paper) 100%);
  padding: var(--space-md) 0;
}

.testimonial-carousel {
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-item {
  min-width: 280px;
  background: var(--bg);
  padding: 2rem;
  box-shadow: 0 10px 20px var(--shadow);
  border-radius: var(--radius);
  transform: rotate(-3deg);
  scroll-snap-align: start;
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: rotate(0deg) translateY(-10px);
}

.testimonial-author {
  font-family: 'Poppins', cursive;
  color: var(--accent);
  margin-top: 1rem;
}

.cta {
  text-align: center;
  padding: var(--space-md) 0;
  position: relative;
}

.cta h2 {
  display: inline-block;
  position: relative;
}

.cta h2::before {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  bottom: -5px;
  height: 15px;
  background-color: var(--yellow);
  z-index: -1;
  transform: rotate(-2deg);
}

.cta .button {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

footer {
  background-color: var(--primary);
  color: white;
  padding: var(--space-md) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: var(--yellow);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--yellow);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--accent);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--small);
  opacity: 0.7;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid transparent;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: white;
  font-size: var(--small);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--yellow);
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--yellow);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

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

.contact-form {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--shadow);
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  transition: var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17, 138, 178, 0.2);
}

textarea {
  min-height: 150px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.map-container {
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
}

.error-code {
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  background: linear-gradient(45deg, var(--accent), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
  margin-bottom: 2rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.cookie-text {
  margin-right: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  display: table;
}

.legal-content th,
.legal-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(7, 59, 76, 0.1);
}

.legal-content th {
  background-color: var(--paper);
  font-weight: 600;
  color: var(--primary);
}

.legal-content tr:hover {
  background-color: rgba(247, 243, 234, 0.5);
}

@media (max-width: 320px) {
  .legal-content {
    padding: 0.75rem !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .legal-content h1 {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .legal-content h2 {
    font-size: 1.1rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .legal-content p {
    font-size: 0.875rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .legal-content ul,
  .legal-content ol {
    padding-left: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .legal-content li {
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .legal-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    min-width: 600px;
    margin: 1rem 0;
    font-size: 0.8rem;
  }
  
  .legal-content thead,
  .legal-content tbody {
    display: table;
    width: 100%;
  }
  
  .legal-content tr {
    display: table-row;
  }
  
  .legal-content th {
    display: table-cell;
    min-width: 120px;
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
    font-weight: 600;
  }
  
  .legal-content td {
    display: table-cell;
    min-width: 150px;
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
    word-wrap: break-word;
  }
  
  .page-header {
    padding: 1.5rem 0 !important;
  }
  
  .page-header h1 {
    font-size: 1.5rem !important;
  }
  
  .page-header p {
    font-size: 0.8rem !important;
    padding: 0 0.5rem;
  }
}

.page-header {
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

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

.category-button {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  background: white;
  color: var(--primary);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category-button.active {
  background: var(--primary);
  color: white;
}

.product-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .creative-zones > .container > .creative-zones {
    grid-template-columns: 1fr;
  }
  
  .creative-image {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .categories {
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .category-button {
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem !important;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .hero {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
  
  .container {
    width: 95%;
    padding: 0 0.75rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .legal-content {
    padding: 1.5rem;
  }
  
  .page-header {
    padding: 2.5rem 0 !important;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .product-content {
    padding: 1rem !important;
  }
  
  .bundle-card {
    margin-bottom: 1.5rem;
  }
  
  .service-item {
    grid-template-columns: 1fr !important;
  }
  
  .story-content {
    grid-template-columns: 1fr !important;
  }
  
  .contact-details > div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: 1.2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
    width: 25px;
    height: 18px;
  }
  
  .hero {
    min-height: 50vh;
    padding: 1.5rem 0;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
  
  header {
    padding: 0.75rem 0;
  }
  
  .header-inner {
    padding: 0;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .categories {
    gap: 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .category-button {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
    border-radius: 20px !important;
  }
  
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .product-card {
    transform: none !important;
  }
  
  .product-content {
    padding: 0.75rem !important;
  }
  
  .product-content h3 {
    font-size: 1rem;
  }
  
  .product-content p {
    font-size: 0.85rem;
  }
  
  .product-content ul {
    font-size: 0.8rem;
    padding-left: 1rem;
    margin: 0.75rem 0;
  }
  
  .product-price {
    font-size: 1rem !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .testimonial-item {
    transform: none;
    padding: 1rem;
    min-width: 100%;
    font-size: 0.85rem;
  }
  
  section {
    padding: 1.5rem 0;
  }
  
  .container {
    width: 100%;
    padding: 0 0.5rem;
  }
  
  .button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .legal-content {
    padding: 1rem;
    font-size: 0.85rem;
  }
  
  .legal-content h1 {
    font-size: 1.5rem;
  }
  
  .legal-content h2 {
    font-size: 1.2rem;
  }
  
  .page-header {
    padding: 2rem 0 !important;
  }
  
  .page-header h1 {
    font-size: 1.5rem !important;
  }
  
  .page-header p {
    font-size: 0.85rem !important;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .mobile-nav a {
    font-size: 1.25rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
  .bundle-card {
    margin-bottom: 1rem;
  }
  
  .bundle-card div[style*="padding: 2rem"] {
    padding: 1rem !important;
  }
  
  section > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  section > div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
  
  section > div.container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  section > div > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  div[style*="grid-template-columns: 1fr 1fr"][style*="align-items: center"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  section .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .newsletter-form {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
  
  .newsletter-form input {
    width: 100% !important;
    padding: 0.6rem !important;
    font-size: 0.85rem !important;
  }
  
  .newsletter-form button {
    width: 100% !important;
    padding: 0.6rem !important;
    font-size: 0.85rem !important;
  }
  
  .contact-details {
    margin-top: 2rem !important;
  }
  
  .contact-details > div {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .contact-item {
    padding: 1rem !important;
  }
  
  .service-item {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
  }
  
  .service-item .service-image {
    order: 1 !important;
  }
  
  .service-item .service-content {
    order: 2 !important;
  }
  
  .philosophy-cards {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .philosophy-card {
    padding: 1.5rem !important;
  }
  
  .story-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .story-image {
    height: 250px !important;
  }
  
  .testimonial-carousel {
    gap: 1rem;
  }
  
  .creative-zones > .container > .creative-zones {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .creative-image {
    height: 250px !important;
  }
  
  .faq-container {
    margin: 2rem auto !important;
  }
  
  .faq-item h3 {
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }
  
  .gift-cards {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .gift-card {
    width: 100% !important;
    padding: 1.5rem !important;
  }
  
  .error-code {
    font-size: 4rem !important;
  }
  
  .thank-you-content {
    padding: 2rem !important;
  }
  
  .thank-you-content div[style*="font-size: 4rem"] {
    font-size: 3rem !important;
  }
  
  .footer-col p {
    font-size: 0.85rem;
  }
  
  .footer-col h4 {
    font-size: 1rem;
  }
  
  .copyright {
    font-size: 0.75rem;
    margin-top: 2rem;
    padding-top: 1rem;
  }
  
  .mobile-nav {
    padding-top: 70px !important;
  }
  
  .mobile-nav-section {
    margin: 1rem 0 !important;
  }
  
  .mobile-nav a {
    font-size: 1.5rem !important;
    margin: 0.75rem 0 !important;
  }
  
  .close-nav {
    top: 4rem !important;
    right: 1rem !important;
    width: 35px !important;
    height: 35px !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    margin-top: 0 !important;
  }
  
  .close-nav span {
    width: 20px !important;
    background-color: var(--primary) !important;
  }
  
  .map-container {
    height: 250px !important;
  }
  
  .map-container > div {
    padding: 1.5rem !important;
  }
  
  .map-container > div > div[style*="font-size: 3rem"] {
    font-size: 2rem !important;
  }
  
  section[style*="background-color: var(--paper)"] {
    padding: 1.5rem 0 !important;
  }
  
  .container h2.text-center {
    font-size: 1.25rem;
    padding: 0 0.5rem;
  }
  
  div[style*="display: flex; gap: 1rem; justify-content: center"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .thank-you-content > div[style*="display: flex"] {
    flex-direction: column !important;
  }
}

.cart-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cart-modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  position: relative;
  animation: slideUp 0.3s ease;
  text-align: center;
}

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

.cart-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.cart-modal-close:hover {
  color: var(--accent);
}

.cart-modal-body {
  padding: 1rem 0;
}

.cart-modal-body h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.cart-modal-body p {
  color: var(--text);
  margin: 0;
}