:root {
  --dark-bg: #0a0a1a;
  --darker-bg: #050510;
  --accent-blue: #4FC3F7;
  --accent-cyan: #00BCD4;
  --accent-purple: #9C27B0;
  --accent-gold: #FFD700;
  --accent-mint: #00C896;
  --text-primary: #E3F2FD;
  --text-secondary: #B3E5FC;
  --card-bg: rgba(26, 26, 46, 0.8);
  --card-border: rgba(79, 195, 247, 0.2);
  --shadow-glow: 0 0 20px rgba(79, 195, 247, 0.3);
  --shadow-deep: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
  font-family: 'IBM Plex Sans JP', sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  padding-top: 80px;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.navbar {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--card-border);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-deep);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(79, 195, 247, 0.5);
  transition: all 0.3s ease;
  margin-right: 2rem;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 0 0 40px rgba(79, 195, 247, 0.8);
}

.navbar-nav {
  flex: 1;
  justify-content: center;
  margin: 0 1rem;
  gap: 0.5rem;
}

.navbar-nav .nav-item {
  flex: 1;
  text-align: center;
  max-width: 110px;
  margin: 0 0.2rem;
}

.nav-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.2rem !important;
  color: var(--text-secondary) !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 35px;
  white-space: nowrap;
  line-height: 1.2;
  border-radius: 8px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transition: left 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-blue) !important;
  transform: translateY(-1px);
  background: rgba(79, 195, 247, 0.1);
}

.nav-link:hover::before {
  left: 0;
}

.search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  min-width: 200px;
}

.search-input::placeholder {
  color: rgba(179, 229, 252, 0.7);
}

.search-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 0.2rem rgba(79, 195, 247, 0.25), var(--shadow-glow);
  color: var(--text-primary);
}

.cart-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-left: 1rem;
}

.cart-buttons button {
  background: rgba(79, 195, 247, 0.15);
  border: 1px solid var(--card-border);
  color: var(--accent-blue);
  padding: 0.6rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-buttons button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.2), transparent);
  transition: left 0.5s ease;
}

.cart-buttons button:hover {
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cart-buttons button:hover::before {
  left: 100%;
}

.cart-buttons .snipcart-checkout i {
  display: none;
}

.cart-buttons .snipcart-checkout {
  font-weight: 700;
  font-size: 1rem;
}

.cart-buttons .snipcart-customer-signin {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.carousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  max-height: 400px;
}

.carousel-item {
  position: relative;
  height: 400px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.6) 70%,
    rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 15px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(79, 195, 247, 0.4);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(79, 195, 247, 0.3);
}

.carousel-caption h1,
.carousel-caption h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #ffffff !important;
  text-shadow: 
    4px 4px 8px rgba(0, 0, 0, 1),
    2px 2px 4px rgba(0, 0, 0, 1),
    1px 1px 2px rgba(0, 0, 0, 1);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  letter-spacing: 1px;
  -webkit-text-stroke: none;
  filter: none;
}

.carousel-caption p {
  font-size: 1.3rem;
  color: #ffffff !important;
  text-shadow: 
    3px 3px 6px rgba(0, 0, 0, 1),
    1px 1px 3px rgba(0, 0, 0, 1),
    0.5px 0.5px 1px rgba(0, 0, 0, 1);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  font-weight: 600;
  line-height: 1.6;
  -webkit-text-stroke: none;
  filter: none;
}

.carousel-caption .btn {
  font-size: 1.2rem;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-shadow: none;
  animation: fadeInUp 1s ease-out 0.4s both;
  color: #ffffff;
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-cyan));
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 4px 15px rgba(79, 195, 247, 0.6),
    0 0 40px rgba(79, 195, 247, 0.4),
    0 0 80px rgba(79, 195, 247, 0.2);
  transition: all 0.3s ease;
}

.carousel-caption .btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 6px 20px rgba(79, 195, 247, 0.8),
    0 0 50px rgba(79, 195, 247, 0.5),
    0 0 100px rgba(79, 195, 247, 0.3);
  background: linear-gradient(45deg, var(--accent-cyan), var(--accent-blue));
}

