@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');

:root {
  --maroon: #0e0406;
  --maroon-dark: #0a0304;
  --maroon-light: #150608;
  --gold: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8941f;
  --cream: #f5f5dc;
  --white: #ffffff;
  --text-dark: #333;
  --text-light: #666;
}

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

body {
  font-family: 'Lora', 'Times New Roman', serif;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Lora', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  min-height: 60px;
}

.navbar-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.navbar-brand:hover {
  transform: scale(1.02);
  color: var(--gold-light) !important;
}

.navbar-logo {
  height: 45px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
  transform: scale(1.05);
}

.navbar-logo-fallback {
  font-size: 2rem;
  color: var(--gold);
  margin-right: 8px;
}

.navbar-brand-text {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .navbar-logo {
    height: 40px;
    max-width: 100px;
  }
  
  .navbar-brand-text {
    font-size: 0.9em;
  }
}

.navbar-nav .nav-link {
  color: var(--cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-dark) 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(212, 175, 55, 0.03) 50px,
      rgba(212, 175, 55, 0.03) 100px
    );
  opacity: 0.6;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(212, 175, 55, 0.03) 2px,
      rgba(212, 175, 55, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(212, 175, 55, 0.03) 2px,
      rgba(212, 175, 55, 0.03) 4px
    );
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-logo {
  max-width: 350px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 2;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--cream);
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
  margin: 1rem 0;
}

/* About Section Taglines */
.taglines-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.tagline-item {
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.tagline-item:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateX(5px);
}

.tagline-telugu {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  font-family: 'Lora', serif;
}

.tagline-english {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

.about-feature-card {
  transition: all 0.3s ease;
  background: white;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 4, 6, 0.15) !important;
}

@media (max-width: 768px) {
  .taglines-container {
    gap: 1rem;
  }
  
  .tagline-telugu {
    font-size: 1.2rem;
  }
  
  .tagline-english {
    font-size: 0.9rem;
  }
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  color: var(--maroon-dark);
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline-primary {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-3px);
}

/* Section Styles */
.section {
  padding: 60px 0;
}

/* Override section padding for product detail page */
.product-detail-page.section {
  padding: 20px 0 !important;
}

