/* ZIORA — Premium Fashion Store Stylesheet
   Color palette: Deep charcoal, warm gold, cream
*/

:root {
  --color-primary: #1a1a2e;
  --color-primary-light: #2d2d44;
  --color-primary-dark: #0f0f1e;
  --color-accent: #d4af37;
  --color-accent-light: #e6c558;
  --color-accent-dark: #b8941f;
  --color-cream: #faf8f5;
  --color-light: #f5f3f0;
  --color-muted: #8e8e93;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-border: #e5e5e5;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: #fff;
  line-height: 1.6;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--color-accent);
}

/* Announcement Bar */
.announcement-bar {
  padding: 9px 0;
  background: #111;
  color: #fff;
  font-size: 14px;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Left Side */
.announcement-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-left i {
  font-size: 18px;
}

.announcement-left span {
  white-space: nowrap;
}

/* Right Side */
.announcement-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.announcement-login,
.announcement-signup {
  text-decoration: none;
  font-size: 13px;
  padding: 5px 13px;
  transition: all 0.3s ease;
}

.announcement-login {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.announcement-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.announcement-signup {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}

.announcement-signup:hover {
  background: transparent;
  color: #fff;
}

.announcement-user {
  font-size: 14px;
}

/* Navbar */
.navbar-ziora {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  transition: var(--transition);
}
.navbar-ziora.sticky-top.scrolled {
  box-shadow: var(--shadow-sm);
}
.brand-logo {
  text-decoration: none;
}
.brand-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--color-primary);
}
.navbar-ziora .nav-link {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-ziora .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-ziora .nav-link:hover::after,
.navbar-ziora .nav-link.active::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icon-link {
  color: var(--color-primary);
  font-size: 20px;
  position: relative;
  transition: var(--transition);
}
.nav-icon-link:hover {
  color: var(--color-accent);
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Slider */
.hero-slider {
  margin-bottom: 0;
  overflow: hidden;
}
.hero-slider .carousel-item {
  overflow: hidden;
}
.hero-slider .slider-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  will-change: transform;
}
.hero-slider .carousel-item.active .slider-img {
  animation: heroZoom 5s ease-in-out forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.slider-caption {
  bottom: 40%;
  text-align: center;
  left: 0;
  right: 0;
}
.slider-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}
.slider-subtitle {
  font-size: 20px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

/* Buttons */
.btn-ziora-dark {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-ziora-dark:hover,
.btn-ziora-dark:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-ziora-light {
  background: #fff;
  color: var(--color-primary);
  border: none;
  padding: 10px 28px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}
.btn-ziora-light:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.btn-ziora-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 8px 24px;
  font-weight: 500;
  transition: var(--transition);
}
.btn-ziora-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Sections */
.section-ziora {
  padding: 60px 0;
}
.bg-light-ziora {
  background: var(--color-light);
}
.section-header {
  margin-bottom: 40px;
}
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-subtitle {
  color: var(--color-muted);
  font-size: 16px;
}

/* Category Cards */
.category-card {
  display: block;
  text-align: center;
  transition: var(--transition);
}
.category-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}
.category-card:hover .category-img {
  border-color: var(--color-accent);
  transform: scale(1.05);
}
.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-name {
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}

/* Product Cards */
.product-card-ziora {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-ziora:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-light);
  width: 100%;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card-ziora:hover .product-card-img img {
  transform: scale(1.08);
}
.product-badge {
  position: absolute;
  top: 8px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 2;
}
.discount-badge {
  left: 8px;
  background: var(--color-danger);
  color: #fff;
}
.new-badge {
  right: 8px;
  background: var(--color-primary);
  color: #fff;
}
.bestseller-badge {
  right: 8px;
  top: 34px;
  background: var(--color-accent);
  color: var(--color-primary);
}
.product-card-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: var(--transition);
}
.product-card-ziora:hover .product-card-actions {
  opacity: 1;
}
.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.product-action-btn:hover {
  background: var(--color-accent);
}
.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-category {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0 0 4px;
}
.product-card-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}
.product-card-title a {
  color: var(--color-primary);
}
.product-card-title a:hover {
  color: var(--color-accent);
}
.product-card-price {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}
.price-sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}
.price-regular {
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.product-card-add-form {
  margin-top: auto;
}
.product-card-add-form button {
  font-size: 13px;
  width: 100%;
}

/* Promo Banner */
.promo-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.promo-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: center;
}
.promo-banner-overlay h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
}
.promo-banner-overlay p {
  color: #fff;
  margin-bottom: 16px;
}

