/* ================= RESET & ROOT VARIABLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #0a0a0a;
  --secondary-black: #1a1a1a;
  --accent-gold: #c9a96e;
  --text-gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--primary-black);
  background: var(--light-gray);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.navbar.scroll-down {
  transform: translateY(-100%);
}

.navbar.scroll-up {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 250px;
  width: auto;
  transition: var(--transition);
}


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

.nav-icons {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-icon {
  position: relative;
  color: var(--primary-black);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.nav-icon:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

/* ================= POLICY SECTION ================= */
.policy-section {
  flex: 1;
  padding: 140px 40px 80px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.policy-header {
  text-align: center;
  margin-bottom: 60px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b89558 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(201, 169, 110, 0.3);
  animation: float 3s ease-in-out infinite;
}

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

.icon-wrapper i {
  font-size: 40px;
  color: var(--white);
}

.policy-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.policy-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.last-updated {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 500;
}

/* ================= POLICY CARDS ================= */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.policy-card.animate-in,
.policy-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.policy-card:hover {
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--light-gray);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  font-size: 28px;
  color: var(--accent-gold);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.card-description {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Info Boxes */
.info-box {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-box.highlight {
  background: #fff9f0;
  border-left: 4px solid var(--accent-gold);
}

.info-box.warning {
  background: #fff5f5;
  border-left: 4px solid #ff6b6b;
}

.info-box i {
  font-size: 28px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.info-box.warning i {
  color: #ff6b6b;
}

.info-box strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 5px;
}

.info-box span {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Conditions */
.conditions {
  margin-top: 25px;
}

.conditions h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 15px;
}

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

.conditions ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-gray);
}

.conditions ul li i {
  color: var(--accent-gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 25px 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 3px;
}

.timeline-content span {
  display: block;
  font-size: 14px;
  color: var(--text-gray);
}

/* Note */
.note {
  display: flex;
  gap: 12px;
  padding: 15px 20px;
  background: #f0f7ff;
  border-left: 4px solid #4a90e2;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-top: 20px;
}

.note i {
  color: #4a90e2;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================= CONTACT CARD ================= */
.contact-card {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b89558 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(201, 169, 110, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.contact-card.animate-in,
.contact-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-content {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  color: var(--white);
}

.contact-content > i {
  font-size: 48px;
  flex-shrink: 0;
}

.contact-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-content p {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.email-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--white);
  color: var(--accent-gold);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  background: var(--light-gray);
}

/* ================= FOOTER ================= */
.footer {
  background: var(--primary-black);
  color: var(--white);
  padding: 50px 0 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 5px 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-container {
    padding: 15px 30px;
  }

  .policy-section {
    padding: 120px 20px 60px;
  }

  .policy-title {
    font-size: 36px;
  }

  .policy-subtitle {
    font-size: 16px;
  }

  .policy-card {
    padding: 30px 25px;
  }

  .card-title {
    font-size: 24px;
  }

  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-content h3 {
    font-size: 22px;
  }

  .footer-container {
    padding: 0 30px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .policy-title {
    font-size: 28px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i {
    font-size: 32px;
  }

  .card-title {
    font-size: 22px;
  }

  .policy-card {
    padding: 25px 20px;
  }

  .contact-card {
    padding: 30px 25px;
  }
}

.designer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.designer-link:hover {
  text-decoration: underline;
  color: var(--accent-gold); /* or any accent color you use */
}
@media (max-width: 768px) {}
  
  /* NAVBAR */
  .nav-container {
    padding: 0 16px;
    height: 60px;
  }
  
  .logo-img {
    height: 140px;
  }
  
  .nav-icons {
    gap: 20px;
  }
  
  .nav-icon {
    font-size: 18px;
  }
  
  .cart-badge {
    font-size: 9px;
    width: 16px;
    height: 16px;
  }