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

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #c41e3a;
  --gray: #666666;
  --gray-light: #f5f5f5;
  --border: #e5e5e5;
  --header-bg: #000000;
  --header-accent: #ffffff;
  --site-width: 1280px;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
}

.header-inner {
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 20px;
}

.header-bar {
  background: var(--header-bg);
  color: var(--white);
  padding: 16px 0;
}

.header-bar .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
}

.header-bar-left,
.header-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.header-bar-left {
  justify-content: flex-start;
}

.header-bar-right {
  justify-content: flex-end;
}

.header-bar-right .btn-shop-now {
  flex-shrink: 0;
}

.header-bar-right .header-contact {
  min-width: 0;
}

.header-bar-right .contact-text span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.header-divider {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--white);
  flex-shrink: 0;
  display: inline-flex;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.75;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-text .contact-link {
  display: flex;
  flex-direction: column;
}

.header-brand {
  text-align: center;
  color: var(--white);
  line-height: 1.05;
  justify-self: center;
}

.brand-line-1 {
  display: block;
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-line-2 {
  display: block;
  margin-top: 4px;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}

.btn-shop-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.btn-shop-now:hover {
  background: #eaeaea;
  transform: translateY(-1px);
}

.main-nav {
  background: var(--header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0 14px;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 0 auto;
  padding-top: 12px;
}

.nav-list a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav-list a:hover {
  opacity: 0.7;
}

.nav-list a.is-active {
  opacity: 1;
  border-bottom: 1px solid var(--white);
}

.nav-list .has-dropdown::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
}

.menu-toggle {
  display: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-track {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: min(72vh, 720px);
  object-fit: cover;
  object-position: center top;
}

.hero-slide .mobile-only {
  display: none;
}

.hero-slide .desktop-only {
  display: block;
}

.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.hero-btn:hover {
  background: #fff;
}

.hero-btn.prev {
  left: 12px;
}

.hero-btn.next {
  right: 12px;
}

.hero-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s, transform 0.2s;
}

.hero-dots button.active {
  background: #fff;
  transform: scale(1.15);
}

.hero-accent {
  height: 3px;
  background: var(--red);
}

/* ========== PRODUCT SECTIONS ========== */
.section {
  padding: 48px 0 20px;
}

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.carousel-wrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  color: #333;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #fff;
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.product-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 220px;
  max-width: 300px;
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-light);
  margin-bottom: 12px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.quick-cart {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.product-card:hover .quick-cart {
  opacity: 1;
}

.quick-cart svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.product-name {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-price {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.product-installments {
  font-size: 12px;
  color: var(--gray);
}

/* ========== BANNERS ========== */
.banners {
  max-width: 1320px;
  margin: 40px auto 20px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.banners a {
  display: block;
  overflow: hidden;
}

.banners img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.banners a:hover img {
  transform: scale(1.02);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #111;
  color: #ddd;
  margin-top: 60px;
  padding: 56px 28px 28px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  color: #bbb;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  background: var(--white);
  color: var(--black);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact p {
  font-size: 13px;
  color: #bbb;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #777;
  text-align: center;
}

/* ========== WhatsApp float ========== */
.btn-whatsapp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #4dc247;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ========== Cookie bar ========== */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #fff;
  color: #000;
  padding: 10px 15px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.cookie-bar[hidden] {
  display: none !important;
}

.cookie-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-bar-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #222;
  text-align: center;
}

.cookie-bar-text strong {
  font-weight: 700;
}

.cookie-bar-btn {
  appearance: none;
  border: 1px solid #cbbc99;
  background: transparent;
  color: #cbbc99;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.15s ease, color 0.15s ease;
}

.cookie-bar-btn:hover {
  background: #cbbc99;
  color: #fff;
}

body.has-cookie-bar .btn-whatsapp {
  bottom: 60px;
}

@media (max-width: 640px) {
  .cookie-bar-text {
    font-size: 11px;
  }

  .btn-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  body.has-cookie-bar .btn-whatsapp {
    bottom: 72px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .header-bar .header-inner {
    column-gap: 12px;
  }

  .contact-text span:nth-child(n+3) {
    display: none;
  }

  .brand-line-1 {
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .brand-line-2 {
    font-size: 12px;
  }

  .header-bar-right .contact-text span:last-child {
    max-width: 140px;
  }
}

@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc((100% - 32px) / 3);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-bar {
    padding: 12px 0;
  }

  .header-bar .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-bar-left .header-contact,
  .header-bar-left .header-divider,
  .header-bar-right .header-contact,
  .header-bar-right .header-divider,
  .social-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    padding-bottom: 8px;
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 4px 0 8px;
  }

  .nav-list a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .btn-shop-now {
    padding: 8px 14px;
    font-size: 11px;
  }

  .brand-line-1 {
    white-space: normal;
    font-size: 14px;
  }

  .hero-slide img {
    height: min(70vh, 560px);
  }

  .hero-slide .desktop-only {
    display: none;
  }

  .hero-slide .mobile-only {
    display: block;
  }

  .hero-slide:not(:first-child) .mobile-only {
    display: none;
  }

  .hero-slide:not(:first-child) .desktop-only {
    display: block;
  }

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

  .carousel-wrap {
    padding: 0 40px;
  }

  .product-card {
    flex: 0 0 calc((100% - 16px) / 2);
    min-width: 160px;
  }

  .quick-cart {
    opacity: 1;
  }

  .banners {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ========== INNER PAGES ========== */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: #111 center/cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 800px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
}

.page-section {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 64px 20px;
}

.page-section.alt {
  background: #fafafa;
  max-width: none;
}

.page-section.alt .page-section-inner {
  max-width: var(--site-width);
  margin: 0 auto;
}

.page-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.page-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.page-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.page-section p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content .legal-updated {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--black);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 1.25rem;
  padding: 0;
  color: #444;
  line-height: 1.7;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--red);
}

.legal-content .legal-note {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--gray);
}

.page-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-card,
.service-card,
.team-card,
.blog-card,
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}

.feature-card h3,
.service-card h3,
.team-card h3,
.blog-card h3,
.portfolio-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feature-card p,
.service-card p,
.blog-card p,
.portfolio-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.team-grid,
.services-grid,
.portfolio-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  text-align: center;
  padding: 0 0 20px;
  overflow: hidden;
}

.team-card img {
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 14px;
}

.team-card .role {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 72px 20px;
}

.page-cta h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.page-cta .btn-shop-now {
  display: inline-flex;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: -24px -24px 16px;
  max-width: calc(100% + 48px);
}

.blog-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.blog-card a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-box {
  background: #111;
  color: var(--white);
  padding: 32px;
}

.contact-info-box h2 {
  margin-bottom: 16px;
}

.contact-info-box p,
.contact-info-box a {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.contact-info-box a:hover {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #999;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form button:hover {
  background: #222;
}

.milestone {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 18px;
  font-weight: 700;
}

.milestone strong {
  font-size: 2rem;
}

@media (max-width: 900px) {
  .page-grid-2,
  .contact-layout,
  .feature-grid,
  .team-grid,
  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== 404 / SERVICE BUTTON URL ========== */
.not-found-page {
  background: #0a0a0a;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 20px;
}

.not-found-inner {
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
}

.not-found-inner img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  background: #fff;
}

.not-found-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

@media (max-width: 700px) {
  .not-found-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