.carousel-indicators {
  display: none !important;
}

.carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(79, 195, 247, 0.4);
  transition: all 0.3s ease;
  margin: 0 0.3rem;
}

.carousel-indicators button.active {
  background: var(--accent-blue);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(79, 195, 247, 0.7);
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 55px;
  height: 55px;
  background: rgba(79, 195, 247, 0.25);
  border-radius: 50%;
  border: 2px solid rgba(79, 195, 247, 0.4);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 3;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(79, 195, 247, 0.5);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: 25px;
}

.carousel-control-next {
  right: 25px;
}

.category-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
  border-color: var(--accent-blue);
}

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

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.category-card .card-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 78, 0.9) 100%);
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card .card-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.category-card .card-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.category-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.05) 0%, rgba(156, 39, 176, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
  border-color: var(--accent-blue);
}

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

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-card .card-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 78, 0.9) 100%);
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .card-title {
  margin-bottom: 1rem;
}

.product-card .card-title a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--accent-blue);
  transition: color 0.3s ease;
  font-size: 1.3rem;
  text-decoration: none;
}

.product-card .card-title a:hover {
  color: var(--accent-cyan);
}

.product-card .card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card .price {
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-card .btn {
  align-self: stretch;
  margin-top: auto;
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow), var(--shadow-deep);
  border-color: var(--accent-mint);
}

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

.event-card .card-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(42, 42, 78, 0.9) 100%);
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-card h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--accent-mint);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.event-card .card-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
  flex: 1;
}

.event-card .event-time {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.event-card .event-time i {
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

.event-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

section h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--accent-blue);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 2px;
}

.footer-area {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  color: var(--text-primary);
  font-family: 'IBM Plex Sans JP', sans-serif;
  border-top: 1px solid var(--card-border);
}

.footer-box {
  padding: 2rem 1rem;
}

.footer-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-address {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-address i {
  color: var(--accent-mint);
  width: 20px;
  margin-right: 8px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-mint);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-divider {
  border-color: var(--card-border);
  margin: 2rem 0;
}

.copyright {
  color: rgba(179, 229, 252, 0.6);
  font-size: 0.9rem;
}

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

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

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

.puzzle-piece {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-cyan));
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.puzzle-piece:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.puzzle-piece:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.puzzle-piece:nth-child(3) {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

.categories-section,
.featured-products,
.newsletter-section,
.events-section {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.categories-section {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.3) 0%, rgba(26, 26, 46, 0.3) 100%);
  border-radius: 20px;
  padding: 3rem 0;
}

.featured-products {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.2) 0%, rgba(42, 42, 78, 0.2) 100%);
  border-radius: 20px;
  padding: 3rem 0;
}

.events-section {
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
  border-radius: 20px;
  padding: 3rem 0;
}

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

.row {
  margin: 0 -0.75rem;
}

.row > * {
  padding: 0 0.75rem;
}

