/* Main CSS for Stol HR Website */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* =================================================================
   CSS VARIABLES - Color System and Design Tokens
   ================================================================= */
:root {
  /* Brand Colors */
  --color-primary: #c29c60;
  --color-primary-light: #d4a574;
  --color-primary-dark: #a67c52;
  --color-accent: #d4af37;
  
  /* Neutral Colors */
  --color-black: #1a1a1a;
  --color-gray-dark: #333333;
  --color-gray: #666666;
  --color-gray-light: #999999;
  --color-gray-lighter: #ddd;
  --color-white: #fefefe;
  
  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-lighter: #fafafa;
  
  /* Status Colors */
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #1e5f99;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-primary: 0 4px 15px rgba(194, 156, 96, 0.3);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
}

/* Typography System - Consistent Font Sizes */
/* Base font sizes for consistency across the site */

/* Headings Scale */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Fix for HTML5 sectioning element h1 deprecation warning */
article h1, aside h1, nav h1, section h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

h5, .h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

/* Body Text */
body, p, .text-base {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.4;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.6;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Mobile Typography Scaling */
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  h3, .h3 {
    font-size: 1.375rem;
  }
  
  h4, .h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  h1, .h1 {
    font-size: 1.75rem;
  }
  
  h2, .h2 {
    font-size: 1.5rem;
  }
  
  h3, .h3 {
    font-size: 1.25rem;
  }
  
  h4, .h4 {
    font-size: 1.125rem;
  }
  
  body, p, .text-base {
    font-size: 0.9rem;
  }
}

/* =================================================================
   BUTTON SYSTEM - Consolidated styles for all buttons
   ================================================================= */

/* Base Button Styles */
.btn, button {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
}

/* Button Sizes */
.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

/* Button Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 156, 96, 0.4);
}

.btn-secondary {
  background: #6c757d;
  color: white;
  border: 1px solid #6c757d;
}

.btn-secondary:hover {
  background: #5a6268;
  border-color: #5a6268;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.btn-danger {
  background: var(--color-danger);
  color: white;
  border: 1px solid var(--color-danger);
}

.btn-danger:hover {
  background: #c82333;
  border-color: #bd2130;
}

/* Special Button Types */
/* Base button styles - shared between CTA and view-all buttons */
.btn-cta-primary,
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  text-decoration: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 30px;
  font-weight: 600;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-primary);
}

.btn-cta-primary:hover,
.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 156, 96, 0.4);
  gap: var(--spacing-md);
}

.btn-cta-primary svg,
.btn-view-all svg {
  transition: transform var(--transition-fast);
}

.btn-cta-primary:hover svg,
.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* Specific overrides for CTA button */
.btn-cta-primary {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(194, 156, 96, 0.4);
}

/* Link Typography Standards */
a {
  font-size: inherit;
  font-family: inherit;
}

.link-sm {
  font-size: 0.875rem;
}

.link-lg {
  font-size: 1.125rem;
}

/* Enhanced News Card Styles */
.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #c29c60;
}

.news-card.featured-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  box-shadow: 0 8px 25px rgba(194, 156, 96, 0.15);
  position: relative;
}

.news-card.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c29c60 0%, #d4a574 100%);
  border-radius: 16px 16px 0 0;
}

.news-card.featured-card:hover {
  box-shadow: 0 20px 40px rgba(194, 156, 96, 0.2);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-placeholder-content {
  text-align: center;
}

.news-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}

.news-category-tag {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-category-tag.featured {
  background: linear-gradient(135deg, #c29c60 0%, #d4a574 100%);
  color: white;
}

.news-category-tag.regular {
  background: rgba(255, 255, 255, 0.9);
  color: #666;
}

.news-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Simple inline metadata */
.news-meta-inline {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: middle;
}

.meta-separator {
  display: inline-block;
  margin: 0 0.5rem;
  opacity: 0.5;
  vertical-align: middle;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}

.news-excerpt {
  color: #666;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-size: 0.9rem;
  flex: 1;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a.read-more-btn, .read-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c29c60 !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

a.read-more-btn:hover, .read-more-btn:hover {
  color: #a67c4a !important;
  gap: 0.75rem;
  text-decoration: none !important;
}

.read-more-btn svg {
  transition: transform 0.2s ease;
}

.read-more-btn:hover svg {
  transform: translateX(4px);
}


/* Featured News Cards */
.featured-news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 156, 96, 0.2);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(194, 156, 96, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #c29c60 0%, #d4a574 100%);
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.featured-news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(194, 156, 96, 0.25);
}

.featured-news-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f8f9fa;
}

.featured-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-news-card:hover .featured-news-image img {
  transform: scale(1.08);
}

.featured-news-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5rem;
}

.featured-badge {
  background: linear-gradient(135deg, #c29c60 0%, #d4a574 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(194, 156, 96, 0.3);
}

.featured-news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Featured news inline metadata */
.featured-meta-inline {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1;
}

.featured-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  vertical-align: middle;
}

.featured-meta-separator {
  display: inline-block;
  margin: 0 0.75rem;
  opacity: 0.5;
  vertical-align: middle;
}

.featured-news-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.featured-news-excerpt {
  color: #666;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  font-size: 1rem;
  flex: 1;
}

.featured-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #c29c60 0%, #d4a574 100%);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(194, 156, 96, 0.3);
}

.featured-read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 156, 96, 0.4);
  gap: 1rem;
}

.featured-read-more-btn svg {
  transition: transform 0.2s ease;
}

.featured-read-more-btn:hover svg {
  transform: translateX(4px);
}

/* News Grid Layout */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Responsive Design */
/* Large Tablet Styles */
@media (max-width: 1024px) {
  .search-container {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .search-container {
    width: 200px;
  }
  
  .search-input {
    font-size: 13px;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-image {
    height: 180px;
  }
  
  .featured-news-image {
    height: 220px;
  }
  
  .news-content {
    padding: 1.25rem;
  }
  
  .featured-news-content {
    padding: 1.5rem;
  }
  
  .news-title {
    font-size: 1.1rem;
  }
  
  .featured-news-title {
    font-size: 1.3rem;
  }
  
  .news-meta {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-wrap: nowrap !important;
  }
  
  .featured-news-meta {
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
  }
}

/* Products CTA Section */
.products-cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  margin: 4rem 0;
}

.products-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.products-cta-text {
  flex: 1;
  max-width: 700px;
}

.products-cta-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
  font-weight: 400;
}

.products-cta-button {
  flex-shrink: 0;
}

/* Button styles are now in the consolidated button system above */

/* Responsive for Products CTA */
@media (max-width: 768px) {
  .products-cta-section {
    padding: 3rem 0;
    margin: 3rem 0;
  }
  
  .products-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .products-cta-text p {
    font-size: 1rem;
  }
  
  .btn-cta-primary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

/* Customer Gallery Section */
.customer-gallery {
  padding: 5rem 0;
  background: white;
}

.customer-gallery .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.customer-gallery .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.customer-gallery .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.customer-gallery .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.customers-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.customer-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.customer-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.customer-dot.active {
  background: #c29c60;
  transform: scale(1.3);
}

.customer-dot:hover {
  background: #c29c60;
  transform: scale(1.1);
}

.customer-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.customer-photo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.customer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.customer-photo:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
}

.customer-photo:hover .photo-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.customer-name {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Playfair Display', serif;
}

.customer-city {
  font-size: 0.9rem;
  color: #c29c60;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive for Customer Gallery */
@media (max-width: 768px) {
  .customer-gallery {
    padding: 3rem 0;
  }
  
  .customer-gallery .section-header {
    margin-bottom: 3rem;
  }
  
  .customer-gallery .section-header h2 {
    font-size: 2rem;
  }
  
  .customers-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .photo-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .customer-name {
    font-size: 1.1rem;
  }
  
  .customer-city {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .customers-image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .photo-overlay {
    padding: 1rem 0.75rem 0.75rem;
  }
  
  .customer-name {
    font-size: 1rem;
  }
  
  .customer-city {
    font-size: 0.75rem;
  }
}

/* Enhanced Admin News Management Styles */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bulk-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.search-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
  min-width: 200px;
}

.filter-select, .sort-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
  background: white;
}

.news-list-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.news-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.checkbox-all {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-grid-admin {
  padding: 1.5rem;
}

.news-item-admin {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: white;
  transition: all 0.2s ease;
}

.news-item-admin:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: #c29c60;
}

