/* Premium Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fjalla One', sans-serif;
  background: #fff;
  color: #595854;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e8e0d6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease;
}

.loading-screen.fade-out {
  opacity: 0;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 6px;
  color: #595854;
  margin-bottom: 40px;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(89,88,84,0.15);
  margin: 0 auto;
  overflow: hidden;
}

.loading-bar-fill {
  width: 100%;
  height: 100%;
  background: #595854;
  animation: loadingProgress 1.8s ease-in-out forwards;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes loadingProgress {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* Discount Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.discount-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #fff;
  z-index: 9999;
  width: 400px;
  max-width: 90%;
  text-align: center;
  padding: 50px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.discount-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #000;
}

.popup-content h2 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: #000;
  margin-bottom: 8px;
}

.popup-content p {
  font-size: 0.9rem;
  color: #777;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.popup-code {
  display: inline-block;
  background: #e8e0d6;
  color: #2c2c2c;
  padding: 14px 35px;
  font-size: 1.2rem;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 15px;
}

.popup-hint {
  font-size: 0.75rem !important;
  color: #aaa !important;
  margin-bottom: 30px !important;
}

.popup-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #000;
  color: #000;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s ease;
}

.popup-btn:hover {
  background: #e8e0d6;
  color: #2c2c2c;
}

/* Premium Announcement Bar */
.announcement-ticker {
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.announcement-ticker.hidden {
  transform: translateY(-100%);
  opacity: 0;
  position: absolute;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-content {
  display: flex;
  gap: 80px;
  padding-right: 80px;
  align-items: center;
}

.ticker-content span {
  white-space: nowrap;
  font-weight: 400;
}

.ticker-content .highlight {
  color: #e8e0d6;
  font-weight: 500;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #595854;
  text-transform: uppercase;
}

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

.nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #595854;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

/* Hero */
.hero {
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Shop Sections */
.shop-sections {
  height: calc(100vh - 95px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf9f7;
  padding: 0;
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.sections-grid.four-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  width: 100%;
  height: 100%;
}

.section-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.section-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.section-card:hover img {
  transform: scale(1.03);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  text-align: center;
}

.card-overlay h3 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Elegant Category Cards */
.simple-card {
  background: linear-gradient(145deg, #f5f0ea 0%, #e8e0d6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.simple-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.4) 0%, rgba(0,0,0,0.02) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.simple-card:hover::before {
  opacity: 1;
}

.simple-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8b7355, transparent);
  transition: width 0.5s ease;
}

.simple-card:hover::after {
  width: 60%;
}

.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: #a09080;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.simple-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #2c2c2c;
  text-align: center;
  padding: 0 30px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
  transition: letter-spacing 0.4s ease, color 0.4s ease;
}

.simple-card:hover h3 {
  letter-spacing: 8px;
  color: #1a1a1a;
}

.card-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b7355, transparent);
  margin-top: 20px;
  position: relative;
  z-index: 1;
  transition: width 0.4s ease;
}

.simple-card:hover .card-line {
  width: 80px;
}

@media (max-width: 768px) {
  .card-number {
    font-size: 0.65rem;
    margin-bottom: 10px;
  }

  .simple-card h3 {
    font-size: 1rem;
    letter-spacing: 3px;
    padding: 0 15px;
  }

  .simple-card:hover h3 {
    letter-spacing: 4px;
  }

  .card-line {
    width: 30px;
    margin-top: 12px;
  }
}

.card-overlay p {
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 5px;
}

/* Page Hero (Shop pages) */
.page-hero {
  background: #e8e0d6;
  color: #2c2c2c;
  text-align: center;
  padding: 80px 20px;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 0.85rem;
  letter-spacing: 2px;
  opacity: 0.7;
  text-transform: uppercase;
}

/* About Page */
.about-page {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.about-page-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-story h2 {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 25px;
}

.about-story p {
  font-size: 1.05rem;
  color: #444;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 15px;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.value-item {
  text-align: center;
}

.value-item i {
  font-size: 1.8rem;
  color: #595854;
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #333;
}

.value-item p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.8;
  font-weight: 300;
}

.about-cta {
  background: #fafafa;
  text-align: center;
  padding: 80px 20px;
}

.about-cta h2 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 30px;
}

.about-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #e8e0d6;
  color: #2c2c2c;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.about-cta-btn:hover {
  background: #ddd5ca;
}

/* Contact Page */
.contact-page {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-page-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-intro p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: 0.3px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  border-color: #ccc;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-method-card i {
  font-size: 2rem;
  color: #595854;
  margin-bottom: 20px;
}

.contact-method-card h3 {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #333;
}

.contact-method-card p {
  font-size: 0.85rem;
  color: #777;
  font-weight: 300;
  line-height: 1.6;
}

.contact-extras {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 50px 0;
  border-top: 1px solid #eee;
}

.contact-extra-item {
  text-align: center;
  padding: 30px 20px;
}

.contact-extra-item i {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 15px;
}

.contact-extra-item h3 {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #333;
}

.contact-extra-item p {
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
}

/* Premium Footer */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 5% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.6;
  font-weight: 300;
}

.footer-column h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 500;
}

.footer-column a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 12px;
  font-weight: 300;
  transition: opacity 0.2s;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-column a i {
  width: 18px;
  margin-right: 6px;
  font-size: 0.9rem;
}

.footer-column:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-column:last-child h4 {
  width: 100%;
}

.footer-column:last-child a {
  width: 50%;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

/* Payment Methods */
.payment-methods {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.payment-icons i {
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.payment-icons i:hover {
  color: #fff;
}

.footer .copyright {
  font-size: 0.75rem;
  opacity: 0.4;
  letter-spacing: 1px;
  text-align: center;
}

.admin-lock {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 0.7rem;
  opacity: 0.15;
  color: #fff;
  transition: opacity 0.3s;
}

.admin-lock:hover {
  opacity: 0.4;
}

/* Back Link */
.back-link {
  text-align: center;
  padding: 40px 20px;
}

.back-link a {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
}

.back-link a:hover {
  color: #000;
}

/* Smooth Scroll Indicator */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 0.75rem;
  }

  .sections-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shop-sections {
    padding: 0;
    height: calc(100vh - 60px);
  }

  .sections-grid.four-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .card-overlay h3 {
    font-size: 0.9rem;
  }

  .section-card {
    aspect-ratio: auto;
  }

  .card-overlay {
    padding: 40px 20px 30px;
  }

  .about-page {
    padding: 50px 20px;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-cta {
    padding: 60px 20px;
  }

  .contact-page {
    padding: 50px 20px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-extras {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 35px 20px 25px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    margin-bottom: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .footer-brand p {
    display: none;
  }

  .footer-column h4 {
    margin-bottom: 12px;
    font-size: 0.7rem;
  }

  .footer-column a {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

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

  .payment-methods {
    padding: 20px 0;
    margin-bottom: 15px;
  }

  .payment-icons {
    gap: 20px;
  }

  .payment-icons i {
    font-size: 1.4rem;
  }

  .page-hero {
    padding: 60px 20px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .sections-grid {
    gap: 10px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  color: #fff;
  font-size: 28px;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float i {
    font-size: 24px;
  }

  .whatsapp-float .tooltip {
    display: none;
  }
}