.col-md-4,
.col-md-6 {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.6rem;
    margin-right: 1rem;
  }
  
  body {
    padding-top: 65px;
  }
  
  .navbar {
    padding: 0.6rem 0;
  }
  
  .navbar-nav {
    margin: 0 0.5rem;
    gap: 0.3rem;
  }
  
  .navbar-nav .nav-item {
    max-width: 90px;
    margin: 0 0.1rem;
  }
  
  .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.1rem !important;
    min-height: 32px;
    border-radius: 6px;
  }
  
  .search-input {
    min-width: 150px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .cart-buttons {
    gap: 0.5rem;
    margin-left: 0.5rem;
  }
  
  .cart-buttons button {
    min-width: 38px;
    height: 38px;
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  
  .carousel {
    max-height: 320px;
  }
  
  .carousel-item {
    height: 320px;
  }
  
  .carousel-caption {
    padding: 1.5rem;
    width: 95%;
    background: rgba(0, 0, 0, 0.9);
  }
  
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-shadow: 
      3px 3px 6px rgba(0, 0, 0, 1),
      1px 1px 3px rgba(0, 0, 0, 1);
    -webkit-text-stroke: none;
    filter: none;
  }
  
  .carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 1),
      0.5px 0.5px 1px rgba(0, 0, 0, 1);
    -webkit-text-stroke: none;
    filter: none;
  }
  
  .carousel-caption .btn {
    font-size: 1rem;
    padding: 0.7rem 2rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  
  .carousel-control-prev {
    left: 15px;
  }
  
  .carousel-control-next {
    right: 15px;
  }
  
  .category-card,
  .product-card,
  .event-card {
    margin-bottom: 2rem;
  }
  
  .category-card img {
    height: 200px;
  }
  
  .product-card img {
    height: 220px;
  }
  
  .category-card .card-body,
  .product-card .card-body,
  .event-card .card-body {
    padding: 1rem;
  }
  
  .category-card .card-title {
    font-size: 1.3rem;
  }
  
  .product-card .card-title a {
    font-size: 1.1rem;
  }
  
  .event-card h3 {
    font-size: 1.2rem;
  }
  
  .price {
    font-size: 1.2rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
  .newsletter-section .form-control {
    margin-bottom: 1rem;
  }
  
  .newsletter-section .btn {
    width: 100%;
  }
  
  .categories-section,
  .featured-products,
  .newsletter-section,
  .events-section {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
  }
  
  .categories-section,
  .featured-products,
  .events-section {
    padding: 2rem 0;
  }
  
  .col-md-4,
  .col-md-6 {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 60px;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
    margin-right: 0.5rem;
  }
  
  .navbar-nav {
    margin: 0 0.2rem;
    gap: 0.2rem;
  }
  
  .navbar-nav .nav-item {
    max-width: 80px;
    margin: 0 0.05rem;
  }
  
  .nav-link {
    font-size: 0.75rem;
    padding: 0.3rem 0.05rem !important;
    min-height: 28px;
    border-radius: 4px;
  }
  
  .search-input {
    min-width: 120px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .cart-buttons {
    gap: 0.3rem;
    margin-left: 0.3rem;
  }
  
  .cart-buttons button {
    min-width: 32px;
    height: 32px;
    font-size: 0.8rem;
    padding: 0.4rem;
  }
  
  .carousel {
    max-height: 280px;
  }
  
  .carousel-item {
    height: 280px;
  }
  
  .carousel-caption {
    padding: 1rem;
    width: 98%;
    background: rgba(0, 0, 0, 0.95);
  }
  
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ffffff !important;
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 1),
      0.5px 0.5px 1px rgba(0, 0, 0, 1);
    -webkit-text-stroke: none;
    filter: none;
  }
  
  .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #ffffff !important;
    text-shadow: 
      1px 1px 3px rgba(0, 0, 0, 1),
      0.5px 0.5px 1px rgba(0, 0, 0, 1);
    -webkit-text-stroke: none;
    filter: none;
  }
  
  .carousel-caption .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
  .category-card img {
    height: 180px;
  }
  
  .product-card img {
    height: 200px;
  }
  
  .category-card .card-body,
  .product-card .card-body,
  .event-card .card-body {
    padding: 0.8rem;
  }
  
  .category-card .card-title {
    font-size: 1.2rem;
  }
  
  .product-card .card-title a {
    font-size: 1rem;
  }
  
  .event-card h3 {
    font-size: 1.1rem;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
  
  .btn-outline-primary {
    padding: 0.6rem 1.5rem;
  }
  
  .categories-section,
  .featured-products,
  .newsletter-section,
  .events-section {
    margin-bottom: 2rem;
    padding: 1rem 0;
  }
  
  .categories-section,
  .featured-products,
  .events-section {
    padding: 1.5rem 0;
  }
  
  .col-md-4,
  .col-md-6 {
    margin-bottom: 1rem;
  }
}