.section-title {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 3rem;
  color: var(--maroon);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.section-title {
  position: relative;
}

.section-title::before {
  content: '❋';
  position: absolute;
  bottom: -8px;
  left: calc(50% - 100px);
  color: var(--gold);
  font-size: 1.2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.section-title-wrapper {
  position: relative;
  display: inline-block;
  padding: 0 40px;
}

.section-title-wrapper::before,
.section-title-wrapper::after {
  content: '❋';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
}

.section-title-wrapper::before {
  left: 0;
}

.section-title-wrapper::after {
  right: 0;
}

/* Products Section - Myntra Style */
.products-section {
  background: #f5f5f5;
  min-height: calc(100vh - 200px);
  padding: 20px 0;
}

.filters-sidebar {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* Mobile filter toggle button */
.filter-toggle-btn {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(14, 4, 6, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.filter-toggle-btn:hover {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 4, 6, 0.3);
}

.filter-toggle-btn i {
  transition: transform 0.3s ease;
}

.filter-toggle-btn.active i#filter-toggle-icon {
  transform: rotate(180deg);
}

.filters-container {
  position: relative;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.filter-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #282c3f;
}

.btn-clear-filters {
  background: none;
  border: none;
  color: #ff3f6c;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.btn-clear-filters:hover {
  text-decoration: underline;
}

.filter-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  color: #282c3f;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #535766;
  padding: 4px 0;
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
}

.filter-option:hover {
  color: #282c3f;
}

.products-main {
  padding-left: 20px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background: white;
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.products-title h2 {
  font-size: 20px;
  font-weight: 600;
  color: #282c3f;
  margin: 0;
  font-family: 'Lora', serif;
}

.products-count {
  font-size: 12px;
  color: #878b94;
  margin-left: 10px;
}

.products-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-sort label {
  font-size: 14px;
  color: #282c3f;
  font-weight: 500;
}

.products-sort select {
  width: auto;
  min-width: 150px;
  border: 1px solid #d4d5d9;
  border-radius: 2px;
  padding: 6px 10px;
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  background: transparent;
}

/* Product Cards - Myntra Style */
.product-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  position: relative;
}

.product-card:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 133.33%; /* 3:4 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.badge-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3f6c;
  color: white;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.badge-pid {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(14, 4, 6, 0.85);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.product-body {
  padding: 12px;
}

.product-brand {
  font-size: 14px;
  font-weight: 600;
  color: #282c3f;
  margin-bottom: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-title {
  font-size: 14px;
  color: #535766;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-title-telugu {
  font-size: 12px;
  color: #94969f;
  margin-bottom: 8px;
}

.product-price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.product-price {
  font-size: 16px;
  color: #282c3f;
  font-weight: 600;
}

.product-price-old {
  font-size: 14px;
  color: #94969f;
  text-decoration: line-through;
}

.product-discount {
  font-size: 12px;
  color: #ff3f6c;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.product-actions .btn {
  flex: 1;
  font-size: 12px;
  padding: 8px;
  border-radius: 2px;
  font-weight: 600;
}

.product-actions .btn-primary {
  background: #ff3f6c;
  border: none;
  color: white;
}

.product-actions .btn-primary:hover {
  background: #ff527b;
}

.product-actions .btn-outline-primary {
  border: 1px solid #d4d5d9;
  color: #282c3f;
  background: white;
}

.product-actions .btn-outline-primary:hover {
  border-color: #ff3f6c;
  color: #ff3f6c;
}

@media (max-width: 768px) {
  /* Mobile: Hide filters by default */
  .filters-sidebar {
    display: none;
    position: relative;
    top: 0;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin 0.4s ease;
    padding: 0 20px;
  }

  .filters-sidebar.show {
    display: block;
    max-height: 2000px;
    opacity: 1;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .products-main {
    padding-left: 0;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: var(--cream);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Cart Badge */
.cart-badge {
  background: var(--gold);
  color: var(--maroon-dark);
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-left: 5px;
}

/* Form Styles */
.form-control {
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

/* Alert Styles */
.alert {
  border-radius: 10px;
  border: none;
  padding: 15px 20px;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
}

/* Loading Spinner */
.spinner-border {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Decorative Elements */
.decorative-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px 0;
}

/* Share Buttons */
.share-section {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 20px;
}

.share-buttons {
  margin-top: 10px;
}

.btn-share {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn-share i {
  font-size: 16px;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #20BA5A;
}

.btn-facebook {
  background: #1877F2;
}

.btn-facebook:hover {
  background: #166FE5;
}

.btn-twitter {
  background: #1DA1F2;
}

.btn-twitter:hover {
  background: #1A91DA;
}

.btn-telegram {
  background: #0088cc;
}

.btn-telegram:hover {
  background: #0077B5;
}

.btn-link {
  background: var(--maroon);
}

.btn-link:hover {
  background: var(--maroon-dark);
}

@media (max-width: 768px) {
  .share-buttons {
    flex-direction: column;
  }
  
  .btn-share {
    width: 100%;
    justify-content: center;
  }
}

/* Product Detail Page - Myntra Style */
.product-detail-page {
  background: #f5f5f5 !important;
  min-height: calc(100vh - 200px);
  padding: 20px 0 !important;
}

.product-detail-page .product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-detail-page .product-images-section {
  position: sticky;
  top: 80px;
  margin-bottom: 20px;
}

.product-detail-page .main-image-container {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.product-detail-page .main-product-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-detail-page .main-product-image:hover {
  transform: scale(1.05);
}

.product-detail-page .thumbnail-images {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
}

.product-detail-page .thumbnail-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-detail-page .thumbnail-item:hover {
  border-color: #ff3f6c;
}

.product-detail-page .thumbnail-item.active {
  border-color: #ff3f6c;
}

.product-detail-page .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-page .product-details-section {
  padding-left: 30px;
}

.product-brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #282c3f;
  margin-bottom: 8px;
}

.product-detail-title {
  font-size: 24px;
  font-weight: 400;
  color: #282c3f;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-title-telugu-detail {
  font-size: 16px;
  color: #535766;
  margin-bottom: 20px;
}

.price-section {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.current-price {
  font-size: 28px;
  font-weight: 600;
  color: #282c3f;
}

.original-price {
  font-size: 20px;
  color: #94969f;
  text-decoration: line-through;
}

.discount-badge {
  font-size: 14px;
  font-weight: 600;
  color: #ff3f6c;
  padding: 2px 8px;
  background: #ffeef2;
  border-radius: 2px;
}

.inclusive-text {
  font-size: 12px;
  color: #94969f;
}

.size-section, .color-section {
  margin: 24px 0;
}

.size-label, .color-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #282c3f;
}

.size-guide-link {
  font-size: 12px;
  color: #ff3f6c;
  text-decoration: none;
}

.size-guide-link:hover {
  text-decoration: underline;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-option {
  min-width: 50px;
  height: 50px;
  border: 1px solid #d4d5d9;
  background: white;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  color: #282c3f;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-option:hover {
  border-color: #ff3f6c;
}

.size-option.selected {
  border-color: #ff3f6c;
  background: #ffeef2;
  color: #ff3f6c;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-option:hover {
  border-color: #d4d5d9;
}

.color-option.selected {
  border-color: #ff3f6c;
}

.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e5e5e5;
}

.color-name {
  font-size: 12px;
  color: #535766;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}

.btn-add-to-bag {
  flex: 1;
  height: 50px;
  background: #ff3f6c;
  color: white;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-to-bag:hover:not(:disabled) {
  background: #ff527b;
}

.btn-add-to-bag:disabled {
  background: #d4d5d9;
  cursor: not-allowed;
}

.btn-wishlist {
  width: 50px;
  height: 50px;
  border: 1px solid #d4d5d9;
  background: white;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 20px;
  color: #282c3f;
}

.btn-wishlist:hover {
  border-color: #ff3f6c;
  color: #ff3f6c;
}

.out-of-stock-msg {
  color: #ff3f6c;
  font-weight: 600;
  margin-top: 10px;
}

.delivery-info {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 4px;
}

.delivery-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.delivery-item:last-child {
  margin-bottom: 0;
}

.delivery-item i {
  font-size: 24px;
  color: #282c3f;
  margin-top: 2px;
}

.delivery-item strong {
  display: block;
  color: #282c3f;
  margin-bottom: 4px;
}

.delivery-item div {
  font-size: 14px;
  color: #535766;
}

.share-section-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  color: #282c3f;
}

.share-icons {
  display: flex;
  gap: 8px;
}

.share-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d4d5d9;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  color: #535766;
}

.share-icon-btn:hover {
  border-color: #ff3f6c;
  color: #ff3f6c;
}

.product-tabs-section {
  margin-top: 60px;
  border-top: 1px solid #e5e5e5;
  padding-top: 30px;
}

.product-tabs {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 30px;
}

.product-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #535766;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 20px;
  margin-right: 30px;
  background: transparent;
}

.product-tabs .nav-link:hover {
  border-bottom-color: #ff3f6c;
  color: #ff3f6c;
}

.product-tabs .nav-link.active {
  border-bottom-color: #ff3f6c;
  color: #ff3f6c;
  background: transparent;
}

.tab-content-body {
  padding: 20px 0;
  line-height: 1.8;
  color: #535766;
}

.tab-content-body p {
  margin-bottom: 15px;
}

.tab-content-body ul {
  padding-left: 20px;
}

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

@media (max-width: 992px) {
  .product-details-section {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .product-images-section {
    position: relative;
  }
}

@media (max-width: 768px) {
  .product-detail-container {
    padding: 10px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn-wishlist {
    width: 100%;
  }
  
  .size-options, .color-options {
    gap: 8px;
  }
}

/* Traditional Pattern Background */
.traditional-bg {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(14, 4, 6, 0.03) 10px, rgba(14, 4, 6, 0.03) 20px);
  position: relative;
}

.traditional-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Enhanced Card Styles */
.card {
  border: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 5px 25px rgba(14, 4, 6, 0.15);
  transform: translateY(-2px);
}

/* Enhanced Button Styles */
.btn {
  font-family: 'Lora', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Enhanced Form Styles */
.form-control, .form-select {
  font-family: 'Lora', serif;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Decorative Elements */
.decorative-accent {
  position: relative;
  display: inline-block;
}

.decorative-accent::before,
.decorative-accent::after {
  content: '❋';
  color: var(--gold);
  font-size: 0.8rem;
  margin: 0 10px;
  opacity: 0.6;
}

