@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --blush-pink: #F9C6C9;
  --soft-lilac: #E8D5F5;
  --warm-cream: #FFF8F0;
  --dusty-rose: #E8A0A8;
  --gold-accent: #D4AF37;
  --text-dark: #3D2C2C;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 30px rgba(232, 160, 168, 0.2);
  --transition: all 0.3s ease;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --z-mobile-nav: 1002;
  --mobile-nav-max-height: 360px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--warm-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Playfair Display', serif;
  overflow-wrap: break-word;
}

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

ul {
  list-style: none;
}

button {
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: clamp(0.9rem, 2.3vw, 1rem);
  gap: 8px;
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--dusty-rose);
  color: var(--white);
  box-shadow: 0 8px 15px rgba(232, 160, 168, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(232, 160, 168, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-outline.white {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

.btn-outline.white:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

/* HEADER & NAVBAR */
.navbar {
  background-color: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 12px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  min-width: 0;
}

.logo-text {
  display: inline-block;
  line-height: 1.1;
  font-size: clamp(1rem, 2.8vw, 1.5rem) !important;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--dusty-rose);
  transition: var(--transition);
}

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

.nav-links a.active {
  color: var(--dusty-rose);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.icon-btn:hover {
  transform: scale(1.1);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-lilac) 100%);
  padding: 60px 0;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero p {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-art {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}

/* CSS Art Box */
.gift-box-css {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: var(--warm-cream);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  transform: rotate(-5deg);
  animation: float 6s ease-in-out infinite;
}

.gift-box-css::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 100%;
  background-color: var(--dusty-rose);
}

.gift-box-css::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 30px;
  background-color: var(--dusty-rose);
}

.bow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.bow-left, .bow-right {
  width: 40px;
  height: 40px;
  background-color: var(--dusty-rose);
  border-radius: 50px 50px 0 50px;
  transform: rotate(-45deg);
}

.bow-right {
  border-radius: 50px 50px 50px 0;
  transform: rotate(45deg);
}

.bow-center {
  position: absolute;
  top: 15px;
  width: 20px;
  height: 20px;
  background-color: #d1828d;
  border-radius: 50%;
  z-index: 2;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
  100% { transform: translateY(0px) rotate(-5deg); }
}

/* SECTION HEADINGS */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.section-header p {
  color: #666;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
}

/* OCCASIONS STRIP */
.occasions-strip {
  padding: 30px 0;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.occasions-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}

.occasions-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.occasion-pill {
  white-space: nowrap;
  padding: 10px 24px;
  background-color: var(--warm-cream);
  border-radius: 50px;
  font-weight: 500;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.occasion-pill:hover {
  background-color: var(--blush-pink);
  transform: translateY(-2px);
}

.occasion-pill.active {
  background-color: var(--dusty-rose);
  color: var(--white);
}

/* COLLECTIONS */
.collections {
  padding: 80px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.collection-card {
  border-radius: var(--border-radius-lg);
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: block;
}

.collection-card:nth-child(1) { background: linear-gradient(135deg, #F9C6C9, #FFF8F0); }
.collection-card:nth-child(2) { background: linear-gradient(135deg, #E8D5F5, #FFF8F0); }
.collection-card:nth-child(3) { background: linear-gradient(135deg, #FFF8F0, #F9C6C9); }
.collection-card:nth-child(4) { background: linear-gradient(135deg, #E8A0A8, #FFF8F0); }
.collection-card:nth-child(5) { background: linear-gradient(135deg, #F9C6C9, #E8D5F5); }
.collection-card:nth-child(6) { background: linear-gradient(135deg, #FFF8F0, #E8D5F5); }

.collection-emoji {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: inline-block;
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.collection-card:hover .collection-emoji {
  transform: scale(1.1) rotate(5deg);
}

.collection-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

/* PRODUCT GRID & CARDS */
.products-section {
  padding: 80px 0;
  background-color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-badge.gold {
  background-color: var(--gold-accent);
  color: var(--white);
}

.product-badge.lilac {
  background-color: var(--soft-lilac);
  color: var(--text-dark);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-img-wrapper.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--blush-pink), var(--soft-lilac));
}

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

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dusty-rose);
  margin-bottom: 20px;
  margin-top: auto;
}

.btn-block {
  width: 100%;
}

/* WHY CHOOSE US */
.features {
  padding: 80px 0;
  background-color: var(--warm-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-box p {
  color: #666;
}

/* INSTAGRAM SECTION */
.instagram {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin: 40px 0;
}

.insta-item {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--blush-pink), var(--soft-lilac));
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.insta-item::after {
  content: '📸';
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.insta-item:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

/* FOOTER */
.footer {
  background-color: #2a1e1e;
  color: var(--warm-cream);
  padding: 60px 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand .brand-logo {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--dusty-rose);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  min-width: 44px;
  min-height: 44px;
}

.footer-social svg,
.contact-icon svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0;
}

.footer-social a:hover {
  background-color: var(--dusty-rose);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,248,240,0.6);
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #1EBE5D;
  animation-play-state: paused;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

/* SHOP PAGE SPECIFIC */
.page-header {
  background-color: var(--blush-pink);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 10px;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.about-content p {
  margin-bottom: 30px;
}

.about-content .about-thanks {
  margin-bottom: 0;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--dusty-rose);
  font-weight: 500;
}

.shop-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--dusty-rose);
  box-shadow: 0 0 0 3px rgba(232, 160, 168, 0.2);
}

.shop-page .occasions-wrapper {
  width: 100%;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 10px 0;
}

.shop-page .occasion-pill {
  flex: 0 0 auto;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.5rem;
  color: #888;
  grid-column: 1 / -1;
}

/* CONTACT PAGE SPECIFIC */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 1.5rem;
  width: 28px;
  min-width: 28px;
  line-height: 1;
}

.contact-form-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fafafa;
}

.form-control:focus {
  border-color: var(--dusty-rose);
  outline: none;
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 160, 168, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ADMIN PANEL */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush-pink), var(--soft-lilac));
  padding: 20px;
}

.login-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-hover);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-card h1 {
  margin-bottom: 30px;
}

.error-msg {
  color: #dc3545;
  background-color: #f8d7da;
  padding: 10px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  display: none;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.admin-sidebar {
  width: 250px;
  background-color: var(--warm-cream);
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.admin-brand {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  flex-grow: 1;
}

.admin-nav-item {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-weight: 500;
}

.admin-nav-item:hover {
  background-color: rgba(232, 160, 168, 0.1);
}

.admin-nav-item.active {
  background-color: var(--dusty-rose);
  color: var(--white);
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-header {
  height: 70px;
  background-color: var(--white);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px;
}

.admin-content {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
  min-width: 0;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.table-responsive {
  background: var(--white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

th {
  background-color: #f9f9f9;
  font-weight: 600;
}

tr:hover {
  background-color: #fafafa;
}

tr:nth-child(even) {
  background-color: #FFF8F0;
}

.img-thumbnail {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btns {
  display: flex;
  gap: 10px;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.action-btn:hover {
  transform: scale(1.2);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-hover);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.preview-container {
  margin-top: 10px;
  width: 150px;
  height: 150px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 15px 25px;
  border-radius: var(--border-radius-sm);
  color: white;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  transform: translateX(120%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast.success { background-color: #28a745; }
.toast.error { background-color: #dc3545; }
.toast.warning { background-color: #fd7e14; }
.toast.info { background-color: #17a2b8; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .navbar .container {
    padding: 0 16px;
  }

  .brand-logo {
    gap: 8px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-topbar {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0;
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }

  .hero-art {
    display: none;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
    z-index: var(--z-mobile-nav);
  }
  
  .nav-links.active {
    max-height: var(--mobile-nav-max-height);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .nav-links a {
    padding: 14px 20px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    min-height: 48px;
    font-size: 1rem;
  }
  
  .mobile-menu-btn {
    display: inline-flex;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-layout {
    flex-direction: column;
  }
  
  .admin-sidebar {
    width: 100%;
    height: auto;
  }

  .admin-nav {
    overflow-x: auto;
    flex-direction: row;
    gap: 8px;
    padding: 12px;
  }

  .admin-nav-item {
    white-space: nowrap;
    border-radius: 10px;
    padding: 12px 14px;
  }
  
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }

  .shop-page .page-header h1 {
    font-size: 2.1rem;
  }

  .shop-page .shop-controls {
    gap: 14px;
    margin-bottom: 28px;
  }

  .shop-page .search-bar input {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .shop-page .occasions-wrapper {
    margin: 0;
    padding: 4px 0 10px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .shop-page .occasion-pill {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .shop-page .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-info {
    padding: 18px;
  }

  .product-title {
    font-size: 1.08rem;
  }

  .admin-header {
    justify-content: space-between;
    padding: 0 16px;
  }

  .admin-content {
    padding: 18px 14px;
  }

  .modal-content {
    width: calc(100% - 24px);
    max-width: 100%;
    padding: 20px 16px;
    max-height: 85vh;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-modal-actions {
    justify-content: stretch;
    flex-direction: column-reverse;
  }

  .admin-modal-actions .btn {
    width: 100%;
  }

  .table-responsive {
    border-radius: 12px;
  }

  th, td {
    padding: 12px 14px;
  }

  .toast-container {
    right: 12px;
    left: 12px;
    top: 12px;
  }

  .toast {
    transform: translateY(-120%);
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2rem);
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .contact-info-item {
    gap: 10px;
    margin-bottom: 20px;
  }

  .form-control,
  .search-bar input {
    font-size: 16px;
  }

  .about-content {
    padding: 20px 0;
  }

  .admin-nav-item {
    padding: 12px 14px;
  }

  .modal-header h2 {
    font-size: 1.35rem;
  }

  .wavy-divider svg {
    height: 44px;
  }

  .shop-page .occasion-pill {
    min-height: 44px;
    padding: 8px 14px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) and (pointer: coarse) {
  .navbar {
    backdrop-filter: blur(8px);
  }

  .hero-blob {
    filter: blur(26px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* --- ENHANCEMENT UPDATES --- */

/* 1. Global Polish */
html {
  scroll-behavior: smooth;
}
.top-shimmer {
  height: 2px;
  background: linear-gradient(to right, #F9C6C9, #D4AF37, #E8D5F5);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1001;
}
a, button, .collection-card {
  cursor: pointer;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-header, .collections, .products-section, .features, .instagram, .contact-section, .testimonials {
  padding: 80px 5%;
}
@media (max-width: 768px) {
  .section-header, .collections, .products-section, .features, .instagram, .contact-section, .testimonials {
    padding: 48px 20px;
  }
}

/* 2. NAVBAR */
.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(249, 198, 201, 0.4);
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--dusty-rose);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* 3. HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFD6DC 0%, #F0D6F5 50%, #D6E8FF 100%);
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
  z-index: 1;
}
.blob-1 { background: var(--dusty-rose); width: 300px; height: 300px; top: -50px; left: -50px; }
.blob-2 { background: var(--soft-lilac); width: 400px; height: 400px; bottom: -100px; right: 10%; }
.blob-3 { background: var(--gold-accent); width: 200px; height: 200px; top: 20%; right: -50px; }
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  text-shadow: 2px 4px 20px rgba(232, 160, 168, 0.3);
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 64px; }
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.btn-primary:hover::after {
  left: 150%;
}
#hero-whatsapp-btn {
  border-left: 4px solid #25D366;
}
.gift-box-css {
  filter: drop-shadow(8px 16px 24px rgba(232, 160, 168, 0.4));
  animation: float 6s ease-in-out infinite, wiggle 4s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* 4. OCCASIONS STRIP */
.occasion-pill {
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.occasion-pill:hover {
  transform: scale(1.08);
}
.occasion-pill:nth-child(1) { background: #FFE0E6; }
.occasion-pill:nth-child(1):hover { border-color: #ffb3c6; }
.occasion-pill:nth-child(2) { background: #FFE0F5; }
.occasion-pill:nth-child(2):hover { border-color: #ffb3e6; }
.occasion-pill:nth-child(3) { background: #E8F0FF; }
.occasion-pill:nth-child(3):hover { border-color: #b3d1ff; }
.occasion-pill:nth-child(4) { background: #FFF3D6; }
.occasion-pill:nth-child(4):hover { border-color: #ffe099; }
.occasion-pill:nth-child(5) { background: #E0F5E8; }
.occasion-pill:nth-child(5):hover { border-color: #99e6b3; }
.occasion-pill:nth-child(6) { background: #E8E8F5; }
.occasion-pill:nth-child(6):hover { border-color: #c2c2e6; }
.occasion-pill:nth-child(7) { background: #FFE8F0; }
.occasion-pill:nth-child(7):hover { border-color: #ffb3cc; }
.occasion-pill:nth-child(8) { background: #F0F0F0; }
.occasion-pill:nth-child(8):hover { border-color: #cccccc; }

/* 5. COLLECTIONS SECTION */
.collection-card {
  background: white;
  background-image: radial-gradient(circle at 80% 20%, #fefefe 0%, white 60%);
  border-top: 4px solid transparent;
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}
.collection-card:hover {
  transform: translateY(-8px);
}
.collection-card[data-cat="her"] { border-top-color: #F9C6C9; background-image: radial-gradient(circle at 80% 20%, #fff0f2 0%, white 60%); }
.collection-card[data-cat="him"] { border-top-color: #E8D5F5; background-image: radial-gradient(circle at 80% 20%, #f9f2fc 0%, white 60%); }
.collection-card[data-cat="bouquets"] { border-top-color: #E8A0A8; background-image: radial-gradient(circle at 80% 20%, #fdf0f2 0%, white 60%); }
.collection-card[data-cat="frames"] { border-top-color: #D4AF37; background-image: radial-gradient(circle at 80% 20%, #fcf8eb 0%, white 60%); }
.collection-card[data-cat="cards"] { border-top-color: #FFE0E6; background-image: radial-gradient(circle at 80% 20%, #fff5f7 0%, white 60%); }
.collection-card[data-cat="festive"] { border-top-color: #E0F5E8; background-image: radial-gradient(circle at 80% 20%, #f5fcf7 0%, white 60%); }

.collection-emoji {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}
.collection-card[data-cat="her"] .collection-emoji { background: #F9C6C9; }
.collection-card[data-cat="him"] .collection-emoji { background: #E8D5F5; }
.collection-card[data-cat="bouquets"] .collection-emoji { background: #E8A0A8; }
.collection-card[data-cat="frames"] .collection-emoji { background: #FFF3D6; }
.collection-card[data-cat="cards"] .collection-emoji { background: #FFE0E6; }
.collection-card[data-cat="festive"] .collection-emoji { background: #E0F5E8; }

.collection-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}
span.arrow {
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.collection-card:hover span.arrow {
  opacity: 1;
  transform: translateX(5px);
}
.collection-card:hover .collection-emoji {
  transform: scale(1.1);
}

/* 6. FEATURED PRODUCTS */
.products-section {
  background: linear-gradient(180deg, #FFF8F0 0%, #FFF0F5 100%) !important;
}
.wavy-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wavy-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.top-divider { background-color: var(--white); }
.bottom-divider { background-color: var(--white); }
.footer-divider { background-color: var(--white); }

/* 7. WHY CHOOSE US */
.feature-box {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(249, 198, 201, 0.5);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: transform 0.8s ease;
}
.icon-pink { background: linear-gradient(135deg, #F9C6C9, #E8A0A8); }
.icon-lilac { background: linear-gradient(135deg, #E8D5F5, #d6bdf5); }
.icon-gold { background: linear-gradient(135deg, #FFF8F0, #D4AF37); }
.icon-rose { background: linear-gradient(135deg, #E8A0A8, #d17883); }

.feature-line {
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.line-pink { background: linear-gradient(135deg, #F9C6C9, #E8A0A8); }
.line-lilac { background: linear-gradient(135deg, #E8D5F5, #d6bdf5); }
.line-gold { background: linear-gradient(135deg, #FFF8F0, #D4AF37); }
.line-rose { background: linear-gradient(135deg, #E8A0A8, #d17883); }

.feature-box:hover .feature-icon {
  transform: rotate(360deg);
}

/* 8. INSTAGRAM SECTION */
.instagram {
  background: repeating-linear-gradient(45deg, #F9C6C9 0px, #F9C6C9 2px, #FFF8F0 2px, #FFF8F0 20px) !important;
}
.insta-item {
  position: relative;
}
.insta-item.bg-1 { background: linear-gradient(135deg, #FFE0E6, #FFB3C6) !important; }
.insta-item.bg-2 { background: linear-gradient(135deg, #E8F0FF, #B3D1FF) !important; }
.insta-item.bg-3 { background: linear-gradient(135deg, #FFF3D6, #FFE099) !important; }
.insta-item.bg-4 { background: linear-gradient(135deg, #E0F5E8, #99E6B3) !important; }
.insta-item.bg-5 { background: linear-gradient(135deg, #E8E8F5, #C2C2E6) !important; }
.insta-item.bg-6 { background: linear-gradient(135deg, #FFE8F0, #FFB3CC) !important; }

.insta-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(232, 160, 168, 0.8);
  opacity: 0;
  z-index: 2;
  transition: var(--transition);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  z-index: 1;
  position: relative;
}
.insta-item:hover img {
  transform: scale(1.1);
}
.insta-item::after {
  content: '📸';
  font-size: 2rem;
  opacity: 0;
  position: absolute;
  z-index: 2;
  transition: var(--transition);
}
.insta-item:hover::before { opacity: 1; }
.insta-item:hover::after { opacity: 1; transform: scale(1.2); }
.instagram .btn-primary {
  background: linear-gradient(135deg, #E8A0A8, #D4AF37);
  border: none;
  color: white;
}

/* 9. TESTIMONIALS */
.testimonials {
  background-color: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: linear-gradient(135deg, #FFF8F0, #FFF0F5);
  border-left: 4px solid var(--dusty-rose);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: rgba(232, 160, 168, 0.2);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.test-text {
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-style: italic;
  color: #555;
}
.test-rating {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blush-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dusty-rose);
}
.test-author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.test-author-info p {
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* 10. FOOTER */
.footer {
  background: linear-gradient(135deg, #3D2C2C, #5C3D3D) !important;
}
.footer-social a {
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer-social a:hover {
  transform: rotate(15deg);
  background-color: var(--dusty-rose) !important;
}
.footer-bottom {
  position: relative;
}
.footer-line {
  height: 1px;
  background-color: #D4AF37;
  width: 100%;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* LOGO UPDATES */
.logo-img {
  height: clamp(38px, 8vw, 50px);
  width: auto;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.logo-img-footer {
  height: clamp(52px, 11vw, 80px);
  width: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.hidden { display: none !important; }

.spinner-wrap {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--blush-pink);
  border-top-color: var(--dusty-rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-wrap p {
  font-size: 14px;
  opacity: 0.6;
  font-family: 'Poppins', sans-serif;
}
