:root {
  --primary-color: #8B1538;
  --primary-dark: #6B0F2A;
  --secondary-color: #E91E63;
  --accent-gold: #D4AF37;
  --bg-light: #FDF2F8;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-gray: #666666;
  --text-light: #999999;
}

/* Scope everything to avoid breaking Astra styles */
.sexy-home {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.sexy-home * {
  box-sizing: border-box;
}

/* Make this page truly full-width inside Astra when the shortcode is used */
.sexy-home-page .site-content .ast-container,
.sexy-home-page .site-content .ast-container-fluid {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.sexy-home-page .site-content .content-area,
.sexy-home-page .site-content .site-main {
  margin: 0 !important;
  padding: 0 !important;
}

.sexy-home-page .site-content .entry-content {
  margin: 0 !important;
}

.sexy-home-page .site-content .entry-content > :first-child {
  margin-top: 0 !important;
}

/* Top Bar */
.sexy-home .top-bar {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
}

.sexy-home .top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.sexy-home .top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sexy-home .top-bar-item svg {
  width: 16px;
  height: 16px;
}

/* Hero Section */
.sexy-home .hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

.sexy-home .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sexy-home .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Darker at bottom, lighter towards top */
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.70) 100%);
}

.sexy-home .hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}

.sexy-home .hero-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.sexy-home .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sexy-home .hero-title span {
  font-style: italic;
}

.sexy-home .hero-description {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
}

.sexy-home .btn {
  display: inline-block;
  padding: 16px 45px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.sexy-home .btn-primary {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--bg-white);
}

.sexy-home .btn-primary:hover {
  background-color: transparent;
  color: var(--bg-white);
}

.sexy-home .btn-white {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid #fff;
}

.sexy-home .btn-white:hover {
  background-color: transparent;
  color: #fff;
}

/* Brand Logos */
.sexy-home .brands {
  padding: 50px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid #eee;
}

.sexy-home .brands-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.sexy-home .brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.sexy-home .brand-logo:hover {
  opacity: 1;
}

/* Sections */
.sexy-home .categories {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.sexy-home .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sexy-home .section-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.sexy-home .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark);
}

.sexy-home .categories-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 40px;
}

.sexy-home .category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.sexy-home .category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sexy-home .category-card:hover img {
  transform: scale(1.05);
}

.sexy-home .category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
}

.sexy-home .category-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 5px;
}

.sexy-home .category-count {
  font-size: 13px;
  opacity: 0.8;
}

.sexy-home .category-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #fff;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.sexy-home .category-link:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Welcome */
.sexy-home .welcome {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.sexy-home .welcome-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.sexy-home .welcome-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.sexy-home .welcome-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.sexy-home .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: left;
}

.sexy-home .feature-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sexy-home .feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.sexy-home .feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.sexy-home .feature-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA */
.sexy-home .cta {
  padding: 120px 0;
  background-color: var(--primary-color);
  text-align: center;
  color: #fff;
}

.sexy-home .cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.sexy-home .cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  color: #fff !important;
  background: transparent !important;
}

/* Astra can apply highlight/background styles to headings; force CTA heading readability */
.sexy-home .cta-title,
.sexy-home .cta-title * {
  color: #fff !important;
  background: transparent !important;
  text-shadow: none !important;
}

.sexy-home .cta-text {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Benefits */
.sexy-home .benefits {
  padding: 80px 0;
  background-color: var(--bg-white);
  border-top: 1px solid #eee;
}

.sexy-home .benefits-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 40px;
  text-align: center;
}

.sexy-home .benefit-item {
  padding: 30px;
}

.sexy-home .benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: var(--primary-color);
}

.sexy-home .benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.sexy-home .benefit-text {
  font-size: 14px;
  color: var(--text-gray);
}

/* Responsive */
@media (max-width: 1200px) {
  .sexy-home .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sexy-home .top-bar-content {
    flex-direction: column;
    gap: 10px;
  }

  .sexy-home .hero-title {
    font-size: 42px;
  }

  .sexy-home .hero-content {
    left: 5%;
    right: 5%;
  }

  .sexy-home .categories-grid {
    grid-template-columns: 1fr;
  }

  .sexy-home .features {
    grid-template-columns: 1fr;
  }

  .sexy-home .benefits-grid {
    grid-template-columns: 1fr;
  }
}


