:root {
  --primary-50: hsl(327, 73%, 97%);
  --primary-100: hsl(325, 77%, 94%);
  --primary-200: hsl(326, 77%, 86%);
  --primary-300: hsl(327, 71%, 73%);
  --primary-400: hsl(329, 69%, 58%);
  --primary-500: hsl(330, 81%, 60%);
  --primary-600: hsl(333, 71%, 51%);
  --primary-700: hsl(335, 78%, 42%);
  --primary-800: hsl(336, 74%, 35%);
  --primary-900: hsl(336, 69%, 30%);
  --primary-950: hsl(336, 84%, 17%);
  
  --rose-50: hsl(355, 100%, 97%);
  --rose-100: hsl(355, 100%, 95%);
  --rose-200: hsl(353, 96%, 90%);
  --rose-300: hsl(353, 95%, 81%);
  --rose-400: hsl(351, 95%, 71%);
  --rose-500: hsl(330, 81%, 60%);
  
  --background: hsl(355, 100%, 97%);
  --foreground: hsl(336, 84%, 17%);
  --card: hsl(0, 0%, 100%);
  --border: hsl(355, 30%, 85%);
  
  --font-playfair: 'Playfair Display', serif;
  --font-inter: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-inter);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-playfair);
  font-weight: 600;
  line-height: 1.3;
}

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

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease-in-out; padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px -1px rgba(0,0,0,0.05);
}
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.navbar.hidden { transform: translateY(-100%); }

.nav-content { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-playfair); font-size: 1.5rem; font-weight: bold; color: var(--primary-950); text-decoration: none; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { color: var(--primary-950); text-decoration: none; font-weight: 500; transition: color .3s; }
.nav-links a:hover { color: var(--primary-600); }