.news-checkbox {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.news-checkbox input[type="checkbox"] {
  margin: 0;
}

.news-thumbnail {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-thumbnail-empty {
  border: 2px dashed #dee2e6;
}

.news-item-content {
  flex: 1;
  min-width: 0;
}

.news-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.news-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.news-item-date {
  font-size: 0.875rem;
  color: #6c757d;
}

.news-item-excerpt {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.news-item-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.5rem;
}

.news-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: flex-start;
}

.status-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-published {
  background: #d4edda;
  color: #155724;
}

.status-draft {
  background: #fff3cd;
  color: #856404;
}

.featured-badge {
  font-size: 0.875rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}

.empty-state svg {
  margin-bottom: 1rem;
}

.empty-state h3 {
  margin: 1rem 0 0.5rem 0;
  color: #495057;
}

.empty-state p {
  margin: 0;
}

/* Button system now consolidated above - keeping specific overrides */
.contact-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.contact-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .news-item-admin {
    flex-direction: column;
    gap: 1rem;
  }
  
  .news-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .news-item-actions {
    align-self: flex-end;
  }
  
  .search-filters {
    flex-wrap: wrap;
  }
  
  .search-input {
    min-width: 150px;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background-color: #fefefe;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Layout */
.main-content {
  min-height: calc(100vh - 80px);
}

.content-container {
  padding: 2rem 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  text-align: left;
  padding: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.6) 100%), url('../assets/hero1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  height: calc(100vh - 108px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.hero-content {
  background: rgba(254, 254, 254, 0.85);
  padding: 2rem 1.8rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin-left: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 50%, #d4af37 100%);
}

.hero-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2), 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Hero carousel styles removed */




/* ================================================================= 
   NAVBAR STYLES - All navbar-related styles have been moved to css/navbar.css
   This includes: top contact bar, main navbar, dropdowns, search, 
   social links, mobile menu, and all responsive navbar styles.
   ================================================================= */

/* Page Header Styles */
.page-header {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 3rem;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.page-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  background: transparent;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin: 0 0.75rem;
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 500;
}

.breadcrumb-list a {
  color: #c29c60;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.breadcrumb-list a:hover {
  color: #a67c52;
  background: rgba(194, 156, 96, 0.1);
}

.breadcrumb-list span {
  color: #333;
  font-weight: 600;
}

/* Breadcrumb styles */
.breadcrumb {
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #d4af37;
}

.breadcrumb span {
  color: #d4af37;
  font-weight: 500;
}

/* Product Grid Styles */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.quick-view-btn:hover {
  background: #d4af37;
  color: white;
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-info p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 1rem;
}

.product-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
  border: none;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.product-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* News Grid Styles */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.news-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.news-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.read-more-btn:hover {
  background: #d4af37;
  color: white;
  transform: translateY(-2px);
}

/* About Page Styles */
.about-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
}

.text-block {
  margin-bottom: 3rem;
}

.text-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.text-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-item {
  background: white;
  padding: 1.8rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.value-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.benefits-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
  font-size: 1.2rem;
}

/* About Page Image Layouts */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 2rem 0;
}

.content-with-image.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse .text-content {
  order: 2;
}

.content-with-image.reverse .image-content {
  order: 1;
}

.about-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

.full-width-image {
  position: relative;
  margin: 3rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.workshop-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.image-overlay h2 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.image-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin: 0;
}

/* Mobile Responsiveness for About Images */
@media (max-width: 768px) {
  .content-with-image,
  .content-with-image.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-with-image.reverse .text-content,
  .content-with-image.reverse .image-content {
    order: unset;
  }
  
  .about-image {
    height: 250px;
  }
  
  .workshop-image {
    height: 300px;
  }
  
  .image-overlay {
    padding: 1.5rem;
  }
  
  .image-overlay h2 {
    font-size: 1.5rem;
  }
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  background: white;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #c29c60, #d4af37);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
}

.step-item h4 {
  color: #1a1a1a;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.step-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 3rem 2rem;
  border-radius: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #c29c60;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
}

.review-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.review-item.active {
  display: block;
  opacity: 1;
}

.review-content {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.review-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  color: #c29c60;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: serif;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c29c60;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.author-location {
  color: #666;
  font-size: 0.9rem;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.review-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #c29c60;
  background: white;
  color: #c29c60;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-btn:hover {
  background: #c29c60;
  color: white;
  transform: scale(1.1);
}

.review-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #c29c60;
  transform: scale(1.2);
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: white;
  padding: 4rem 3rem;
  border-radius: 24px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background: #c29c60;
  color: white;
}

