/* 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: #000;
  color: #fff;
  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: #000;
  color: #fff;
}

/* 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: #c9a86c;
  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 {
  padding: 30px 15px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.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;
}

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

/* Page Hero (Shop pages) */
.page-hero {
  background: #000;
  color: #fff;
  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: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

/* 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: 1.05rem;
  color: #444;
  line-height: 2;
  font-weight: 300;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.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-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: #555;
  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: 20px 10px;
  }

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

  .shop-sections {
    padding: 60px 20px;
  }

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

  .section-card {
    aspect-ratio: 4 / 5;
  }

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

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

  .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: 60px 20px 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

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

  .payment-icons {
    gap: 20px;
  }

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

  .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;
  }
}
