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

:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-red: #ea2e33;
  --bg-purple: #c5a3c6;
  --footer-purple: #ebddef;
  --text-gray: #555555;
  --light-gray: #f5f5f5;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .brand-logo, .hero-display-text {
  font-family: 'Playfair Display', serif;
}

/* Top Bar */
.top-bar {
  background-color: var(--accent-red);
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  background-color: white;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.brand-logo img {
  height: 40px;
}

.nav-link {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--accent-red);
}

.nav-icons i {
  font-size: 1.1rem;
  margin-left: 15px;
  cursor: pointer;
  color: #333;
}

.nav-icons i:hover {
  color: var(--accent-red);
}

/* Hero Section */
.hero-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.hero-img {
  flex: 1;
  min-width: 50%;
  background: url('https://images.unsplash.com/photo-1583391733958-65e2820c459c?q=80&w=2015&auto=format&fit=crop') center/cover no-repeat;
  min-height: 500px;
}
.hero-text-side {
  flex: 1;
  min-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem;
  text-align: center;
  background-color: #fdfbf8;
}

.btn-red {
  background-color: var(--accent-red);
  color: white;
  border: 1px solid var(--accent-red);
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: var(--transition);
  border-radius: 0;
}
.btn-red:hover {
  background-color: transparent;
  color: var(--accent-red);
}

/* Product Carousels */
.section-title-left {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title-left a {
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--text-gray);
  border-bottom: 1px solid var(--text-gray);
}

.swiper-slide {
  height: auto;
}

.prod-card {
  text-align: left;
  position: relative;
  border: none;
  background: transparent;
}

.prod-img-box {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.prod-img-box a {
  display: block;
  width: 100%;
  height: 100%;
}

.prod-img-box img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-img-box img {
  transform: scale(1.05);
}

.prod-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-price {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 10px;
}

.color-swatches {
  display: flex;
  gap: 5px;
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: inline-block;
}

/* Swiper custom arrows */
.swiper-button-next, .swiper-button-prev {
  color: #333 !important;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 35px !important;
  height: 35px !important;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 14px !important;
  font-weight: bold;
}

/* Category Grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.cat-item {
  position: relative;
  overflow: hidden;
}

.cat-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-item:hover img {
  transform: scale(1.05);
}

.cat-item-large-v {
  grid-column: span 2;
  grid-row: span 2;
}
.cat-item-small {
  grid-column: span 1;
  grid-row: span 1;
}
.cat-item-large-h {
  grid-column: span 2;
  grid-row: span 1;
}
.cat-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 8px 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Banner */
.look-banner {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 40px 0;
}

/* Info Bar */
.info-bar {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 40px 0;
}
.info-icon {
  width: 40px;
  margin-bottom: 10px;
}
.info-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Newsletter */
.newsletter-section {
  background-color: var(--bg-purple);
  padding: 60px 0;
  text-align: center;
  color: white;
}
.newsletter-section h3 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nl-form input {
  max-width: 300px;
  display: inline-block;
  border-radius: 0;
}
.nl-form button {
  border-radius: 0;
}

/* Instagram row */
.insta-row {
  display: flex;
}
.insta-row img {
  flex: 1;
  width: 16.66%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Brand Logos */
.brand-logos img {
  height: 60px;
  margin: 0 30px;
  opacity: 0.8;
}

/* Testimonials */
.testimonial-card {
  text-align: center;
  padding: 30px;
  background: white;
  border: 1px solid #eee;
  margin: 10px;
}
.stars {
  color: #ffc107;
}

/* Footer Purple */
.footer-purple {
  background-color: var(--footer-purple);
  padding: 60px 0 20px;
  font-size: 0.85rem;
}
.footer-purple h6 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-purple ul {
  list-style: none;
  padding: 0;
}
.footer-purple ul li {
  margin-bottom: 8px;
}
.footer-purple a {
  color: var(--text-gray);
  text-decoration: none;
}
.footer-purple a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  color: white;
}
