/* Ladies Collections - Shared Stylesheet */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fdfbfb;
}

/* Header Styles */
.top-bar {
  background-color: #a10649;
  color: white;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  display: block;
  visibility: visible !important;
}

.header-logo {
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 200;
  min-height: 60px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.header-logo a {
  display: block;
  line-height: 0;
  width: min(90%, 800px);
  margin: 0 auto;
}

.main-logo {
  width: 100%;
  height: clamp(40px, 8vw, 80px);
  display: block;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Responsive adjustments for different devices */
@media screen and (max-width: 768px) {
  .header-logo {
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
  }
  .header-logo a {
    width: min(95%, 600px);
  }
}

@media screen and (max-width: 480px) {
  .header-logo {
    padding: 0.5rem 0;
  }
  .header-logo a {
    width: 92%;
  }
  .main-logo {
    height: clamp(35px, 7vw, 50px);
  }
}

/* High-DPI screens */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
  .main-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background: #fff;
  color: #a10649;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #a10649;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions a {
  color: #333;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.header-actions a:hover {
  color: #a10649;
}

/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(161, 6, 73, 0.4), rgba(161, 6, 73, 0.4));
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: white;
  transform: scale(1.2);
}

/* Legacy hero class for compatibility */
.hero {
  background: linear-gradient(rgba(161, 6, 73, 0.4), rgba(161, 6, 73, 0.4)), 
              url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1350&q=80') center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Page Hero (for inner pages) */
.page-hero {
  background: linear-gradient(rgba(161, 6, 73, 0.6), rgba(161, 6, 73, 0.6)), 
              url('https://images.unsplash.com/photo-1584208123944-cc93fd91fca1?auto=format&fit=crop&w=1350&q=80') center/cover;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #a10649;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #7d0438;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: #a10649;
}

.btn-secondary {
  background-color: #666;
}

.btn-secondary:hover {
  background-color: #555;
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  background-color: #f8f6f6;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: #a10649;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #a10649;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

/* Product Categories */
.categories {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #a10649;
  margin-bottom: 3rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s;
  height: 300px;
}

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

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(161, 6, 73, 0.9));
  color: white;
  padding: 2rem;
  text-align: center;
}

.category-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Trust Section */
.trust {
  background-color: #a10649;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Content Sections */
.content-section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-section.centered {
  text-align: center;
}

.content-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #a10649;
  margin-bottom: 2rem;
}

.content-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #a10649;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Contact Section */
.contact {
  background-color: #f8f6f6;
  padding: 4rem 2rem;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: inline-block;
  margin-top: 2rem;
  text-align: left;
  min-width: 400px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-item i {
  color: #a10649;
  font-size: 1.3rem;
  margin-right: 1rem;
  width: 20px;
}

.contact-item a {
  color: #a10649;
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #2c1810;
  color: #ccc;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #a10649;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #a10649;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #a10649;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #999;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  color: #a10649;
  margin-bottom: 0.5rem;
}

.product-info p {
  color: #666;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #a10649;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #f8f6f6;
  padding: 1rem 2rem;
}

.breadcrumb-content {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #a10649;
}

.breadcrumb span {
  color: #a10649;
  margin: 0 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .hero-carousel {
    height: 50vh;
  }
  
  .hero-content h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .carousel-nav {
    padding: 0 1rem;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .carousel-dots {
    bottom: 1rem;
  }
  
  .contact-card {
    min-width: auto;
    width: 100%;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .content-section {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    text-align: center;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero-content h1,
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .features-container,
  .categories-grid,
  .trust-container,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .content-section h3 {
    font-size: 1.5rem;
  }
}