/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fafafa;
  overflow-x: hidden;
  padding-top: 0;
  margin-top: 0;
}

body.no-scroll {
  overflow: hidden;
}

/* HEADER - ENHANCED PREMIUM STYLING */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  border-bottom: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transform: translateY(0);
  width: 100%;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.header.hide {
  transform: translateY(-100%);
  box-shadow: none;
}

/* SCROLL PROGRESS BAR */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #d63384, #ff69b4);
  width: 0%;
  transition: width 0.1s linear;
}

.header.progress::after {
  width: var(--scroll-progress, 0%);
}

/* TOP BAR */
.top-bar {
  width: 100%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  font-size: 14px;
  padding: 10px 5%;
  text-align: center;
  position: relative;
  z-index: 10;
  transition: transform 0.4s ease;
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(214, 51, 132, 0.15);
}

.top-bar.hide {
  transform: translateY(-100%);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
}

.top-bar p {
  margin: 0;
  font-weight: 500;
}

.top-bar-link {
  background: #fff;
  color: #d63384;
  padding: 5px 15px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.top-bar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d63384;
  transition: width 0.3s ease;
}

.top-bar-link:hover::after {
  width: 100%;
}

.top-bar-link:hover {
  background: #f0f0f0;
  color: #b82c6e;
  transform: translateY(-2px);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: slideInText 0.6s ease-out;
}

/* CONTAINER */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* LOGO IMAGE */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV */
.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  flex: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d63384;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #d63384;
}

.nav a:hover::after {
  width: 100%;
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px 0;
  font-size: 13px;
  color: #666;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideInText 0.6s ease-out;
}

.trust-item.verified {
  color: #4CAF50;
  font-weight: 600;
}

.counter {
  font-size: 18px;
  font-weight: 700;
  color: #d63384;
}

