/* Custom Styles for Clothing Boutique */
.card {
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}
.card:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(34, 34, 59, 0.18);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.slide-in {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 1s forwards;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
.slider-btn {
  background: rgba(255,255,255,0.8);
  color: #3b82f6;
  font-weight: bold;
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(34, 34, 59, 0.06);
  transition: background 0.2s, color 0.2s;
}
.slider-btn:hover {
  background: #3b82f6;
  color: #fff;
}
.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.burger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background: #2563eb;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.slider-full {
  width: 100vw;
  max-width: 100vw;
  height: 60vh;
  min-height: 220px;
  max-height: 420px;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(34, 34, 59, 0.18);
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-full img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  background: #f3f4f6;
  display: block;
}
@media (max-width: 768px) {
  .slider-full {
    height: 36vh;
    min-height: 180px;
    max-height: 220px;
  }
}
.social-icon {
  transition: transform 0.2s, color 0.2s;
  color: #2563eb;
  font-size: 2rem;
  margin-right: 1.2rem;
  display: inline-block;
}
.social-icon:last-child { margin-right: 0; }
.social-icon:hover {
  transform: scale(1.2) rotate(-8deg);
  color: #22c55e;
}
@media (max-width: 767px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 50;
    padding: 1rem 0;
  }
  nav ul.open-mobile-nav {
    display: flex;
  }
  nav ul li {
    margin: 0.5rem 0;
    text-align: center;
  }
}
#cart-sidebar {
  right: 0;
  top: 0;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0,0,0,0.08);
  z-index: 100;
  width: 22rem;
  max-width: 100vw;
  transform: translateX(100%);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
#cart-sidebar.open {
  transform: translateX(0);
}
#cart-overlay {
  display: none;
}
#cart-overlay.open {
  display: block;
}
#cart-count {
  font-size: 0.8rem;
  min-width: 1.3rem;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 500px) {
  #cart-sidebar {
    width: 100vw;
    max-width: 100vw;
  }
} 