.cta-btn.primary:hover {
  background: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194, 156, 96, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .review-content {
    padding: 2rem 1.5rem;
  }
  
  .review-text {
    font-size: 1.1rem;
  }
  
  .cta-section {
    padding: 3rem 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Contact Page Mobile */
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .contact-card.modern {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-section {
    padding: 3rem 2rem;
    border-radius: 16px;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
  
  .modern-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .submit-btn.modern {
    max-width: 100%;
    padding: 1rem 2rem;
  }
}

/* Contact Page Styles - Modern Redesign */
.contact-content {
  padding: 0;
}

/* Contact Info Row */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card.modern {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(194, 156, 96, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-card.modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c29c60, #d4af37);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-card.modern:hover::before {
  transform: scaleX(1);
}

.contact-card.modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(194, 156, 96, 0.2);
}

.contact-card.modern .contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #c29c60, #d4af37);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(194, 156, 96, 0.3);
}

.contact-card.modern .contact-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-card.modern .contact-details p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-card.modern .contact-details a {
  color: #c29c60;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card.modern .contact-details a:hover {
  color: #a67f47;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(194, 156, 96, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c29c60 0%, #d4af37 50%, #c29c60 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}

.form-header h2::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #c29c60 0%, #d4af37 100%);
  border-radius: 2px;
}

.form-header p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
}

.modern-form {
  max-width: 100%;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.modern-form .form-group {
  margin-bottom: 1.5rem;
}

.modern-form .form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.modern-form input,
.modern-form textarea,
.modern-form select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e8e9ea;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  color: #333;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.modern-form input:focus,
.modern-form textarea:focus,
.modern-form select:focus {
  outline: none;
  border-color: #c29c60;
  box-shadow: 0 0 0 4px rgba(194, 156, 96, 0.1);
  transform: translateY(-1px);
}

.modern-form input::placeholder,
.modern-form textarea::placeholder {
  color: #aaa;
}

.submit-btn.modern {
  background: linear-gradient(135deg, #c29c60 0%, #d4af37 100%);
  border: none;
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  width: auto;
  max-width: 300px;
  margin: 2rem auto 0 auto;
  box-shadow: 0 8px 25px rgba(194, 156, 96, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn.modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.submit-btn.modern:hover::before {
  left: 100%;
}

.submit-btn.modern:hover {
  background: linear-gradient(135deg, #a67f47 0%, #c29c60 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(194, 156, 96, 0.4);
}

.submit-btn.modern:active {
  transform: translateY(-1px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-details p {
  color: #555;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-details a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #b8941f;
}

.contact-details span {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* Contact Form Styles */
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Custom Checkbox Styles */
.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #555;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 18px;
  width: 18px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 3px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label:hover .checkmark {
  border-color: #c29c60;
}

.checkbox-label input:checked ~ .checkmark {
  background-color: #c29c60;
  border-color: #c29c60;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}


/* Responsive Styles for New Pages */
@media screen and (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .page-header p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .product-card .product-info {
    padding: 1rem;
  }
  
  .contact-card {
    padding: 1.2rem;
    flex-direction: column;
    text-align: center;
  }
  
  .form {
    padding: 1.5rem;
  }
}










.product-badge {
  background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.feature-icon {
  color: #d4af37;
  font-weight: bold;
  font-size: 1rem;
}

.pricing-section {
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
}

.current-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #d4af37;
}

.discount-badge {
  background: #e74c3c;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 15px;
}

.price-note {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

.product-actions {
  display: flex;
  gap: 1rem;
}

.add-to-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5a3 100%);
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.wishlist-btn {
  background: white;
  border: 2px solid #e8e8e8;
  color: #666;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

/* Category Grid Enhancements */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  height: 400px;
  min-height: 400px;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  color: white;
  z-index: 2;
}

.category-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.category-link:hover {
  background: rgba(212, 175, 55, 0.9);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Styles */
@media screen and (max-width: 480px) {
  
  .product-title {
    font-size: 1.5rem;
  }
  
  .current-price {
    font-size: 1.4rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-image {
    height: 220px;
  }
}

@media screen and (max-width: 480px) {
  
  .product-actions {
    flex-direction: column;
  }
  
  .wishlist-btn {
    align-self: center;
  }
}

/* Empty Category Styles */
.empty-category {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-message {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

.empty-message h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.empty-message p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Large Screens */
@media screen and (min-width: 1400px) {
  .hero-content {
    margin-left: 5rem;
    margin-bottom: 4rem;
    max-width: 500px;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
}

/* Product Card Utility Classes */
.product-media-hidden {
    display: none !important;
}

.product-media-visible {
    display: block !important;
}

/* Product Card Component Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 400px;
}

/* Product card image styles */
.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


/* Always visible product info */
.product-info-permanent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 3;
    transform: translateY(60px);
}

.product-info-permanent .product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.product-info-permanent .product-price-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c29c60;
    margin: 0;
}

/* On hover, move title and price up to original position and show button */
.product-card:hover .product-info-permanent {
    transform: translateY(0);
}

.product-card:hover .product-info-permanent .product-price-display {
    margin-bottom: 1rem;
}

/* Basket button container - hidden by default */
.basket-button-container {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .basket-button-container {
    opacity: 1;
    transform: translateY(0);
}

.basket-btn {
    background: #c29c60;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
    width: 100%;
    justify-content: center;
}

.basket-btn:hover {
    background: #a67f47;
}

/* Card Content */
.card-content {
    color: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    line-height: 1.3;
    text-align: center;
}

.product-price-display {
    font-size: 1.3rem;
    font-weight: 800;
    color: #c29c60;
    text-align: center;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
}

/* Action Buttons */
.card-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.product-description {
    font-size: 0.95rem;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

/* Image Navigation */
.image-nav {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
    pointer-events: none;
}

.product-card:hover .image-nav {
    opacity: 1;
    pointer-events: auto;
}

/* Show navigation on mobile devices (no hover) */
@media screen and (max-width: 768px) {
    .image-nav {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Product Card Video Styles */
.product-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    background: #fff;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Hover video specific styles */
.product-card-video.hover-video {
    opacity: 0;
    z-index: 2;
}

/* Media type indicator for videos */
.media-type-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all 0.3s ease;
}

.media-type-indicator:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Hide media type indicator on mobile */
@media (max-width: 768px) {
    .media-type-indicator {
        display: none;
    }
}

.nav-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.nav-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(194, 156, 96, 0.7);
    border: 2px solid rgba(194, 156, 96, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav-dots .dot.active {
    background: #c29c60;
    border-color: #c29c60;
    transform: scale(1.3);
    box-shadow: 0 3px 8px rgba(194, 156, 96, 0.6);
}

.nav-dots .dot:hover {
    background: rgba(194, 156, 96, 0.9);
    transform: scale(1.1);
}

.nav-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    background: rgba(194, 156, 96, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(194, 156, 96, 0.4);
    flex-shrink: 0;
}

.nav-btn:hover {
    background: #c29c60;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(194, 156, 96, 0.6);
}


/* Product Info */
.product-info {
    padding: 1.5rem;
}


.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-category {
    background: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.product-categories {
    display: block;
    margin-top: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c29c60;
}

/* Primary Action Button - Add to Cart */
.btn-primary-action {
    flex: 1;
    background: rgba(194, 156, 96, 0.95);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(194, 156, 96, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary-action:hover {
    background: rgba(194, 156, 96, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 156, 96, 0.4);
}

.btn-primary-action:active {
    transform: translateY(0);
}

/* Secondary Action Button - Details */
.btn-secondary-action {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary-action:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.btn-primary {
    background: #c29c60;
    color: white;
}

.btn-primary:hover {
    background: #a8834f;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #c29c60;
    color: #c29c60;
}

/* Info Box Styling */
.info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.info-box p {
    margin: 0 0 1rem 0;
    color: #495057;
}

.info-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.info-box code {
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    color: #495057;
}

.text-muted {
    color: #6c757d !important;
    font-size: 0.875rem;
}

/* Modern Admin Dashboard Styles */
.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Sidebar Navigation */
.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.admin-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f9fafb;
}

.sidebar-nav {
    flex: 1;
    padding: 2rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f9fafb;
    border-left-color: #c29c60;
}

.nav-item.active {
    background: rgba(194, 156, 96, 0.1);
    color: #f9fafb;
    border-left-color: #c29c60;
}

.nav-item svg {
    opacity: 0.8;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Content Area */
.admin-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: #f8fafc;
}

.content-header {
    margin-bottom: 2.5rem;
}

.content-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.content-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 0;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #c29c60, #d4af37);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1;
}

.stat-content p {
    color: #6b7280;
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Dashboard Action Cards */
.dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.15);
    border-color: #c29c60;
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    background: linear-gradient(135deg, #c29c60, #d4af37);
    color: white;
}

.action-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.action-card p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Products Grid Admin */
.products-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.product-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
}

.product-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.product-info p {
    color: #6b7280;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-card-admin {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.category-card-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.15);
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.category-info p {
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

/* Analytics Section */
.analytics-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.analytics-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.analytics-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.no-data {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
}

/* Button Improvements */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.empty-state svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    margin: 0;
}

/* Responsive Admin Dashboard */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-actions {
        grid-template-columns: 1fr;
    }
    
    .products-grid-admin {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-header h1 {
        font-size: 1.75rem;
    }
    
    .stat-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-content h3 {
        font-size: 2rem;
    }
    
    .action-card {
        padding: 2rem;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: #1f2937;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
}

.product-item .product-info h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.product-item .product-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.product-item .product-actions {
    display: flex;
    gap: 0.5rem;
}

/* Categories List */
.categories-list {
    display: grid;
    gap: 1rem;
}

.category-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item span {
    font-weight: 500;
    color: #333;
}

.category-actions {
    display: flex;
    gap: 0.5rem;
}

/* Additional Button Styles */
.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Form Styles */
.product-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c29c60;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Image Upload */
.image-upload-area {
    border: 2px dashed #c0c0c0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.image-upload-area:hover {
    border-color: #c29c60;
    background: #f5f5f5;
}

.upload-placeholder svg {
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.upload-placeholder p {
    margin: 0.5rem 0;
    color: #666;
}

.upload-info {
    font-size: 0.8rem;
    color: #999;
}

.image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-remove:hover {
    background: rgba(255, 255, 255, 1);
    color: #b02a37;
}

.preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

/* Current Images Display */
.current-images-display {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    min-height: 80px;
}

.current-image-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.current-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.current-video-item {
    width: 120px;
    height: 80px;
    aspect-ratio: 16/9;
}

.current-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.remove-current-image {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.remove-current-image:hover {
    background: rgba(220, 53, 69, 1);
}

.no-images {
    color: #888;
    font-style: italic;
    text-align: center;
    width: 100%;
    margin: 1rem 0;
}

/* Video Preview Styles */
.video-preview-item {
    aspect-ratio: 16/9;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.file-info {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Product Videos */
.product-videos {
    margin-top: 2rem;
}

.product-videos h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.video-container {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c29c60;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: #c29c60;
    font-weight: 600;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

/* Responsive Design for Admin and Product Cards */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .product-card {
        margin: 0;
        border-radius: 12px;
    }
    
    .image-navigation {
        opacity: 1;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-item,
    .category-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-item .product-actions,
    .category-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-images {
        height: 200px;
    }
    
    .products-grid {
        gap: 0.75rem;
    }
    
    .product-card {
        margin: 0;
        border-radius: 12px;
    }
    
    .product-info {
        padding: 1rem;
    }
}

/* Product Detail Page Styles */
.product-detail {
    display: block;
    margin-bottom: 4rem;
    overflow: hidden; /* Clearfix for floated children */
}

.product-detail::after {
    content: "";
    display: table;
    clear: both;
}

.product-detail-gallery {
    position: static !important;
    float: left;
    width: 45%;
    margin-right: 5%;
    margin-bottom: 2rem;
    transform: none !important;
    will-change: auto !important;
}

.product-detail-info {
    float: left;
    width: 50%;
}

.main-product-image {
    position: static !important;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 4/3;
    transform: none !important;
    will-change: auto !important;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-product-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    position: relative;
    margin-top: 1rem;
    padding: 0 50px; /* Add space for nav buttons */
}

.thumbnail-container {
    position: relative;
    overflow: visible; /* Allow buttons to show outside */
    border-radius: 8px;
}

.thumbnail-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 0.25rem;
    border-radius: 8px;
}

.thumbnail-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.thumbnail-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    background: rgba(194, 156, 96, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.product-thumbnails:hover .thumbnail-nav-btn {
    opacity: 1;
    visibility: visible;
}

.thumbnail-nav-btn:hover {
    background: #c29c60;
    transform: translateY(-50%) scale(1.1);
}

.thumbnail-nav-btn.prev {
    left: -45px;
}

.thumbnail-nav-btn.next {
    right: -45px;
}

.thumbnail-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.thumbnail-nav-btn {
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1;
    text-align: center;
}

.product-thumbnails.has-scroll .thumbnail-nav-btn {
    opacity: 0.7;
    visibility: visible;
}

.product-thumbnails.has-scroll:hover .thumbnail-nav-btn:not(:disabled) {
    opacity: 1;
}

@media (max-width: 768px) {
    .thumbnail {
        flex: 0 0 70px;
        width: 70px;
        height: 70px;
    }
    
    .thumbnail-nav-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        max-width: 36px;
        min-height: 36px;
        max-height: 36px;
    }
    
    .thumbnail-nav-btn {
        font-size: 12px;
    }
}

/* Delivery Category Info Styles */
.delivery-category-info {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.delivery-category-info strong {
    color: #333;
}

.delivery-note {
    display: block;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.product-detail-gallery .product-specs {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    position: static !important;
    transform: none !important;
    will-change: auto !important;
}

.product-detail-gallery .product-specs h4 {
    margin: 0 0 1rem 0;
    font-family: 'Playfair Display', serif;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.thumbnail {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail img,
.thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8f9fa;
}

.thumbnail {
    position: relative;
}

.thumbnail video {
    pointer-events: none; /* Disable video controls in thumbnails */
}

/* Video play overlay for thumbnails */
.thumbnail:has(video)::after {
    content: "▶";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    pointer-events: none;
}

/* Fallback for browsers that don't support :has() */
.thumbnail .video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    pointer-events: none;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #c29c60;
    transform: scale(1.05);
}

.product-detail-info {
    padding: 1rem 0;
}

.breadcrumb-detail {
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.breadcrumb-detail a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-detail a:hover {
    color: #c29c60;
}

.breadcrumb-detail span {
    color: #c29c60;
    font-weight: 500;
}

.product-badge-detail {
    background: linear-gradient(135deg, #c29c60 0%, #d4af37 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-price-detail {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #c29c60;
    margin-bottom: 2rem;
}

.product-description-detail {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-features-detail {
    margin-bottom: 2rem;
}

.product-features-detail h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
}

.features-list li {
    padding: 0.3rem 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c29c60;
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive features list */
@media (max-width: 768px) {
    .features-list {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .features-list li {
        padding: 0.3rem 0.5rem;
        padding-left: 1.3rem;
        font-size: 0.85rem;
    }
    
    .features-list li::before {
        left: 0;
        font-size: 0.9rem;
    }
}

.product-actions-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-large {
    background: linear-gradient(135deg, #c29c60 0%, #d4af37 100%);
    color: white;
    flex: 1;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #a8834f 0%, #c29c60 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 156, 96, 0.4);
}

.btn-outline-large {
    background: transparent;
    color: #c29c60;
    border: 2px solid #c29c60;
    flex: 1;
}

.btn-outline-large:hover {
    background: #c29c60;
    color: white;
    transform: translateY(-2px);
}

.product-specs {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.product-specs h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem 2rem;
    align-items: center;
}

.specs-label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.specs-value {
    color: #666;
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e0e0e0;
}

.related-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

/* New Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.show {
    display: block;
    opacity: 1;
}

.gallery-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.gallery-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
}

.gallery-close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close i {
    font-size: 18px !important;
    color: white !important;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.gallery-close:hover svg {
    fill: white;
}

.gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0;
}

.gallery-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-container img {
    max-width: 95%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-image-container video {
    max-width: 95%;
    max-height: 85vh;
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.gallery-prev {
    left: 30px;
}

.gallery-next {
    right: 30px;
}

.gallery-nav i {
    font-size: 20px;
    color: #333;
    pointer-events: none;
}

.gallery-nav:hover i {
    color: #000;
}

.gallery-thumbnails {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-thumb-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 120px;
    overflow-y: auto;
    padding: 8px 0;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #c29c60;
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb {
    position: relative;
}

.video-overlay-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    pointer-events: none;
}

/* Video cursor and interaction hints */
video {
    cursor: pointer;
}

video:hover {
    opacity: 0.9;
}

/* Video muted indicator */
video[muted]::after {
    content: "🔇 Click to unmute";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
}

/* Mobile video preview indicators */
.mobile-video-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-video-indicator svg {
    width: 12px;
    height: 12px;
    opacity: 0.9;
}

/* Mobile video preview styling */
.mobile-preview-video {
    border-radius: inherit;
}

/* Enhanced product card positioning for mobile overlays */
@media (max-width: 768px) {
    .product-card {
        position: relative;
        overflow: hidden;
    }
    
    .mobile-video-indicator {
        animation: slideInFade 0.5s ease-out;
    }
    
    @keyframes slideInFade {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-container {
        padding: 15px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
    
    .gallery-image-container img {
        max-height: 75vh;
    }
    
    .gallery-image-container video {
        max-height: 75vh;
        max-width: 95vw;
        width: 100%;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .gallery-container {
        padding: 10px;
    }
    
    .gallery-image-container video {
        max-height: 70vh;
        max-width: 90vw;
        width: 100%;
    }
    
    .gallery-image-container img {
        max-height: 70vh;
        max-width: 90vw;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: white;
    border: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #f0f0f0;
}

.lightbox-navigation {
    position: relative;
    display: inline-block;
}

.lightbox-navigation img {
    max-width: 80vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev::after {
    content: "‹";
}

.lightbox-next::after {
    content: "›";
}

.lightbox-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.lightbox-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumbnail:hover,
.lightbox-thumbnail.active {
    border-color: #c29c60;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #c29c60;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p {
    color: #666;
    font-size: 1rem;
}

/* Product Not Found */
.product-not-found {
    text-align: center;
    padding: 4rem 2rem;
}

.product-not-found h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-not-found p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail-gallery {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .product-detail-info {
        float: none;
        width: 100%;
    }
    
    .product-title-detail {
        font-size: 2rem;
    }
    
    .product-price-detail {
        font-size: 1.6rem;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .specs-label {
        font-weight: 600;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 480px) {
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: -45px;
    }
    
    .lightbox-next {
        right: -45px;
    }
    
    .lightbox-close {
        top: -40px;
        right: -10px;
    }
}

/* Shopping Cart Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 3000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.cart-open {
    overflow: hidden;
}

/* Cart Header */
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.cart-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: #e0e0e0;
    color: #333;
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 0.8rem;
    color: #c29c60;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.quantity {
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    color: #333;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.remove-item:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.cart-item-total {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Empty Cart */
.cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-empty p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.cart-total {
    margin-bottom: 1rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.cart-actions {
    display: flex;
    gap: 0.75rem;
}

.cart-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Cart Counter in Navbar */
.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c29c60;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

.navbar-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: #c29c60;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    margin-right: 1rem;
    gap: 0.5rem;
}

.navbar-cart:hover {
    background: #b8935a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 156, 96, 0.3);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #c29c60;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 3001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.notification-content svg {
    flex-shrink: 0;
}

/* Add to Cart Button */
.btn-add-cart {
    background: linear-gradient(135deg, #c29c60 0%, #d4af37 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #a8834f 0%, #c29c60 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 156, 96, 0.4);
}

.btn-add-cart:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-add-cart svg {
    width: 16px;
    height: 16px;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-details {
        width: 100%;
    }
    
    .cart-item-controls {
        justify-content: space-between;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-notification {
        left: 20px;
        right: 20px;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .cart-header {
        padding: 1rem;
    }
    
    .cart-items {
        padding: 0.75rem;
    }
    
    .cart-footer {
        padding: 1rem;
    }
}

/* Cart Page Styles */
.cart-page-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cart-items-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-items-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
}

.btn-link {
    background: none;
    border: none;
    color: #c29c60;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.btn-link:hover {
    color: #a8834f;
}

.cart-items-table {
    padding: 0;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    min-width: 0;
}

.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.item-category {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.25rem 0;
}

.item-price {
    font-size: 0.9rem;
    color: #c29c60;
    font-weight: 500;
    margin: 0;
}

.item-quantity {
    display: flex;
    justify-content: center;
}

.quantity-controls-large {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls-large .qty-btn {
    background: white;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.quantity-controls-large .qty-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.quantity-input {
    border: none;
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.quantity-input:focus {
    outline: none;
    background: #f8f9fa;
}

.item-total {
    text-align: right;
    min-width: 80px;
}

.item-total-price {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.item-actions {
    display: flex;
    justify-content: center;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.remove-item-btn:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* Cart Summary Section */
.cart-summary-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
}

.cart-summary h3 {
    margin: 0 0 1.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-line span:first-child {
    color: #666;
}

.summary-line span:last-child {
    font-weight: 500;
    color: #333;
}

.delivery-free {
    color: #28a745 !important;
    font-weight: 600 !important;
}

.summary-total {
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-total span {
    color: #333 !important;
    font-weight: 600 !important;
}

.summary-total small {
    font-weight: 400 !important;
    color: #666 !important;
    font-size: 0.8rem !important;
    display: block;
    margin-top: 0.25rem;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-actions .btn {
    justify-content: center;
}

/* Cart Benefits */
.cart-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.cart-benefits h4 {
    margin: 0 0 1rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.cart-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.cart-benefits li svg {
    color: #28a745;
    flex-shrink: 0;
}

.cart-benefits li:last-child {
    margin-bottom: 0;
}

/* Empty Cart Page */
.cart-empty-page {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.empty-cart-illustration {
    margin-bottom: 2rem;
    color: #c0c0c0;
}

.cart-empty-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cart-empty-page p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cart-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Cart Page */
@media (max-width: 768px) {
    .cart-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item-row {
        grid-template-columns: 60px 1fr;
        grid-template-areas: 
            "image details"
            "quantity quantity"
            "total actions";
        gap: 1rem;
        padding: 1rem;
    }
    
    .item-image {
        grid-area: image;
        width: 60px;
        height: 60px;
    }
    
    .item-details {
        grid-area: details;
    }
    
    .item-quantity {
        grid-area: quantity;
        justify-content: flex-start;
    }
    
    .item-total {
        grid-area: total;
        text-align: left;
    }
    
    .item-actions {
        grid-area: actions;
        justify-content: flex-end;
    }
    
    .cart-summary {
        position: static;
    }
    
    .empty-cart-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .empty-cart-actions .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .cart-items-header {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .cart-items-header h3 {
        font-size: 1.1rem;
    }
    
    .cart-summary {
        padding: 1.5rem;
    }
    
    .cart-benefits {
        padding: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 2rem 0 0.5rem;
    margin-top: 2rem;
    border-top: 3px solid #c29c60;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 1rem;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #c29c60;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}
.footer-contact a:hover {
    color: #c29c60;
}
.footer-contact i {
    width: 16px;
    color: #c29c60;
}
.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.payment-logo {
    height: 32px;
    width: auto;
    background: white;
    padding: 0.4rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    object-fit: contain;
}
.payment-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.footer-payment i {
    color: #c29c60;
    font-size: 1.5rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    color: #cccccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #c29c60;
}
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
.footer-bottom a {
    color: #c29c60;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-contact {
        align-items: center;
    }
    .footer-payment {
        justify-content: center;
        gap: 0.75rem;
    }
    .payment-logo {
        height: 28px;
    }
    .social-links {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0 0.5rem;
    }
    .footer-main {
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-payment {
        gap: 0.5rem;
    }
    .payment-logo {
        height: 24px;
        padding: 0.3rem;
    }
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Product Filters */
.product-filters {
    margin: 2rem 0;
    padding: 0 1rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
}

.filter-tab:hover {
    background: rgba(194, 156, 96, 0.1);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--accent-color) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(194, 156, 96, 0.3);
    border-color: var(--accent-color) !important;
    text-shadow: none !important;
}

.filter-tab.active:hover {
    background: #b8905a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Products Grid Section */
.products-grid {
    min-height: 400px;
}

.products-container {
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .products-container {
        padding: 0;
    }
}

/* Responsive filter tabs */
@media (max-width: 768px) {
    .filter-tabs {
        gap: 0.75rem;
    }
    
    .filter-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-tab {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 0;
}

.featured-products .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c29c60, #d4af73);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c29c60 0%, #d4af73 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(194, 156, 96, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 156, 96, 0.4);
    background: linear-gradient(135deg, #b8905a 0%, #c29c60 100%);
}

.btn-view-all svg {
    transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
    transform: translateX(3px);
}


/* Featured Products Grid - Special styling for homepage */
.featured-products-grid .product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-products-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive design for featured products */
@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 3rem 0;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .btn-view-all {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .featured-products {
        padding: 2.5rem 0;
    }
    
    .featured-products .container {
        padding: 0 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .btn-view-all {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Additional specificity for active filter text */
button.filter-tab.active,
.filter-tabs .filter-tab.active {
    color: #ffffff !important;
    background-color: var(--accent-color) !important;
}

/* Admin link styling */
.admin-link {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.85rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.admin-link:hover {
    background: #c29c60 !important;
    color: white !important;
    border-color: #c29c60 !important;
}

/* Featured Products Admin Styling */
.featured-checkbox {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    padding: 1rem;
    margin: 0.5rem 0;
}

.featured-checkbox label {
    font-weight: 600;
    color: #b8860b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-featured-products {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border: 2px dashed #ddd;
}

.no-featured-products p {
    margin: 0;
    font-size: 1.1rem;
}


/* Namjena Stola Section */
.namjena-stola {
    padding: 4rem 0;
    background: #ffffff;
}

.namjena-stola .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.namjena-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.namjena-btn {
    display: block;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.namjena-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: #c29c60;
}

.namjena-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: 1;
}

.namjena-btn:hover::before {
    background: linear-gradient(135deg, rgba(194, 156, 96, 0.9) 0%, rgba(212, 175, 115, 0.9) 100%);
}

.namjena-overlay {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
    height: 100%;
    min-height: 200px;
    z-index: 2;
}


.namjena-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.namjena-btn:hover .namjena-icon {
    background: white;
    color: #c29c60;
    transform: scale(1.1);
    border-color: white;
}

.namjena-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.namjena-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.namjena-btn:hover .namjena-content h3 {
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.namjena-btn:hover .namjena-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Responsive design for Namjena Stola */
@media (max-width: 1024px) {
    .namjena-buttons {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .namjena-overlay {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .namjena-icon {
        width: 70px;
        height: 70px;
    }
    
    .namjena-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .namjena-stola {
        padding: 3rem 0;
    }
    
    .namjena-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .namjena-overlay {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .namjena-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .namjena-stola {
        padding: 2.5rem 0;
    }
    
    .namjena-overlay {
        padding: 1.5rem 1rem;
    }
    
    .namjena-icon {
        width: 60px;
        height: 60px;
    }
    
    .namjena-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .namjena-content h3 {
        font-size: 1.1rem;
    }
    
    .namjena-content p {
        font-size: 0.9rem;
    }
}

/* Oblik Stola Section */
.oblik-stola {
    padding: 4rem 0;
    background: #f8f9fa;
}

.oblik-stola .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.oblik-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.oblik-btn {
    display: block;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.oblik-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: #c29c60;
}

.oblik-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: 1;
}

.oblik-btn:hover::before {
    background: linear-gradient(135deg, rgba(194, 156, 96, 0.9) 0%, rgba(212, 175, 115, 0.9) 100%);
}

.oblik-overlay {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
    height: 100%;
    min-height: 200px;
    z-index: 2;
}


.oblik-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.oblik-btn:hover .oblik-icon {
    background: white;
    color: #c29c60;
    transform: scale(1.1);
    border-color: white;
}

.oblik-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.oblik-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.oblik-btn:hover .oblik-content h3 {
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.oblik-btn:hover .oblik-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Responsive design for Oblik Stola */
@media (max-width: 1024px) {
    .oblik-buttons {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .oblik-overlay {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .oblik-icon {
        width: 70px;
        height: 70px;
    }
    
    .oblik-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .oblik-stola {
        padding: 3rem 0;
    }
    
    .oblik-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .oblik-overlay {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .oblik-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .oblik-stola {
        padding: 2.5rem 0;
    }
    
    .oblik-overlay {
        padding: 1.5rem 1rem;
    }
    
    .oblik-icon {
        width: 60px;
        height: 60px;
    }
    
    .oblik-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .oblik-content h3 {
        font-size: 1.1rem;
    }
    
    .oblik-content p {
        font-size: 0.9rem;
    }
}

/* Featured News Homepage Section */
.featured-news-homepage {
    padding: 4rem 0;
    background: #ffffff;
}

.featured-news-homepage .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* News Page Styles */
.news-section {
    padding: 2rem 0;
}

.featured-news-section {
    margin-bottom: 4rem;
}

.featured-news-section .section-header {
    margin-bottom: 2rem;
}

.news-grid-section {
    margin-bottom: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-content {
    padding: 2rem;
}

.news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #c29c60;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    background: none;
    border: none;
    color: #c29c60;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: #a67c52;
    text-decoration: underline;
}

/* News Modal */
.news-modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.news-modal-body {
    padding: 2rem;
}

.news-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.news-modal-body .news-date {
    font-size: 0.9rem;
    color: #999;
}

.news-modal-body .news-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-content {
    color: #999;
}

.empty-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.empty-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Featured News Card */
.featured-news-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(194, 156, 96, 0.1);
}

.featured-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #c29c60;
}

.featured-news-card .news-content {
    padding: 2.5rem;
}

.featured-news-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1.2rem;
}

/* Admin Panel News Styles */
.news-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-badge {
    font-size: 0.8rem;
    color: #c29c60;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-published {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-draft {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

/* Responsive Design for News */
@media (max-width: 768px) {
    .news-grid,
    .featured-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card,
    .featured-news-card {
        margin: 0 1rem;
    }
    
    .news-content,
    .featured-news-card .news-content {
        padding: 1.5rem;
    }
    
    .featured-news-homepage {
        padding: 3rem 0;
    }
    
    .news-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .news-modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .news-content,
    .featured-news-card .news-content {
        padding: 1.25rem;
    }
    
    .news-card h3,
    .featured-news-card h3 {
        font-size: 1.2rem;
    }
    
    .featured-news-homepage {
        padding: 2.5rem 0;
    }
}

/* Rich Text Editor Styles */
.rich-text-toolbar {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    flex-wrap: wrap;
}

.toolbar-btn {
    padding: 0.5rem 0.75rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toolbar-btn:hover {
    background: #e9ecef;
    border-color: #c29c60;
}

.toolbar-btn:active,
.toolbar-btn.active {
    background: #c29c60;
    color: white;
    border-color: #c29c60;
}

.rich-text-editor {
    min-height: 200px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: white;
    line-height: 1.6;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    overflow-y: auto;
    max-height: 400px;
}

.rich-text-editor:focus {
    border-color: #c29c60;
    box-shadow: 0 0 0 3px rgba(194, 156, 96, 0.1);
}

.rich-text-editor:empty::before {
    content: attr(data-placeholder);
    color: #999;
    font-style: italic;
}

.rich-text-editor p {
    margin-bottom: 1rem;
}

.rich-text-editor p:last-child {
    margin-bottom: 0;
}

.rich-text-editor ul,
.rich-text-editor ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.rich-text-editor a {
    color: #c29c60;
    text-decoration: underline;
}

/* Image Upload Styles */
.image-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fafafa;
}

.image-upload-area:hover {
    border-color: #c29c60;
    background: #f9f7f4;
}

.image-upload-area.drag-over {
    border-color: #c29c60;
    background: #f9f7f4;
    transform: scale(1.02);
}

.upload-placeholder {
    color: #666;
}

.upload-placeholder svg {
    margin-bottom: 1rem;
}

.upload-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.upload-placeholder small {
    color: #999;
    font-size: 0.9rem;
}

.uploaded-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.image-preview {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ddd;
    background: white;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.remove-image:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

/* News Detail Page Styles */
.news-detail-container {
    padding: 2rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #c29c60;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
}

.news-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #c29c60;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-article {
    max-width: 800px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 2rem;
    text-align: center;
}

.news-header .news-meta {
    margin-bottom: 1rem;
}

.news-header .news-date {
    font-size: 0.9rem;
    color: #c29c60;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.news-main-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 3rem;
}

.news-body p {
    margin-bottom: 1.5rem;
}

.news-body a {
    color: #c29c60;
}

.news-body a:hover {
    text-decoration: underline;
}

.news-gallery {
    margin-bottom: 3rem;
}

.news-gallery h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.news-actions {
    text-align: center;
    margin-top: 3rem;
}

.news-error {
    text-align: center;
    padding: 4rem 2rem;
}

.error-content {
    color: #666;
}

.error-content h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* News Card Image Styles */
.news-card .news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.featured-news-card .news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.featured-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .news-image img {
    transform: scale(1.05);
}

/* Responsive Design for News Detail */
@media (max-width: 768px) {
    .news-title {
        font-size: 2rem;
    }
    
    .news-body {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-item img {
        height: 120px;
    }
    
    .rich-text-toolbar {
        gap: 0.25rem;
        padding: 0.5rem;
    }
    
    .toolbar-btn {
        min-width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .image-preview {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .news-title {
        font-size: 1.5rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Inline Form Styles */
.news-form-container,
.product-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.form-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.news-form,
.product-form {
    max-width: none;
}

.news-form .form-actions,
.product-form .form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Subtle News Improvements */
.news-table-body .news-title {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-badge {
    font-size: 0.8rem;
    color: #c29c60;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: capitalize;
}

.status-published {
    background-color: #d4edda;
    color: #155724;
}

.status-draft {
    background-color: #fff3cd;
    color: #856404;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.btn-edit {
    background-color: #e3f2fd;
    color: #1976d2;
}

.btn-edit:hover {
    background-color: #bbdefb;
    transform: translateY(-1px);
}

.btn-delete {
    background-color: #ffebee;
    color: #d32f2f;
}

.btn-delete:hover {
    background-color: #ffcdd2;
    transform: translateY(-1px);
}
    
    .form-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .news-form .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: #fafafa;
}

.services-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.service-item:hover {
    border-color: #c29c60;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #c29c60;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 3rem 0;
    background: #fafafa;
}

.newsletter-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.newsletter-card {
    background: linear-gradient(135deg, #c29c60 0%, #d4af37 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(194, 156, 96, 0.2);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.newsletter-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 320px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    background: transparent;
    color: white;
    transition: all 0.2s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: white;
    color: #c29c60;
    transform: scale(1.05);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-btn.loading {
    animation: spin 1s linear infinite;
}

.newsletter-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.newsletter-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 2rem 0;
    }
    
    .newsletter-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        text-align: center;
    }
    
    .newsletter-text {
        width: 100%;
    }
    
    .newsletter-form {
        width: 100%;
        min-width: auto;
    }
    
    .newsletter-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .newsletter-card {
        margin: 0 0.5rem;
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    .newsletter-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .newsletter-form {
        padding: 0.3rem;
        border-radius: 40px;
        min-width: auto;
        flex-wrap: nowrap;
    }
    
    .newsletter-input {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        min-width: 0;
        flex-shrink: 1;
    }
    
    .newsletter-btn {
        width: 32px;
        height: 32px;
        padding: 0.5rem;
        flex-shrink: 0;
    }
    
    .newsletter-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Checkout Form Styles */
.cart-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.checkout-form-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkout-form h3 {
    margin: 0 0 2rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c29c60;
    box-shadow: 0 0 0 2px rgba(194, 156, 96, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.order-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #666;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.payment-methods {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.payment-methods h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.delivery-options {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.delivery-options h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.delivery-location-info {
    background: rgba(194, 156, 96, 0.1);
    border: 1px solid rgba(194, 156, 96, 0.2);
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.delivery-location-info small {
    color: #c29c60;
    font-weight: 500;
    font-size: 0.9rem;
}

.text-muted {
    color: #666;
}

.vat-info {
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.vat-info small {
    color: #888;
    font-size: 0.85rem;
}

.delivery-option {
    margin-bottom: 1rem;
}

.delivery-option:last-child {
    margin-bottom: 0;
}

.delivery-option input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: #c29c60;
}

.delivery-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.delivery-option input[type="radio"]:checked + label {
    border-color: #c29c60;
    background: rgba(194, 156, 96, 0.02);
    box-shadow: 0 2px 8px rgba(194, 156, 96, 0.1);
}

.delivery-option label:hover {
    border-color: #c29c60;
    background: rgba(194, 156, 96, 0.01);
}

.delivery-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.delivery-description {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.delivery-price {
    font-weight: 600;
    color: #c29c60;
    font-size: 1rem;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.delivery-option label {
    position: relative;
    padding-left: 3rem;
}

.delivery-option label::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + label::before {
    border-color: #c29c60;
    background: #c29c60;
    box-shadow: inset 0 0 0 3px white;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-right: 1rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icon.visa {
    background: #1a1f71;
    color: white;
    border-color: #1a1f71;
}

.payment-icon.mastercard {
    background: #eb001b;
    color: white;
    border-color: #eb001b;
}

.payment-icon.maestro {
    background: #0099df;
    color: white;
    border-color: #0099df;
}

.payment-icon.paypal {
    background: #003087;
    color: white;
    border-color: #003087;
}

.loading-spinner-small {
    animation: spin 1s linear infinite;
}

/* Responsive Checkout */
@media (max-width: 1200px) {
    .cart-page-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .checkout-form-section {
        grid-column: 1 / -1;
        order: 2;
    }
    
    .cart-items-section {
        order: 1;
    }
    
    .cart-summary-section {
        order: 3;
    }
}

@media (max-width: 768px) {
    .cart-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-form-section {
        order: 2;
        padding: 1.5rem;
    }
    
    .checkout-form h3 {
        font-size: 1.2rem;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checkout-form-section {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .payment-icon {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Product Detail Delivery Info Styles - Clean & Simple */
.product-delivery-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-delivery-info h4 {
    margin: 0 0 1.5rem 0;
    font-family: 'Playfair Display', serif;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
}

.delivery-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-size-tag {
    display: flex;
    justify-content: flex-start;
}

.size-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    text-transform: uppercase;
}

.size-badge.small {
    background: #4caf50;
}

.size-badge.medium {
    background: #ff9800;
}

.size-badge.large {
    background: #f44336;
}

.delivery-options-simple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.delivery-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
}

.delivery-method {
    color: #333;
    font-weight: 500;
}

.delivery-row .delivery-method {
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    transition: none !important;
}

.delivery-price {
    color: #c29c60;
    font-weight: 600;
    font-size: 1rem;
}

.delivery-note-simple {
    text-align: center;
    margin-top: 0.5rem;
}

.delivery-note-simple p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .delivery-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .delivery-price {
        font-size: 1.1rem;
    }
    
    .product-delivery-info {
        padding: 1rem;
    }
}

/* Sold Product Styles */
.product-card.sold {
    opacity: 0.95;
    position: relative;
}

.product-card.sold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    pointer-events: none;
}

.sold-indicator {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 2;
}

.sold-badge {
    background: linear-gradient(135deg, #8b754a 0%, #c29c60 50%, #8b754a 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 15px rgba(139, 117, 74, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.sold-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 117, 74, 0.45);
    background: linear-gradient(135deg, #9d865a 0%, #d4b070 50%, #9d865a 100%);
}

.sold-badge small {
    font-size: 0.6rem;
    font-weight: 400;
    margin-top: 2px;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.3px;
}

/* Product top bar with sold badge and navigation dots */
.product-top-bar {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 3;
    pointer-events: none;
}

.product-top-bar > * {
    pointer-events: auto;
}

/* Sold indicator positioned absolutely in top left */
.product-top-bar .sold-indicator {
    position: absolute;
    top: 0;
    left: 1rem;
}

/* Top navigation container centered */
.top-nav-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.4rem 0.6rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .top-nav-container {
    opacity: 1;
}

/* Navigation arrows */
.top-nav-arrow {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav-arrow:hover {
    color: #c29c60;
    background: rgba(194, 156, 96, 0.2);
    transform: scale(1.1);
}

.top-nav-arrow:active {
    transform: scale(0.95);
}

/* Top navigation dots */
.top-nav-dots {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.top-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}

.top-dot:hover {
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.top-dot.active {
    background: #c29c60;
    border-color: #c29c60;
    box-shadow: 0 0 10px rgba(194, 156, 96, 0.5);
}

.top-dot[data-media-type="video"] {
    border-color: rgba(194, 156, 96, 0.8);
}

.top-dot[data-media-type="video"]:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 3px solid rgba(255, 255, 255, 0.8);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
}

.top-dot[data-media-type="video"].active:after {
    border-left-color: white;
}

/* Show navigation on mobile */
@media (max-width: 768px) {
    .top-nav-container {
        opacity: 1;
    }
    
    .top-nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
    
    .top-dot {
        width: 12px;
        height: 12px;
    }
}

.basket-btn.disabled {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    border-color: #dee2e6 !important;
}

.basket-btn.disabled:hover {
    background: #e9ecef !important;
    color: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Sold products should still be clickable for details */
.product-card.sold {
    cursor: pointer;
}

/* Animation for sold badge */
.sold-badge {
    animation: soldPulse 2s infinite alternate;
}

@keyframes soldPulse {
    0% {
        box-shadow: 0 4px 15px rgba(139, 117, 74, 0.35);
    }
    100% {
        box-shadow: 0 6px 25px rgba(139, 117, 74, 0.45);
    }
}


/* Sold Status on Product Detail Page */
.sold-status-detail {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(194, 156, 96, 0.08) 0%, 
        rgba(139, 117, 74, 0.12) 50%,
        rgba(194, 156, 96, 0.08) 100%);
    border: 2px solid rgba(194, 156, 96, 0.25);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(194, 156, 96, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.sold-badge-large {
    background: linear-gradient(135deg, #8b754a 0%, #c29c60 50%, #8b754a 100%);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 6px 20px rgba(139, 117, 74, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: inline-block;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.sold-badge-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%);
    border-radius: 28px;
    pointer-events: none;
}

.sold-message {
    color: #8b754a;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 200px;
    text-align: center;
}

/* Admin Panel Sold Status Styles */
.sold-tag {
    background: linear-gradient(135deg, #8b754a 0%, #c29c60 50%, #8b754a 100%) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 3px 12px rgba(139, 117, 74, 0.4) !important;
    animation: soldPulse 2s infinite alternate;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.product-sold-toggle {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.sold-toggle-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.sold-checkbox {
    position: relative;
    width: 50px;
    height: 24px;
    appearance: none;
    background: #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sold-checkbox:checked {
    background: #dc2626;
}

.sold-checkbox::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sold-checkbox:checked::before {
    transform: translateX(26px);
}

.sold-toggle-text {
    font-weight: 500;
    color: #374151;
    min-width: 60px;
}

.sold-checkbox:checked + .sold-toggle-slider + .sold-toggle-text {
    color: #dc2626;
    font-weight: 600;
}

/* Hide the default slider since we're styling the checkbox directly */
.sold-toggle-slider {
    display: none;
}

/* Contact Map Section */
.contact-map-section {
    margin: 3rem 0;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

.map-container {
    padding: 3rem 2rem;
    text-align: center;
}

.map-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-container > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.map-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.map-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.address-details {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.visit-info {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(194, 156, 96, 0.05) 0%, rgba(194, 156, 96, 0.1) 100%);
    border: 1px solid rgba(194, 156, 96, 0.2);
    border-radius: 12px;
}

/* Contact form messages */
.form-message {
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.05) 100%);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-content svg {
    flex-shrink: 0;
}

/* Responsive map section */
@media (max-width: 768px) {
    .contact-map-section {
        margin: 2rem 0;
    }
    
    .map-container {
        padding: 2rem 1.5rem;
    }
    
    .map-container h2 {
        font-size: 1.8rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .form-message {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Payment and Delivery Hero Styles */
.payment-delivery-hero {
    background: linear-gradient(135deg, #c29c60 0%, #e4c578 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    color: white;
}

.payment-delivery-hero .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.payment-delivery-hero .hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-delivery-hero .hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-features .feature-icon svg {
    width: 24px;
    height: 24px;
}

.hero-features .feature-item span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    text-shadow: none;
}

/* Payment and Delivery Grid */
.payment-delivery-grid {
    margin-bottom: 3rem;
}

.payment-delivery-grid .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.section-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-card .header-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-card .header-icon {
    background: linear-gradient(135deg, #c29c60 0%, #e4c578 100%);
    color: white;
}

.delivery-card .header-icon {
    background: linear-gradient(135deg, #c29c60 0%, #e4c578 100%);
    color: white;
}

.section-card .header-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-card .header-text p {
    color: #666;
    margin: 0;
}

.payment-options,
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-options .option-card,
.delivery-options .option-card {
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    background: #fafbfc;
    transform: translateY(0);
}

.payment-options .option-card:not(.recommended):not(.free):not(.premium):hover,
.delivery-options .option-card:not(.recommended):not(.free):not(.premium):hover {
    border-color: #c29c60;
    box-shadow: 0 8px 25px rgba(194, 156, 96, 0.15);
    background: white;
    transform: translateY(-2px);
}

.option-card.recommended:hover {
    box-shadow: 0 12px 30px rgba(194, 156, 96, 0.25);
    transform: translateY(-2px);
}

.option-card.free:hover {
    box-shadow: 0 12px 30px rgba(194, 156, 96, 0.25);
    transform: translateY(-2px);
}

.option-card.premium:hover {
    box-shadow: 0 12px 30px rgba(165, 144, 110, 0.25);
    transform: translateY(-2px);
}

.option-card.recommended {
    border-color: #c29c60;
    background: linear-gradient(135deg, #c29c60 0%, #e4c578 100%);
    color: white;
}

.option-card.free {
    border-color: #c29c60;
    background: linear-gradient(135deg, #c29c60 0%, #e4c578 100%);
    color: white;
}

.option-card.premium {
    border-color: #a5906e;
    background: linear-gradient(135deg, #a5906e 0%, #c29c60 100%);
    color: white;
}

.option-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #c29c60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.free-badge {
    background: #c29c60;
}

.premium-badge {
    background: #a5906e;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-header .option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-card:not(.recommended):not(.free):not(.premium) .option-icon {
    background: #c29c60;
    color: white;
}

.option-title {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-title h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.option-title .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c29c60;
}

.option-card.recommended .price,
.option-card.free .price,
.option-card.premium .price {
    color: white;
}

.option-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.payment-logos {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.payment-logo {
    height: 30px;
    width: auto;
    border-radius: 6px;
}

.bank-info {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bank-detail {
    font-size: 0.95rem;
    opacity: 0.9;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.delivery-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.delivery-details .detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.delivery-details .detail.special {
    color: #c29c60;
    opacity: 1;
    font-weight: 500;
}

.additional-info {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.additional-info small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
}

.contact-cta .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.contact-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.contact-cta .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
    opacity: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-features .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(194, 156, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-features .feature-icon svg {
    color: #c29c60;
    width: 24px;
    height: 24px;
}

.cta-features .feature-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.cta-features .feature-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #e5e7eb;
    opacity: 1;
}

/* Mobile Responsive for Payment/Delivery */
@media (max-width: 768px) {
    .payment-delivery-hero {
        padding: 2rem 1.5rem;
    }
    
    .payment-delivery-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-delivery-hero .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-delivery-grid .grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-card {
        padding: 1.5rem;
    }
    
    .section-card .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-card .header-text h2 {
        font-size: 1.5rem;
    }
    
    .option-title {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .payment-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Terms of Service Contact Section Styles */
.terms-container .contact-section {
  background: linear-gradient(135deg, #c29c60 0%, #d4a574 100%) !important;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 2rem;
  text-align: center;
  color: white;
  border: none !important;
}

.terms-container .contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem !important;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white !important;
}

.terms-container .contact-section p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: white !important;
  line-height: 1.6;
  opacity: 1;
}

.contact-info-terms {
  margin-top: 1rem;
}

.contact-methods-terms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-method-terms {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.1rem;
  min-width: 300px;
  text-align: center;
}

.contact-method-terms strong {
  color: white;
  font-weight: 600;
}

.contact-method-terms a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.contact-method-terms a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .terms-container .contact-section {
    padding: 2rem 1.5rem;
  }
  
  .terms-container .contact-section h2 {
    font-size: 1.8rem !important;
  }
  
  .contact-method-terms {
    min-width: auto;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* Checkout Payment Options */
.payment-options-checkout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-options-checkout .payment-option {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    background: white;
}

.payment-options-checkout .payment-option:hover {
    border-color: #c29c60;
}

.payment-options-checkout .payment-option input[type="radio"] {
    display: none;
}

.payment-options-checkout .payment-option input[type="radio"]:checked + label {
    border-color: #c29c60;
    background: #fafbfc;
}

.payment-options-checkout .payment-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    border-radius: 10px;
    margin: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-options-checkout .payment-option input[type="radio"]:checked + label {
    border-color: #c29c60;
    background: rgba(194, 156, 96, 0.05);
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.payment-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.payment-description {
    font-size: 0.875rem;
    color: #666;
    opacity: 0.8;
}

.payment-logos-mini {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.payment-logo-mini {
    height: 20px;
    width: auto;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .payment-options-checkout .payment-option label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .payment-logos-mini {
        align-self: flex-end;
    }
}

/* Modern Checkout Progress */
.checkout-progress {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    width: 60px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.step:last-child::after {
    display: none;
}

.step.active::after,
.step.completed::after {
    background: #c29c60;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #c29c60;
    color: white;
    border-color: #c29c60;
}

.step.completed .step-number {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: #c29c60;
    font-weight: 600;
}

.step.completed .step-label {
    color: #10b981;
    font-weight: 600;
}

/* Modern Checkout Container */
.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

/* Cart Items Section */
.cart-items-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.item-count {
    background: #c29c60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Modern Cart Items */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.modern-cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modern-cart-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.item-image-modern {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.item-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details-modern h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.item-category-modern {
    color: #666;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
}

.item-price-modern {
    color: #c29c60;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.item-quantity-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.item-quantity-modern label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.quantity-controls-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.25rem;
    background: white;
}

.quantity-controls-modern .qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #f3f4f6;
    color: #666;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-controls-modern .qty-btn:hover {
    background: #c29c60;
    color: white;
}

.quantity-input-modern {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #1a1a1a;
}

.item-total-modern {
    text-align: right;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.item-remove-modern {
    display: flex;
    justify-content: center;
}

.remove-item-btn-modern {
    width: 36px;
    height: 36px;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn-modern:hover {
    background: #dc2626;
    color: white;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f8f9fa;
}

/* Order Summary Card */
.order-summary-section {
    position: relative;
}

.order-summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.order-summary-card.sticky {
    position: sticky;
    top: 2rem;
}

.order-summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-info {
    color: #666;
    font-size: 0.95rem;
}

.item-total {
    font-weight: 600;
    color: #1a1a1a;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1a1a1a;
    padding: 1rem 0;
    border-top: 2px solid #f8f9fa;
    margin-top: 1rem;
}

.summary-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.step-actions .btn {
    flex: 1;
}

/* Delivery Payment Container */
.delivery-payment-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.delivery-section,
.payment-section {
    margin-bottom: 3rem;
}

.delivery-section:last-child,
.payment-section:last-child {
    margin-bottom: 0;
}

.delivery-section h3,
.payment-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1.5rem 0;
}

.delivery-options-modern,
.payment-options-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-option-modern,
.payment-option-modern {
    position: relative;
}

.delivery-option-modern input[type="radio"],
.payment-option-modern input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.delivery-label-modern,
.payment-label-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.delivery-label-modern:hover,
.payment-label-modern:hover {
    border-color: #c29c60;
    background: white;
}

.delivery-option-modern input[type="radio"]:checked + .delivery-label-modern,
.payment-option-modern input[type="radio"]:checked + .payment-label-modern {
    border-color: #c29c60;
    background: rgba(194, 156, 96, 0.05);
}

.delivery-icon-modern,
.payment-icon-modern {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(194, 156, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c29c60;
    flex-shrink: 0;
}

.delivery-info-modern,
.payment-info-modern {
    flex: 1;
}

.delivery-info-modern h4,
.payment-info-modern h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.delivery-info-modern p,
.payment-info-modern p {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.delivery-time {
    font-size: 0.875rem;
    color: #c29c60;
    font-weight: 500;
}

.delivery-price-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
    margin-left: auto;
}

.payment-logos-modern {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.payment-logos-modern img {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

/* Checkout Form */
.checkout-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.checkout-form-container h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2rem 0;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
}

.privacy-checkbox label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.privacy-checkbox a {
    color: #c29c60;
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

.form-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

/* Final Summary */
.final-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.final-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #fafbfc;
    border-radius: 8px;
}

.final-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.final-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.final-item-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.final-item-quantity {
    font-size: 0.875rem;
    color: #666;
}

.final-item-price {
    font-weight: 600;
    color: #c29c60;
    font-size: 0.95rem;
    margin-left: auto;
}

.final-totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Empty Cart Modern */
.cart-empty-modern {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.empty-illustration {
    margin-bottom: 2rem;
}

.empty-illustration svg {
    color: #c29c60;
}

.cart-empty-modern h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.cart-empty-modern p {
    color: #666;
    font-size: 1.125rem;
    margin: 0 0 2rem 0;
}

.empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .progress-steps {
        gap: 2rem;
    }
    
    .step::after {
        width: 30px;
        left: 35px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .item-quantity-modern {
        flex-direction: row;
        justify-content: center;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .delivery-label-modern,
    .payment-label-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .delivery-price-modern {
        margin-left: 0;
        text-align: center;
    }
    
    .empty-actions {
        flex-direction: column;
        align-items: center;
    }
}


/* Payment Result Pages */
.payment-result-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.payment-result-content {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(194, 156, 96, 0.2);
}

.success-icon svg,
.failure-icon svg {
    margin: 0 auto 2rem;
    display: block;
    border-radius: 50%;
    padding: 1rem;
}

.success-icon svg {
    color: white;
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.failure-icon svg {
    color: white;
    background: linear-gradient(135deg, #f44336, #da190b);
}

.payment-result-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.payment-result-container.success h1 {
    color: #4CAF50;
}

.payment-result-container.failure h1 {
    color: #f44336;
}

.success-message,
.failure-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-info,
.failure-reasons,
.alternative-payment {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.order-summary h3,
.failure-reasons h3,
.alternative-payment h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.order-details {
    margin: 1rem 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: #666;
    font-weight: 500;
}

.detail-row .value {
    color: #333;
    font-weight: 600;
}

.status-paid {
    color: #4CAF50 !important;
    background: rgba(76, 175, 80, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.next-steps {
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

.failure-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.failure-reasons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.failure-reasons li:last-child {
    border-bottom: none;
}

.failure-reasons li:before {
    content: "•";
    color: #f44336;
    margin-right: 0.5rem;
    font-weight: bold;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.payment-option strong {
    color: #c29c60;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-option p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.success-actions,
.failure-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #c29c60;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Payment Result Mobile Styles */
@media (max-width: 768px) {
    .payment-result-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .payment-result-content h1 {
        font-size: 2rem;
    }
    
    .success-actions,
    .failure-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .detail-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* Fix for news section links on homepage */
.novosti-section a,
.novosti-grid a,
#featured-news-homepage-container a {
    text-decoration: none !important;
}