.customer-count {
  display: inline-block;
  padding: 8px 12px;
  background: linear-gradient(135deg, #fff3f8 0%, #ffe4f0 100%);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #d63384;
  border: 1px solid #f5ccdc;
}

/* HEADER RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* CART ICON */
.cart-icon {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  transition: 0.3s;
}

.cart-icon:hover {
  transform: scale(1.1);
}

#cartCount {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #d63384;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 600;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.4s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* NAV CLOSE BUTTON */
.nav-close {
  display: none;
  position: fixed;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  font-size: 36px;
  color: #d63384;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  padding: 5px 10px;
  line-height: 1;
  font-weight: 300;
}

.nav-close:active,
.nav-close:focus {
  outline: none;
}

.nav-close:hover {
  color: #b82c6e;
  transform: scale(1.3) rotate(90deg);
}

@media (max-width: 768px) {
  .nav-close {
    display: block;
  }
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== CONFIRMATION MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  text-align: center;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.modal-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.cancel-btn {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}

.cancel-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.confirm-btn {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.confirm-btn:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

@media (max-width: 480px) {
  .modal-content {
    padding: 30px;
  }

  .modal-content h3 {
    font-size: 18px;
  }

  .modal-content p {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .modal-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav ul {
    gap: 15px;
  }
  
  .nav a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  /* TOP BAR RESPONSIVE */
  .top-bar {
    padding: 6px 3%;
    font-size: 12px;
  }

  .top-bar-container {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar p {
    font-size: 11px;
  }

  .top-bar-link {
    padding: 3px 10px;
    font-size: 11px;
  }

  /* HEADER RESPONSIVE */
  .container {
    padding: 12px 3%;
    gap: 10px;
  }

  .logo img {
    height: 45px;
  }

  /* NAV RESPONSIVE */
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    padding-top: 80px;
    z-index: 1000;
    transition: right 0.4s ease;
    flex-direction: column;
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-top: 20px;
  }

  .nav a {
    display: block;
    font-size: 16px;
    padding: 10px;
  }

  /* HEADER RIGHT RESPONSIVE */
  .header-right {
    gap: 10px;
  }

  .cart-icon {
    font-size: 18px;
  }

  #cartCount {
    font-size: 10px;
    padding: 1px 4px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 5px 2%;
  }

  .top-bar-container {
    flex-direction: column-reverse;
  }

  .top-bar p {
    font-size: 10px;
  }

  .container {
    padding: 10px 2%;
  }

  .logo img {
    height: 40px;
  }

  .nav {
    width: 85%;
  }

  .nav ul {
    gap: 15px;
    padding: 0 10px;
  }

  .nav a {
    font-size: 15px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .cart-icon {
    font-size: 16px;
  }

  #cartCount {
    font-size: 9px;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  min-height: 90vh;
  background: linear-gradient(135deg, #f9f9f9 0%, #fafafa 100%);
  gap: 40px;
  margin-top: 130px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 51, 132, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  max-width: 500px;
  flex: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero p {
  margin-bottom: 25px;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  font-weight: 400;
}

.hero button,
.btn-primary {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero button::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero button:active::before,
.btn-primary:active::before {
  animation: ripple 0.6s ease-out;
}

.hero button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(214, 51, 132, 0.2);
  transition: transform 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-image:hover img {
  transform: translateY(-5px);
  animation-play-state: paused;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(214, 51, 132, 0.3);
}

@media (max-width: 1024px) {
  .hero {
    margin-top: 110px;
    padding: 50px 4%;
    gap: 30px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    padding: 40px 5%;
    gap: 25px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-image {
    width: 100%;
  }

  .hero-image img {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    margin-top: 90px;
    padding: 30px 3%;
    min-height: auto;
  }

  .hero h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .hero button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 1;
  animation: fadeIn 1s ease forwards;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes staggerFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.4; }
}

@keyframes slideInText {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 51, 132, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(214, 51, 132, 0); }
}

@keyframes underlineExpand {
  from { width: 0; }
  to { width: 100%; }
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  left: auto;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: right 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.cart-sidebar.active {
  right: 0;
  left: auto;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #d63384;
  padding-bottom: 15px;
}

.cart-header h3 {
  margin: 0;
  font-size: 20px;
  color: #333;
}

.close-btn {
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  color: #d63384;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #b82c6e;
  transform: scale(1.25) rotate(90deg);
}

#cartItems {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  padding-right: 3px;
}

#cartItems::-webkit-scrollbar {
  width: 6px;
}

#cartItems::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

#cartItems::-webkit-scrollbar-thumb {
  background: #d63384;
  border-radius: 3px;
}

#cartItems::-webkit-scrollbar-thumb:hover {
  background: #b82c6e;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fafafa;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-item p {
  margin: 0;
  flex: 1;
  min-width: 120px;
  font-weight: 500;
}

.cart-item div {
  display: flex;
  gap: 5px;
  align-items: center;
}

.cart-item button {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item .increase:hover,
.cart-item .decrease:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: scale(1.15);
}

.cart-item .remove {
  background: #ff3b3b;
  padding: 6px 10px;
}

.cart-item .remove:hover {
  background: #e60000;
  transform: scale(1.15);
}

.empty-cart {
  text-align: center;
  color: #999;
  font-style: italic;
  margin-top: 30px;
}

#cartTotal,
.cart-total-text {
  font-weight: 600;
  color: #d63384;
}

.clear-cart-btn,
#checkoutBtn {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  padding: 14px;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.25);
}

.clear-cart-btn:hover,
#checkoutBtn:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

.clear-cart-btn:active,
#checkoutBtn:active {
  transform: translateY(0);
}

.cart-total {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.cart-total span {
  color: #d63384;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .cart-sidebar {
    width: 350px;
  }
}

@media (max-width: 768px) {
  .cart-sidebar {
    width: 100vw;
    max-width: 100%;
    padding: 16px 14px;
  }

  .cart-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .cart-header h3 {
    font-size: 18px;
  }

  .close-btn {
    font-size: 26px;
  }

  .cart-item {
    font-size: 13px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .cart-item button {
    padding: 5px 8px;
    font-size: 11px;
    min-width: 28px;
    height: 28px;
  }

  .cart-item .remove {
    padding: 5px 8px;
  }

  .clear-cart-btn,
  #checkoutBtn {
    padding: 12px;
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .cart-sidebar {
    width: 100vw;
    max-width: 100vw;
    right: -100vw;
    padding: 14px 12px;
    top: 0;
  }

  .cart-sidebar.active {
    right: 0;
  }

  .cart-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .cart-header h3 {
    font-size: 16px;
  }

  .close-btn {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  #cartItems {
    margin-bottom: 14px;
  }

  .cart-item {
    font-size: 12px;
    padding: 8px;
    margin-bottom: 8px;
    gap: 6px;
  }

  .cart-item p {
    min-width: 80px;
  }

  .cart-item div {
    gap: 4px;
  }

  .cart-item button {
    padding: 4px 6px;
    font-size: 10px;
    min-width: 26px;
    height: 26px;
  }

  .cart-item .remove {
    padding: 4px 6px;
  }

  .cart-total {
    padding: 10px;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .cart-total span {
    font-size: 16px;
  }

  .clear-cart-btn,
  #checkoutBtn {
    padding: 11px;
    font-size: 13px;
    margin-top: 6px;
  }
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  padding: 80px 5%;
  background: #fff;
  margin-top: 0;
}

.container-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 1 / 1;
  backdrop-filter: blur(5px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-card:hover img {
  transform: scale(1.15);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(214, 51, 132, 0.6) 50%, rgba(214, 51, 132, 0.8) 100%);
}

.category-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .container-categories {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .categories {
    padding: 60px 4%;
  }
}

@media (max-width: 768px) {
  .container-categories {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
  }

  .categories {
    padding: 40px 5%;
  }

  .category-overlay h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .categories {
    padding: 30px 3%;
  }

  .category-card {
    border-radius: 8px;
  }

  .category-overlay {
    padding: 15px;
  }

  .category-overlay h3 {
    font-size: 13px;
  }
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 80px 5%;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #d63384;
  position: relative;
  animation: slideInText 0.8s ease-out;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d63384, #ff69b4);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
  animation: underlineExpand 0.8s ease-out 0.2s forwards;
  transform-origin: center;
  width: 0;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover::after {
  opacity: 0.3;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card .sold-out {
  position: absolute;
  top: 15px;
  left: -40px;
  background: #ff3b3b;
  color: #fff;
  padding: 5px 50px;
  font-size: 12px;
  font-weight: 700;
  transform: rotate(-45deg);
  z-index: 10;
}

.product-card .best-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #d63384, #ff69b4);
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(214, 51, 132, 0.3);
  animation: pulseGlow 2s infinite;
}

.product-card .limited-stock {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff9500;
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  z-index: 10;
  animation: pulseGlow 1.5s infinite;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px;
  color: #333;
}

.product-card .price {
  font-size: 16px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 15px;
}

.product-card button,
.product-card .add-to-cart-btn {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.25);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.product-card button::before,
.product-card .add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-card button:active::before,
.product-card .add-to-cart-btn:active::before {
  animation: ripple 0.6s ease-out;
}

.product-card button:hover:not(:disabled),
.product-card .add-to-cart-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

.product-card .quick-view-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #d63384;
  border: 2px solid #d63384;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  width: auto;
  margin: 0 auto 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.product-card .quick-view-btn:hover {
  background: #d63384;
  color: #fff;
  transform: scale(1.05);
}

.product-card button:disabled,
.product-card .add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products {
    padding: 60px 3%;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .product-card img {
    height: 200px;
  }

  .product-card h3 {
    font-size: 14px;
    margin: 10px 0 3px;
  }

  .product-card .price {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .products {
    padding: 40px 3%;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .product-card img {
    height: 160px;
  }
}

/* ===== SHOP ALL BUTTON ===== */
.shop-all-btn-container {
  text-align: center;
  margin-top: 50px;
}

.shop-all-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
  letter-spacing: 0.5px;
  border: 2px solid transparent;
}

.shop-all-btn:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

@media (max-width: 768px) {
  .shop-all-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .shop-all-btn-container {
    margin-top: 35px;
  }

  .shop-all-btn {
    padding: 11px 25px;
    font-size: 13px;
  }
}

/* ===== BRAND STORY SECTION ===== */
.brand-story {
  padding: 100px 5%;
  background: #fff;
  margin-top: 0;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-image {
  flex: 1;
  text-align: center;
}

.brand-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(214, 51, 132, 0.15);
  transition: transform 0.4s ease;
}

.brand-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(214, 51, 132, 0.2);
}

.brand-content {
  flex: 1;
}

.brand-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.brand-highlight {
  font-size: 18px;
  color: #d63384;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.brand-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.brand-btn {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  padding: 14px 35px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
  letter-spacing: 0.5px;
}

.brand-btn:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

@media (max-width: 1024px) {
  .brand-story {
    padding: 80px 4%;
  }

  .brand-container {
    gap: 40px;
  }

  .brand-content h2 {
    font-size: 28px;
  }

  .brand-highlight {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .brand-story {
    padding: 60px 5%;
  }

  .brand-container {
    flex-direction: column;
    gap: 30px;
  }

  .brand-content h2 {
    font-size: 24px;
  }

  .brand-highlight {
    font-size: 14px;
  }

  .brand-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .brand-story {
    padding: 40px 3%;
  }

  .brand-content h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .brand-highlight {
    font-size: 13px;
  }

  .brand-content p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .brand-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}



/* TESTIMONIAL SECTION */
.testimonials {
  padding: 100px 5%;
  background: #f9f9f9;
  text-align: center;
}

.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 40px;
  color: #d63384;
  opacity: 0.3;
}

.testimonial-verified {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #4CAF50;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  font-weight: bold;
}

/* CUSTOMER IMAGE */
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #d63384;
}

/* STARS */
.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

/* NAME */
.testimonial-card h4 {
  color: #d63384;
  font-weight: 600;
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonials {
    padding: 70px 5%;
  }

  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonial-card img {
    width: 70px;
    height: 70px;
  }
}

/* VIDEO SECTION */
.video-showcase {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.4s ease;
}

.video-card img {
  width: 100%;
  display: block;
}

/* HOVER EFFECT */
.video-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(214, 51, 132, 0.9);
  color: #fff;
  font-size: 24px;
  padding: 15px 18px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.video-card:hover .play-btn {
  background: #d63384;
  transform: translate(-50%, -50%) scale(1.1);
}

/* MODAL */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.video-modal.active {
  display: flex;
}

/* VIDEO PLAYER */
.video-modal video {
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
}

/* CLOSE BUTTON */
.close-video {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}



/* WHY US */
.why-us {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.why-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.why-card {
  padding: 25px;
  border-radius: 12px;
  background: #f9f9f9;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.why-card h3 {
  color: #d63384;
  margin-bottom: 10px;
}



/* before & after */
.before-after {
  padding: 80px 5%;
  background: #f9f9f9;
  text-align: center;
}

.ba-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ba-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

.ba-card img {
  width: 50%;
  object-fit: cover;
}

.ba-card img:first-child {
  border-right: 2px solid #fff;
}

/* BEST SELLERS SECTION */
.best-sellers {
  padding: 80px 5%;
  background: #fff;
}

.best-sellers .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* GRID */
.best-sellers .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* PRODUCT CARD */
.best-sellers .product-card {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.best-sellers .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.best-sellers .product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* TITLE */
.best-sellers .product-card h3 {
  font-size: 15px;
  margin: 10px 0;
}

/* PRICE */
.best-sellers .price {
  color: #d63384;
  font-weight: 600;
  margin-bottom: 10px;
}

/* BUTTON */
.best-sellers .product-card button {
  background: #d63384;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.best-sellers .product-card button:hover {
  background: #b82c6e;
  transform: scale(1.03);
}

/* BEST SELLER BADGE */
.best-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d63384;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .best-sellers {
    padding: 60px 5%;
  }

  .best-sellers .section-title {
    font-size: 22px;
  }
}


/* PROMO SLIDER */
.promo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 600px; /* max height for large screens */
  border-radius: 12px;
}

.slider-container {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: auto; /* make image responsive */
  max-height: 600px; /* maintain large screen limit */
  object-fit: cover; /* crop nicely if needed */
  display: block;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 20px 30px;
  border-radius: 12px;
  width: 80%;
}

.slide-overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.slide-overlay p {
  font-size: 18px;
  margin-bottom: 15px;
}

.slide-overlay .btn {
  display: inline-block;
  background: #d63384;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.slider-controls span {
  pointer-events: all;
  cursor: pointer;
  font-size: 36px;
  color: #fff;
  margin: 0 15px;
  user-select: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .slide-overlay h2 {
    font-size: 24px;
  }
  .slide-overlay p {
    font-size: 14px;
  }
  .slide img {
    max-height: 300px; /* smaller height for mobile */
  }
}

.faq {
  padding: 80px 5%;
  background: #fff;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}

.faq-question span {
  font-size: 20px;
  color: #d63384;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: #555;
  transition: max-height 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 100px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 5%;
  }
}


/* ===== ABOUT PAGE STYLES ===== */

/* ABOUT HERO */
.about-hero {
  margin-top: 130px;
  padding: 100px 5%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%), url('./img/premium-skincare-products-melque-beauty-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  animation: slideInText 0.8s ease-out;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.about-hero p {
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 5%;
  background: #fff;
}

.about-section:nth-child(even) {
  background: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* STORY SECTION */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(214, 51, 132, 0.2);
  animation: float 6s ease-in-out infinite;
}

.story-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  animation: slideInText 0.8s ease-out;
}

.story-highlight {
  font-size: 18px;
  color: #d63384;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.story-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* MISSION & VALUES */
.mission-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: linear-gradient(135deg, #fff3f8 0%, #ffe4f0 100%);
  border: 2px solid #f5ccdc;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 5px 20px rgba(214, 51, 132, 0.1);
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}

.mission-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 15px;
}

.mission-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  animation: staggerFadeIn 0.6s ease-out forwards;
  border-top: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.15);
  border-top-color: #d63384;
}