.nav-cta {
  background: var(--primary-950); color: #fff !important; padding: .5rem 1.5rem; border-radius: 9999px;
  text-decoration: none; font-weight: 600; transition: all .3s; box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.nav-cta:hover { background: var(--primary-800); transform: scale(1.05); }

.mobile-menu-btn { display: block; background: none; border: none; font-size: 1.25rem; color: var(--primary-950); cursor: pointer; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
  border-top: 1px solid var(--border); padding: 1rem; flex-direction: column; gap: 1rem;
}
.mobile-menu.active { display: flex; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

.hero { position: relative; height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, rgba(255,182,193,.7), rgba(255,105,180,.6), rgba(199,21,133,.5));
  opacity: .9;
}
.hero-content { text-align: center; color: #fff; max-width: 64rem; padding: 5rem 1rem; animation: slideUp .8s ease-out; }
.hero h1 { font-size: 1.75rem; font-weight: bold; margin: 1.5rem 0; text-wrap: balance; }
.hero-gradient-text {
  background: linear-gradient(to right, #fff, var(--rose-200));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1rem; margin-bottom: 1.5rem; font-weight: 300; max-width: 28rem; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.btn { display: inline-flex; align-items: center; padding: 1rem 2rem; border-radius: 9999px; font-weight: 600; font-size: 1.125rem; text-decoration: none; transition: all .3s; gap: .75rem; }
.btn-primary { background: #fff; color: var(--primary-950); }
.btn-primary:hover { background: var(--rose-50); transform: scale(1.05); }
.btn-secondary { border: 2px solid #fff; color: #fff; }
.btn-secondary:hover { background: #fff; color: var(--primary-950); }

@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
@media (min-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.25rem; } }

.section { padding: 2.5rem 0; }
.section-title { font-size: 2.5rem; font-weight: bold; color: var(--primary-950); text-align: center; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.25rem; color: #666; text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
.feature-card {
  background: #fff; padding: 2rem; border-radius: 1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  text-align: center; transition: all .3s;
}
.feature-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.feature-icon {
  width: 4rem; height: 4rem; background: linear-gradient(to bottom right, var(--primary-600), var(--primary-800));
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #fff; font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; color: var(--primary-950); }
.feature-card p { color: #666; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.filter-btn {
  background: #fff; color: var(--primary-950); border: 2px solid var(--primary-950);
  padding: .75rem 1.5rem; border-radius: 9999px; font-weight: 500; cursor: pointer; transition: all .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary-950); color: #fff; transform: scale(1.05); }

.products-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.product-card {
  background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  transition: all .5s; display: flex; flex-direction: column; height: 100%;
}
.product-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.product-image { position: relative; overflow: hidden; }
.product-image img {
  width: 100%; height: 16rem; object-fit: contain; object-position: center; transition: transform .7s; cursor: pointer; background: #f8f9fa; padding: .5rem;
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge { position: absolute; top: 1rem; right: 1rem; color: #fff; padding: .25rem .75rem; border-radius: 9999px; font-size: .875rem; font-weight: 500; }
.badge-popular { background: #ef4444; }
.badge-premium { background: var(--primary-600); }
.badge-colorful { background: linear-gradient(to right, #ec4899, #8b5cf6); }
.product-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-title { font-size: 1.25rem; font-weight: 600; color: var(--primary-950); margin-bottom: .75rem; }
.product-description { color: #666; margin-bottom: 1rem; font-style: italic; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.product-price { font-size: 1.5rem; font-weight: bold; color: var(--primary-950); }
.product-delivery { font-size: .875rem; color: #059669; font-weight: 500; }
.product-rating { display: flex; gap: .25rem; }
.star { color: #fbbf24; } .star.empty { color: #d1d5db; }
.product-btn {
  width: 100%; background: linear-gradient(to right, var(--primary-950), var(--primary-800));
  color: #fff; padding: .75rem 1.5rem; border-radius: .75rem; font-weight: 600; text-align: center; text-decoration: none; transition: all .3s; display: block; margin-top: auto;
}
.product-btn:hover { background: linear-gradient(to right, var(--primary-800), var(--primary-700)); transform: scale(1.05); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }

@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }

.colors-section { background: linear-gradient(to bottom right, var(--rose-50), #fff); }
.colors-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
.color-card {
  background: #fff; border-radius: 1rem; padding: 2rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  text-align: center; transition: all .5s; text-decoration: none; color: inherit;
}
.color-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.color-icon { width: 5rem; height: 5rem; border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform .3s; animation: float 6s ease-in-out infinite; }
.color-card:hover .color-icon { transform: scale(1.1); }
.color-red { background: linear-gradient(to bottom right, #ef4444, #dc2626); color: #fff; }
.color-white { background: linear-gradient(to bottom right, #f3f4f6, #e5e7eb); border: 2px solid #d1d5db; color: #4b5563; }
.color-yellow { background: linear-gradient(to bottom right, #fbbf24, #f59e0b); color: #fff; }
.color-orange { background: linear-gradient(to bottom right, #fb923c, #ea580c); color: #fff; }
.color-pink { background: linear-gradient(to bottom right, #f9a8d4, #ec4899); color: #fff; }
.color-mixed { background: linear-gradient(to bottom right, #f9a8d4, #a855f7, #6366f1); color: #fff; }
.color-title { font-size: 1.25rem; font-weight: 600; color: var(--primary-950); margin-bottom: .75rem; }
.color-description { color: #666; }
@media (min-width: 768px) { .colors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .colors-grid { grid-template-columns: repeat(3, 1fr); } }

.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.badge { padding: .5rem 1rem; border-radius: 9999px; font-weight: 500; font-size: .875rem; }
.badge-green { background: #dcfce7; color: #166534; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-purple { background: #f3e8ff; color: #7c3aed; }

.arkki-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-bottom: 3rem; }
.arkki-image { position: relative; overflow: hidden; border-radius: 1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); transition: all .5s; cursor: pointer; }
.arkki-image:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.arkki-image img { width: 100%; height: 16rem; object-fit: cover; transition: transform .7s; }
.arkki-image:hover img { transform: scale(1.1); }
.arkki-caption { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); display: flex; align-items: end; padding: 1rem; color: #fff; font-weight: 500; opacity: 0; transition: opacity .3s; }
.arkki-image:hover .arkki-caption { opacity: 1; }
@media (min-width: 768px) { .arkki-gallery { grid-template-columns: repeat(4,1fr); } }

.delivery-section { background: linear-gradient(to bottom right, var(--primary-50), var(--rose-50)); }
.delivery-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.delivery-feature { background: #fff; padding: .5rem 1rem; border-radius: 9999px; box-shadow: 0 1px 3px 0 rgba(0,0,0,.1); display: flex; align-items: center; gap: .5rem; }
.feature-green { color: #059669; } .feature-blue { color: #2563eb; } .feature-purple { color: #7c3aed; }
.cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; max-width: 64rem; margin: 0 auto; }
.city-card { background: #fff; padding: .75rem; border-radius: .375rem; box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); text-align: center; transition: all .3s; }
.city-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
.city-icon { color: var(--primary-600); font-size: 1rem; margin-bottom: .375rem; animation: bounceSoft 2s infinite; }
.city-card:hover .city-icon { animation: bounceSoft 1s infinite; }
.city-name { font-weight: 500; color: var(--primary-950); font-size: .75rem; }
@media (min-width: 768px) { .cities-grid { grid-template-columns: repeat(6,1fr); } }
@media (min-width: 1024px) { .cities-grid { grid-template-columns: repeat(8,1fr); } }

.footer { background: linear-gradient(to right, var(--primary-950), var(--primary-800)); color: #fff; padding: 3rem 0; }
.footer-content { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo h3 { font-family: var(--font-playfair); font-size: 1.5rem; font-weight: bold; }
.footer-description { color: #d1d5db; line-height: 1.6; }
.footer-section h4 { font-weight: 600; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: #d1d5db; text-decoration: none; transition: color .3s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.contact-item { display: flex; align-items: center; gap: .75rem; color: #d1d5db; }
.contact-item a { color: #d1d5db; text-decoration: none; transition: color .3s; }
.contact-item a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid var(--primary-700); padding-top: 2rem; }
.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
  text-align: left;
}
.footer-bottom p { color: #d1d5db; margin: 0; }
.footer-bottom a { color: #d1d5db; text-decoration: none; transition: color .3s; }
.footer-bottom a:hover { color: #fff; }

.footer-partner-wrap { display: flex; align-items: center; gap: .75rem; }

.footer-flag img {
  border: 1px solid #d1d5db;
  border-radius: 3px;
  transition: transform .2s ease;
  margin-left: 1rem;
}
.footer-flag img:hover { transform: scale(1.1); border-color: #fff; }
.footer-partner-wrap .footer-flag img { margin-left: 0; }

@media (min-width: 768px) {
  .footer-content { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom-content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
  }
}

.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; background: var(--primary-950); color: #fff;
  padding: 1rem; border-radius: 50%; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  border: none; cursor: pointer; transition: all .3s; z-index: 40; opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-800); transform: scale(1.1); }

.lightbox { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.9); backdrop-filter: blur(5px); display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; animation: fadeIn .6s ease-out; }
.lightbox-content { max-width: 90%; max-height: 90%; border-radius: .75rem; animation: scaleIn .5s ease-out; }
.lightbox-close { position: absolute; top: 1.25rem; right: 2rem; color: #fff; font-size: 2.5rem; font-weight: bold; cursor: pointer; transition: all .3s; }
.lightbox-close:hover { color: var(--rose-300); transform: scale(1.25); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9);} to { opacity: 1; transform: scale(1);} }
@keyframes bounceSoft { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0)} 33%{transform:translateY(-10px) rotate(1deg)} 66%{transform:translateY(-5px) rotate(-1deg)} }
@keyframes gradient { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.animate-on-scroll.animate { opacity: 1; transform: translateY(0); }

.hidden { display: none !important; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--rose-100); }
::-webkit-scrollbar-thumb { background: var(--primary-950); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-900); }