/* Brand Section */
.brand-section {
  padding: 80px 0;
  background: var(--color-primary);
  color: #fff;
}
.brand-section-title {
  color: var(--color-accent);
  font-size: 32px;
  margin-bottom: 20px;
}
.brand-section-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1.8;
}
.brand-image-placeholder {
  width: 100%;
  height: 400px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.brand-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--color-accent);
  opacity: 0.5;
}

/* Why Section */
.why-section {
  padding: 60px 0;
  background: var(--color-light);
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 8px;
  transition: var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
}
.feature-card i {
  font-size: 40px;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.feature-card h5 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--color-muted);
  font-size: 14px;
  margin: 0;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  height: 100%;
}
.testimonial-stars {
  color: var(--color-accent);
  margin-bottom: 12px;
}
.testimonial-card p {
  font-style: italic;
  color: #555;
}
.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

/* Newsletter */
.newsletter-section {
  padding: 60px 0;
  background: var(--color-primary);
  color: #fff;
}
.newsletter-content h2 {
  color: var(--color-accent);
  margin-bottom: 12px;
}
.newsletter-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
}

/* Footer */
.footer-ziora {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.footer-about {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.7;
}
.footer-tagline {
  color: var(--color-accent);
  font-size: 13px;
  font-style: italic;
}
.footer-heading {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--color-accent);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact a:hover {
  color: var(--color-accent);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* Page Header */
.page-header-ziora {
  background: var(--color-light);
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
}
.page-title {
  font-size: 28px;
  margin: 0;
}
.page-subtitle {
  color: var(--color-muted);
  margin: 4px 0 0;
}
.breadcrumb-ziora {
  margin: 0 0 12px;
  font-size: 13px;
}
.breadcrumb-ziora a {
  color: var(--color-muted);
}
.breadcrumb-ziora .active {
  color: var(--color-primary);
}

/* Filter Sidebar */
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px;
  position: sticky;
  top: 100px;
}
.filter-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.filter-group:last-child {
  border-bottom: none;
}
.filter-group h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Product Detail */
.product-detail-row {
  margin-bottom: 40px;
}
.product-main-image {
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
  position: relative;
  cursor: zoom-in;
}
.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.1s ease-out;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-thumbnails .thumb {
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-thumbnails .thumb.active,
.product-thumbnails .thumb:hover {
  border-color: var(--color-accent);
}
.product-thumbnails .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail-category {
  color: var(--color-muted);
  font-size: 14px;
  margin: 0 0 8px;
}
.product-detail-title {
  font-size: 28px;
  margin: 0 0 12px;
}
.product-detail-rating {
  margin-bottom: 16px;
}
.product-detail-rating .bi-star-fill,
.product-detail-rating .bi-star-half {
  color: var(--color-accent);
}
.rating-text {
  color: var(--color-muted);
  font-size: 14px;
  margin-left: 8px;
}
.product-detail-price {
  margin-bottom: 16px;
}
.product-detail-price .price-sale {
  font-size: 28px;
}
.product-detail-price .discount-tag {
  background: var(--color-danger);
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 13px;
  margin-left: 8px;
}
.product-detail-short-desc {
  color: #555;
  margin-bottom: 20px;
}
.product-detail-meta {
  margin-bottom: 20px;
  font-size: 14px;
}
.product-detail-meta p {
  margin: 0 0 4px;
}
.variant-group {
  margin-bottom: 16px;
}
.variant-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.variant-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.variant-btn {
  padding: 8px 16px;
  border: 2px solid var(--color-border);
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.variant-btn:hover {
  border-color: var(--color-primary);
}
.variant-btn.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.quantity-selector {
  margin-bottom: 16px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-light);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.qty-input {
  width: 50px;
  height: 36px;
  border: none;
  text-align: center;
  font-weight: 600;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.qty-display {
  width: 50px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.qty-control-sm .qty-btn,
.qty-control-sm .qty-display {
  height: 30px;
}
.qty-control-sm .qty-btn {
  width: 30px;
}
.product-detail-actions {
  display: flex;
  gap: 12px;
}
.product-detail-actions .btn {
  flex: 1;
}

/* Product Tabs */
.product-tabs {
  margin-top: 40px;
}
.nav-tabs-ziora {
  border-bottom: 2px solid var(--color-border);
}
.nav-tabs-ziora .nav-link {
  border: none;
  padding: 12px 24px;
  font-weight: 500;
  color: var(--color-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.nav-tabs-ziora .nav-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
}

/* Cart */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 16px;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h6 {
  margin: 0 0 4px;
}
.cart-item-variant {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0 0 4px;
}
.cart-item-price {
  font-weight: 600;
  margin: 0;
}
.cart-item-total {
  text-align: right;
  min-width: 100px;
}
.item-total-amount {
  font-weight: 700;
  font-size: 16px;
}
.btn-remove-item {
  background: none;
  border: none;
  color: var(--color-danger);
  font-size: 16px;
  cursor: pointer;
}
.cart-summary {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.cart-summary-title {
  font-size: 18px;
  margin-bottom: 20px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cart-summary-total {
  font-size: 20px;
  font-weight: 700;
}

/* Checkout */
.checkout-section,
.checkout-summary {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
}
.checkout-section-title {
  font-size: 18px;
  margin-bottom: 20px;
}
.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delivery-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.delivery-option:has(input:checked) {
  border-color: var(--color-primary);
}
.delivery-option-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.delivery-option-charge {
  font-weight: 700;
  color: var(--color-accent);
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
}
.payment-option:has(input:checked) {
  border-color: var(--color-primary);
}
.payment-option-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-option i {
  font-size: 28px;
  color: var(--color-accent);
}
.checkout-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 16px;
}
.checkout-item {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.checkout-item-img {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.checkout-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.checkout-item-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}
.checkout-item-info {
  flex: 1;
}
.checkout-item-name {
  font-size: 13px;
  margin: 0;
}
.checkout-item-variant {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0;
}
.checkout-item-price {
  font-weight: 600;
  font-size: 13px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.checkout-summary-total {
  font-size: 20px;
  font-weight: 700;
}

/* Order Success */
.order-success-icon {
  font-size: 64px;
  color: var(--color-success);
  margin-bottom: 20px;
}
.order-success-title {
  font-size: 32px;
  margin-bottom: 12px;
}
.order-success-text {
  color: var(--color-muted);
  margin-bottom: 30px;
}
.order-success-card {
  background: var(--color-light);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  margin-bottom: 20px;
}
.order-success-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.order-success-row:last-child {
  border-bottom: none;
}

/* Auth */
.auth-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.auth-title {
  font-size: 28px;
  margin-bottom: 8px;
}
.auth-subtitle {
  color: var(--color-muted);
  margin-bottom: 24px;
}
.auth-footer {
  margin-top: 24px;
  text-align: center;
}
.auth-footer a {
  color: var(--color-accent);
  font-weight: 500;
}

/* Account */
.account-sidebar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.account-user-info {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.account-avatar {
  font-size: 48px;
  color: var(--color-accent);
}
.account-user-info h5 {
  margin: 8px 0 0;
}
.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.account-nav li {
  border-bottom: 1px solid var(--color-border);
}
.account-nav li:last-child {
  border-bottom: none;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.account-nav a:hover {
  background: var(--color-light);
}
.account-nav li.active a {
  background: var(--color-primary);
  color: #fff;
}
.account-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px;
}
.account-stat-card i {
  font-size: 32px;
  color: var(--color-accent);
}
.account-stat-card h3 {
  font-size: 24px;
  margin: 0;
}
.account-stat-card p {
  margin: 0;
  font-size: 13px;
  color: var(--color-muted);
}
.account-section {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 24px;
}

/* Order Status Badges */
.order-status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.status-pending {
  background: #fff3cd;
  color: #856404;
}
.status-confirmed {
  background: #d1ecf1;
  color: #0c5460;
}
.status-processing {
  background: #cce5ff;
  color: #004085;
}
.status-shipped {
  background: #d4edda;
  color: #155724;
}
.status-delivered {
  background: #d4edda;
  color: #155724;
}
.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}
.payment-status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.payment-pending {
  background: #fff3cd;
  color: #856404;
}
.payment-paid {
  background: #d4edda;
  color: #155724;
}
.payment-failed {
  background: #f8d7da;
  color: #721c24;
}
.payment-refunded {
  background: #e2e3e5;
  color: #383d41;
}

/* Tables */
.table-ziora thead th {
  border-bottom: 2px solid var(--color-primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-muted);
}
.table-ziora tbody tr {
  border-bottom: 1px solid var(--color-border);
}

/* Order Totals */
.order-totals {
  margin-top: 16px;
}
.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
}
.order-total-grand {
  font-size: 18px;
  font-weight: 700;
  border-top: 2px solid var(--color-primary);
  padding-top: 12px;
  margin-top: 8px;
}

/* Empty State */
.empty-state {
  padding: 60px 20px;
}
.empty-icon {
  font-size: 60px;
  color: var(--color-muted);
  margin-bottom: 20px;
  display: block;
}

/* Pagination */
.pagination-ziora .pagination {
  justify-content: center;
}
.pagination .page-link {
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}
.pagination .page-item.active .page-link {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* About Page */
.about-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.about-hero-title {
  color: var(--color-accent);
  font-size: 40px;
  margin-bottom: 8px;
}
.about-hero-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin: 0;
}
.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-image-block {
  border-radius: 8px;
  overflow: hidden;
}
.about-image-placeholder {
  width: 100%;
  height: 350px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 50px;
  color: var(--color-accent);
  letter-spacing: 6px;
}
.about-feature-card {
  text-align: center;
  padding: 30px;
  background: var(--color-light);
  border-radius: 8px;
  height: 100%;
}
.about-feature-card i {
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.about-mission-card {
  background: var(--color-light);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
}
.about-mission-card h4 {
  margin-bottom: 12px;
}
.about-list {
  list-style: none;
  padding: 0;
}
.about-list li {
  padding: 6px 0;
  color: #555;
}
.about-list li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 8px;
}

/* Contact */
.contact-form-wrapper,
.contact-info-wrapper {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 30px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-item i {
  font-size: 24px;
  color: var(--color-accent);
}
.contact-info-label {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
}
.contact-info-item a,
.contact-info-item p {
  color: var(--color-primary);
  margin: 0;
}

/* Policy */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
}
.policy-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}
.policy-content ul {
  padding-left: 20px;
}

/* Toast */
.toast {
  background: var(--color-primary);
  color: #fff;
}
.toast-body {
  padding: 16px;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .product-detail-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-ziora {
    padding: 40px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .slider-img {
    height: 400px;
  }
  .slider-title {
    font-size: 28px;
  }
  .slider-subtitle {
    font-size: 16px;
  }
  .cart-item-row {
    flex-wrap: wrap;
  }
  .cart-item-total {
    width: 100%;
    text-align: left;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .product-detail-title {
    font-size: 22px;
  }
  .checkout-item {
    flex-wrap: wrap;
  }
  .announcement-content {
    gap: 10px;
  }
  .announcement-left {
    overflow: hidden;
  }
  .announcement-left span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .announcement-auth {
    flex-shrink: 0;
  }
  .announcement-login,
  .announcement-signup {
    padding: 4px 8px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .product-card-body {
    padding: 10px;
  }
  .product-card-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .product-card-category {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .price-sale {
    font-size: 14px;
  }
  .price-regular {
    font-size: 12px;
  }
  .product-card-add-form button {
    font-size: 12px;
    padding: 6px 10px;
  }
  .product-badge {
    font-size: 9px;
    padding: 3px 6px;
  }
  .bestseller-badge {
    top: 28px;
  }
}

/* ////////// */

/* Additional Mobile Adjustments */

@media (max-width: 991px) {
  /* Navbar Mobile Layout Fix */
  .navbar-ziora .container,
  .navbar-ziora .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .brand-text {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-icon-link {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* Hero Slider Mobile Scaling Fix */
  .hero-slider .slider-img {
    height: 380px; /* Reduces forced height so image fits mobile screens */
  }

  .slider-caption {
    bottom: 20%;
    padding: 0 15px;
  }

  .slider-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .slider-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-slider .btn-ziora-light,
  .hero-slider .btn-ziora-dark {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  /* Ultra-narrow screen fix (e.g. iPhone SE / iPhone 12 Pro) */
  .brand-text {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .nav-actions {
    gap: 8px;
  }
}