.value-icon {
  font-size: 40px;
  margin-bottom: 15px;
  animation: float 6s ease-in-out infinite;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.15);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: pulseGlow 2s infinite;
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* TEAM SECTION */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.15);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(214, 51, 132, 0.9) 100%);
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
}

.team-overlay p {
  font-size: 14px;
  font-weight: 600;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 20px 20px 5px;
}

.team-role {
  font-size: 13px;
  color: #d63384;
  font-weight: 600;
  padding: 0 20px;
}

.team-bio {
  font-size: 13px;
  color: #666;
  padding: 10px 20px 20px;
  line-height: 1.6;
}

/* STATS SECTION */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.3);
  animation: staggerFadeIn 0.6s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  animation: countUp 2s ease-out;
}

.stat-card p {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* TESTIMONIALS HIGHLIGHT */
.testimonials-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-highlight {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid #d63384;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: staggerFadeIn 0.6s ease-out forwards;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.15);
}

.quote-mark {
  font-size: 60px;
  color: #d63384;
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial-highlight p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-highlight h4 {
  font-size: 14px;
  color: #d63384;
  font-weight: 700;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 100px 5%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 36px;
  border: 2px solid #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #d63384;
  transform: translateY(-3px);
}

/* CTA BUTTONS STYLING */
.cta-section .btn-primary {
  background: #fff;
  color: #d63384;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE ABOUT */
@media (max-width: 768px) {
  .about-hero {
    margin-top: 100px;
    padding: 60px 5%;
    min-height: 40vh;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-section {
    padding: 60px 5%;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-content h2 {
    font-size: 28px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-section {
    padding: 60px 5%;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    margin-top: 90px;
    padding: 40px 3%;
    min-height: 30vh;
  }

  .about-hero h1 {
    font-size: 24px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .about-section {
    padding: 40px 3%;
  }

  .story-content h2 {
    font-size: 22px;
  }

  .story-highlight {
    font-size: 14px;
  }

  .story-content p {
    font-size: 13px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .testimonials-highlight-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* ===== SHOP PAGE STYLES ===== */

/* SHOP HERO */
.shop-hero {
  margin-top: 130px;
  padding: 80px 5%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.shop-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  animation: slideInText 0.8s ease-out;
}

.shop-hero p {
  font-size: 18px;
  position: relative;
  z-index: 2;
  animation: slideInText 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* SHOP SECTION */
.shop-section {
  padding: 60px 5%;
  background: #fafafa;
  min-height: 70vh;
}

.shop-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* SHOP SIDEBAR */
.shop-sidebar {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
  position: sticky;
  top: 150px;
}

.shop-sidebar h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #d63384;
  border-bottom: 2px solid #d63384;
  padding-bottom: 10px;
}

.category-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  background: #f9f9f9;
  border: 2px solid transparent;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #555;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.filter-btn:hover {
  background: #fff3f8;
  border-color: #d63384;
  color: #d63384;
}

.filter-btn.active {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border-color: #d63384;
}

.filter-count {
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.3);
}

.filter-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.filter-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.sort-select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #eee;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:hover,
.sort-select:focus {
  border-color: #d63384;
  outline: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  transition: color 0.3s ease;
}

.checkbox input {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: #d63384;
}

.checkbox:hover {
  color: #d63384;
}

/* SHOP MAIN */
.shop-main {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  min-height: 60vh;
}

.shop-top {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.shop-top h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}

.product-count {
  font-size: 14px;
  color: #999;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
  width: 100%;
}

/* SHOW MORE BUTTON */
.show-more-btn {
  grid-column: 1 / -1;
  padding: 14px 40px;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.show-more-btn:hover {
  background: linear-gradient(135deg, #c0227a 0%, #d63384 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
}

.show-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(214, 51, 132, 0.3);
}

/* NO PRODUCTS */
.no-products {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.no-products p {
  font-size: 18px;
  margin-bottom: 20px;
}

.no-products .btn-primary {
  display: inline-block;
}

/* QUICK VIEW MODAL */
.quick-view-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
}

.quick-view-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quick-view-details h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.quick-view-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #999;
}

.quick-view-rating .stars {
  font-size: 16px;
}

.quick-view-price {
  font-size: 20px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 15px;
}

.quick-view-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.quick-view-specs {
  margin-bottom: 25px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.quick-view-specs p {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.quick-view-specs p:last-child {
  margin-bottom: 0;
}

.quick-view-actions {
  display: flex;
  gap: 15px;
}

.quick-view-actions button {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-view-actions .btn-primary {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
}

.quick-view-actions .btn-primary:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.4);
}

/* CART FEEDBACK */
.cart-feedback {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  animation: slideUp 0.3s ease;
  opacity: 0;
  z-index: 5000;
  transition: opacity 0.3s ease;
}

.cart-feedback.show {
  opacity: 1;
}

/* CLOSE MODAL */
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: #d63384;
  transform: scale(1.2) rotate(90deg);
}

/* RESPONSIVE SHOP */
@media (max-width: 1024px) {
  .shop-container {
    grid-template-columns: 220px 1fr;
    gap: 30px;
  }

  .shop-sidebar {
    top: 140px;
  }

  .shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    margin-top: 100px;
    padding: 50px 5%;
  }

  .shop-hero h1 {
    font-size: 32px;
  }

  .shop-hero p {
    font-size: 15px;
  }

  .shop-section {
    padding: 40px 3%;
  }

  .shop-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-sidebar {
    position: static;
  }

  .quick-view-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-main {
    padding: 20px;
  }

  .shop-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .shop-hero {
    margin-top: 90px;
    padding: 40px 3%;
  }

  .shop-hero h1 {
    font-size: 24px;
  }

  .shop-hero p {
    font-size: 13px;
  }

  .shop-section {
    padding: 30px 2%;
  }

  .shop-sidebar {
    padding: 15px;
  }

  .shop-sidebar h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .filter-btn {
    padding: 10px 12px;
    font-size: 13px;
  }

  .shop-main {
    padding: 15px;
    border-radius: 8px;
  }

  .shop-top h2 {
    font-size: 22px;
  }

  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .quick-view-content {
    padding: 0;
  }

  .close-modal {
    top: 15px;
    right: 15px;
    font-size: 24px;
  }
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 5% 30px 5%;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* FOOTER LOGO IMAGE */
.footer-logo img {
  width: 180px; /* BIG and clean */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

/* REMOVE OLD TEXT STYLES */
.footer-logo {
  margin-bottom: 5px;
}

/* ABOUT TEXT */
.footer-about p {
  line-height: 1.6;
  max-width: 300px;
  font-size: 14px;
  color: #fff;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #d63384;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-social .social-icons a {
  display: inline-block;
  color: #fff;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social .social-icons a:hover {
  color: #d63384;
}

.footer-newsletter {
  margin-top: 40px;
  text-align: center;
}

.footer-newsletter p {
  margin-bottom: 15px;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 10px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  flex: 1;
  min-width: 200px;
}

.newsletter-form button {
  background: #d63384;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #b82c6e;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}

.footer-copy a {
  color: #d63384;
  text-decoration: none;
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .newsletter-form {
    flex-direction: column;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* CONTACT HERO */
.contact-hero {
  margin-top: 130px;
  padding: 100px 5%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%), url('./img/premium-skincare-products-melque-beauty-hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  animation: slideInText 0.8s ease-out;
}

.contact-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 5%;
  background: #fff;
}

.contact-section:nth-child(even) {
  background: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* CONTACT INFO GRID */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.15);
}

.contact-icon {
  font-size: 48px;
  color: #d63384;
  margin-bottom: 20px;
  animation: float 6s ease-in-out infinite;
}

.contact-info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 15px;
}

.contact-detail {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-time {
  font-size: 13px;
  color: #999;
}

.contact-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

.contact-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #fff3f8;
  color: #d63384;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background: #d63384;
  color: #fff;
  transform: scale(1.1);
}

/* CONTACT CONTENT */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper,
.contact-map-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2,
.contact-map-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 10px;
}

.contact-form-wrapper p,
.contact-map-wrapper p {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d63384;
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #d63384;
}

.form-submit {
  margin-top: 10px;
}

.form-status {
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  display: none;
}

.form-status.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-status.form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* CONTACT MAP */
.contact-map {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-details {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.location-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

.location-details strong {
  color: #d63384;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 5%;
  background: #f9f9f9 !important;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: staggerFadeIn 0.6s ease-out forwards;
}

.faq-header {
  padding: 25px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-header:hover {
  background: #f9f9f9;
}

.faq-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.faq-header i {
  color: #d63384;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header {
  background: #d63384;
  color: #fff;
}

.faq-item.active .faq-header h4 {
  color: #fff;
}

.faq-item.active .faq-header i {
  color: #fff;
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-content p {
  padding: 25px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* CONTACT PAGE CTA */
.contact-section.cta-section {
  text-align: center;
  padding: 100px 5%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.contact-section.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-section.cta-section .btn-primary {
  background: #fff;
  color: #d63384;
}

.contact-section.cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE CONTACT */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    margin-top: 100px;
    padding: 60px 5%;
    min-height: 35vh;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-section {
    padding: 60px 5%;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 60px 5%;
  }

  .contact-section.cta-section {
    padding: 60px 5%;
  }

  .contact-section.cta-section h2 {
    font-size: 28px;
  }

  .contact-section.cta-section p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    margin-top: 90px;
    padding: 40px 3%;
    min-height: 25vh;
  }

  .contact-hero h1 {
    font-size: 24px;
  }

  .contact-hero p {
    font-size: 14px;
  }

  .contact-section {
    padding: 40px 3%;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-icon {
    font-size: 36px;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 20px 15px;
  }

  .contact-form-wrapper h2,
  .contact-map-wrapper h2 {
    font-size: 20px;
  }

  .contact-map {
    height: 300px;
  }

  .faq-header {
    padding: 20px;
  }

  .faq-content p {
    padding: 20px;
    font-size: 13px;
  }

  .contact-section.cta-section {
    padding: 40px 3%;
  }

  .contact-section.cta-section h2 {
    font-size: 22px;
  }

  .contact-section.cta-section p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================ */
/* CHECKOUT PAGE */
/* ============================================================ */

.checkout-page {
  background: #fafafa;
  min-height: calc(100vh - 300px);
}

/* CHECKOUT HEADER */
.checkout-header {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  padding: 60px 5%;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.breadcrumb {
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* CHECKOUT CONTENT */
.checkout-content {
  padding: 60px 5%;
}

.checkout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hide cart sidebar on checkout page */
.checkout-page .cart-sidebar {
  display: none !important;
}

/* ===== ORDER SUMMARY STYLES ===== */
.checkout-summary {
  position: sticky;
  top: 150px;
  height: fit-content;
}

.summary-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.summary-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 25px;
  border-bottom: 2px solid #d63384;
  padding-bottom: 15px;
}

/* ORDER ITEMS CONTAINER */
.summary-items {
  margin-bottom: 25px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.summary-items::-webkit-scrollbar {
  width: 5px;
}

.summary-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb {
  background: #d63384;
  border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb:hover {
  background: #b82c6e;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.item-row:hover {
  background: #fff3f8;
  border-left-color: #d63384;
  box-shadow: 0 3px 10px rgba(214, 51, 132, 0.1);
}

.item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.item-name {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  flex: 1;
}

.item-qty {
  background: #d63384;
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 10px;
  min-width: 35px;
  text-align: center;
}

.item-price {
  font-weight: 700;
  color: #d63384;
  font-size: 14px;
  min-width: 80px;
  text-align: right;
}

/* DELIVERY FEE SECTION */
.summary-field {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.summary-field label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}

.delivery-fee-info select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-fee-info select:hover,
.delivery-fee-info select:focus {
  border-color: #d63384;
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

/* ORDER SUMMARY TOTALS */
.summary-totals {
  background: linear-gradient(135deg, #fff3f8 0%, #ffe4f0 100%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #f5ccdc;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.total-row span:last-child {
  font-weight: 700;
  color: #1a1a1a;
}

.discount-row {
  color: #15803d !important;
  margin-bottom: 12px;
}

.total-row hr {
  border: none;
  border-top: 1px solid #d63384;
  margin: 15px 0 10px 0;
  opacity: 0.5;
}

.total-amount {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #d63384 !important;
  background: rgba(214, 51, 132, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  margin: 15px 0 !important;
}

.total-amount span:last-child {
  color: #d63384 !important;
  font-size: 20px;
}

/* PAYMENT METHOD SECTION */
.payment-method {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.payment-method h4 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.payment-option:hover {
  background: #fff3f8;
  border-color: #d63384;
}

.payment-option input {
  width: 18px;
  height: 18px;
  accent-color: #d63384;
  cursor: pointer;
}

.payment-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.payment-option i {
  color: #d63384;
  font-size: 16px;
}

/* CHECKOUT BTN */
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.btn-checkout:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

.btn-checkout:active {
  transform: translateY(0);
}

.btn-checkout:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* CHECKOUT FORM STYLES */
.checkout-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  border-radius: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label .required {
  color: #e74c3c;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d63384;
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
  background: #fffbfd;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ORDER REVIEW SECTION */
.order-summary-mini {
  background: linear-gradient(135deg, #fff3f8 0%, #ffe4f0 100%);
  border: 2px solid #f5ccdc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.order-summary-mini h3 {
  font-size: 16px;
  font-weight: 700;
  color: #d63384;
  margin-bottom: 15px;
}

.order-items-preview {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.order-items-preview::-webkit-scrollbar {
  width: 5px;
}

.order-items-preview::-webkit-scrollbar-track {
  background: transparent;
}

.order-items-preview::-webkit-scrollbar-thumb {
  background: #d63384;
  border-radius: 3px;
}

.preview-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(214, 51, 132, 0.2);
  color: #555;
}

.preview-item:last-child {
  border-bottom: none;
}

.preview-item strong {
  color: #d63384;
}

.preview-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  border-top: 1px solid rgba(214, 51, 132, 0.3);
  color: #d63384;
}

/* RESPONSIVE CHECKOUT */
@media (max-width: 1024px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .checkout-summary {
    position: static;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checkout-header {
    padding: 40px 5%;
  }

  .page-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .checkout-content {
    padding: 40px 3%;
  }

  .checkout-form {
    padding: 20px;
  }

  .form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .summary-box {
    padding: 20px;
  }

  .summary-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .item-row {
    padding: 12px;
    margin-bottom: 10px;
  }

  .item-name {
    font-size: 12px;
  }

  .item-qty,
  .item-price {
    font-size: 12px;
  }

  .item-qty {
    padding: 2px 6px;
    min-width: 30px;
  }

  .total-row {
    font-size: 13px;
  }

  .total-amount {
    font-size: 15px !important;
  }

  .total-amount span:last-child {
    font-size: 17px;
  }

  .btn-checkout {
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .checkout-header {
    padding: 30px 3%;
  }

  .page-title {
    font-size: 24px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .checkout-content {
    padding: 30px 2%;
  }

  .checkout-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .checkout-form {
    padding: 15px;
  }

  .form-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .form-section h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .form-grid {
    gap: 15px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-group textarea {
    min-height: 80px;
  }

  .summary-box {
    padding: 15px;
  }

  .summary-box h3 {
    font-size: 16px;
  }

  .summary-items {
    max-height: 200px;
  }

  .item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .item-info {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }

  .item-price {
    text-align: left;
    min-width: auto;
  }

  .total-row {
    font-size: 12px;
  }

  .total-amount {
    font-size: 13px !important;
  }

  .total-amount span:last-child {
    font-size: 15px;
  }

  .btn-checkout {
    padding: 12px;
    font-size: 14px;
  }

  .order-summary-mini {
    padding: 15px;
  }

  .order-summary-mini h3 {
    font-size: 14px;
  }

  .preview-item {
    font-size: 12px;
  }

  .preview-total {
    font-size: 13px;
  }
}

/* ===== ORDERS PAGE STYLES ===== */

/* ORDERS HERO */
.orders-hero {
  margin-top: 130px;
  padding: 100px 5%;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.orders-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.orders-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  animation: slideInText 0.8s ease-out;
}

.orders-hero p {
  font-size: 18px;
  position: relative;
  z-index: 2;
  animation: slideInText 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* ORDERS SECTION */
.orders-section {
  padding: 80px 5%;
  background: #fafafa;
  min-height: 70vh;
}

.orders-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ORDERS LIST */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ORDER CARD */
.order-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: staggerFadeIn 0.6s ease-out forwards;
  border-left: 4px solid #d63384;
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.15);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.order-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.order-items-preview {
  font-size: 13px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

.order-status {
  background: #4CAF50;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

/* ORDER DETAILS */
.order-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.detail-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.detail-value {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.detail-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.detail-item-row:last-child {
  border-bottom: none;
}

/* ORDER ACTIONS */
.order-actions {
  display: flex;
  gap: 12px;
}

.btn-view-details {
  padding: 10px 24px;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.25);
}

.btn-view-details:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 51, 132, 0.35);
}

/* EMPTY ORDERS */
.empty-orders {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.empty-orders a {
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.empty-orders a:hover {
  background: linear-gradient(135deg, #b82c6e 0%, #d43b8a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

/* ORDER DETAIL MODAL CONTENT */
.order-detail-header {
  margin-bottom: 20px;
}

#orderDetailContent p {
  margin: 10px 0;
  font-size: 14px;
}

#orderDetailContent h4 {
  font-size: 16px;
  font-weight: 700;
  color: #d63384;
  margin: 20px 0 15px 0;
}

#orderDetailContent strong {
  color: #333;
  font-weight: 600;
}

/* RESPONSIVE ORDERS */
@media (max-width: 768px) {
  .orders-hero {
    margin-top: 100px;
    padding: 60px 5%;
  }

  .orders-hero h1 {
    font-size: 32px;
  }

  .orders-hero p {
    font-size: 15px;
  }

  .orders-section {
    padding: 60px 3%;
  }

  .order-card {
    padding: 20px;
  }

  .order-header {
    flex-direction: column;
  }

  .order-details {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .orders-hero {
    margin-top: 90px;
    padding: 40px 3%;
  }

  .orders-hero h1 {
    font-size: 24px;
  }

  .orders-hero p {
    font-size: 13px;
  }

  .orders-section {
    padding: 40px 2%;
  }

  .order-card {
    padding: 15px;
  }

  .order-info h3 {
    font-size: 16px;
  }

  .order-items-preview {
    font-size: 12px;
  }

  .order-details {
    gap: 8px;
    padding: 12px;
  }

  .detail-item {
    gap: 5px;
  }

  .detail-label {
    font-size: 12px;
  }

  .detail-value {
    font-size: 13px;
  }

  .btn-view-details {
    padding: 9px 18px;
    font-size: 13px;
  }

  .empty-orders {
    padding: 40px 20px;
  }
}

/* CHECKOUT FORM WRAPPER */
.checkout-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.checkout-section {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #d63384 0%, transparent 100%);
}

/* ORDER REVIEW */
.order-items {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 12px;
}

.item-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.item-details p {
  font-size: 13px;
  color: #666;
  margin: 4px 0;
}

.item-total {
  font-size: 18px;
  font-weight: 700;
  color: #d63384;
}

.order-summary-mini {
  background: #fff3f7;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #d63384;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #1a1a1a;
}

/* CHECKOUT FORM */
.checkout-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: #fff;
  color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #d63384;
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

/* CHECKOUT SUMMARY */
.checkout-summary {
  position: sticky;
  top: 20px;
}

.summary-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.summary-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-box h3::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  border-radius: 4px;
}

/* SUMMARY ITEMS */
.summary-items {
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.summary-item-row:last-child {
  border-bottom: none;
}

.summary-item-row div {
  display: flex;
  flex-direction: column;
}

.summary-item-row small {
  color: #999;
  font-size: 12px;
}

/* DELIVERY FEE */
.summary-field {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.summary-field label {
  display: block;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 14px;
}

.summary-field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}

.summary-field select:focus {
  outline: none;
  border-color: #d63384;
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

/* SUMMARY TOTALS */
.summary-totals {
  margin-bottom: 25px;
  padding-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.total-row.total-amount {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 15px;
}

.summary-totals hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 15px 0;
}

/* PAYMENT METHOD */
.payment-method {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.payment-method h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-option:hover {
  background: #f3f0f7;
  border-color: #d63384;
}

.payment-option input[type="radio"] {
  margin-right: 12px;
  cursor: pointer;
}

.payment-option input[type="radio"]:checked ~ span {
  color: #d63384;
}

.payment-option span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #1a1a1a;
  transition: 0.3s;
}

/* CHECKOUT BUTTONS */
.btn-checkout {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d63384 0%, #e84a9e 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
}

.btn-checkout:active {
  transform: translateY(0);
}

.btn-continue-shopping {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  color: #d63384;
  border: 2px solid #d63384;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-continue-shopping:hover {
  background: #fff3f7;
  color: #e84a9e;
  border-color: #e84a9e;
}

/* FORM STATUS */
.form-status {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin-top: 15px;
  animation: fadeIn 0.3s ease;
}

.form-status.form-success {
  background: #f0fdf4;
  color: #15803d;
  border-left: 4px solid #15803d;
}

.form-status.form-error {
  background: #fef2f2;
  color: #dc2626;
  border-left: 4px solid #dc2626;
}

/* RESPONSIVE CHECKOUT */
@media (max-width: 1024px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: relative;
    top: 0;
  }

  .page-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .checkout-header {
    padding: 40px 5%;
  }

  .page-title {
    font-size: 28px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .checkout-content {
    padding: 30px 3%;
  }

  .checkout-section,
  .summary-box {
    padding: 20px;
  }

  .section-title {
    font-size: 18px;
  }

  .form-group input,
  .form-group select {
    padding: 10px;
    font-size: 13px;
  }

  .summary-items {
    max-height: 200px;
  }

  .payment-option {
    padding: 10px;
  }

  .payment-option span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .checkout-header {
    padding: 30px 5%;
  }

  .page-title {
    font-size: 22px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
  }

  .checkout-content {
    padding: 20px 3%;
  }

  .checkout-container {
    gap: 20px;
  }

  .checkout-section,
  .summary-box {
    padding: 15px;
  }

  .section-title {
    font-size: 16px;
  }

  .section-title::after {
    display: none;
  }

  .form-group input,
  .form-group select {
    padding: 10px;
    font-size: 12px;
  }

  .order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .item-total {
    align-self: flex-end;
  }

  .payment-option {
    padding: 8px;
  }

  .btn-checkout,
  .btn-continue-shopping {
    padding: 12px;
    font-size: 14px;
  }
}