:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4af37;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #ffffff;
  --bg-light: #f8f8f8;
  --border-color: #e5e5e5;
  --hover-color: #f0f0f0;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
}

html {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  scroll-behavior: smooth;
}

main {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

/* Top Banner - Removed */

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
  width: 100%;
}

.header-top {
  background-color: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0;
  font-size: 13px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left,
.header-top-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.header-link:hover {
  color: var(--secondary-color);
}

.header-link i {
  margin-right: 5px;
}

.header-selectors {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select,
.currency-select {
  border: none;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 30px;
}

.language-select:hover,
.currency-select:hover {
  background-color: rgba(255,255,255,0.25);
}

.language-select option,
.currency-select option {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px;
}

.header-social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 15px;
}

.header-social-link {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.header-social-link:hover {
  color: var(--secondary-color);
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Header Search Bar */
.header-search {
  flex: 0 0 auto;
  max-width: 250px;
  width: 250px;
  margin: 0 5px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon-left {
  position: absolute;
  left: 15px;
  color: var(--text-light);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.search-input {
  width: 100%;
  padding: 10px 15px 10px 45px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.3s;
  outline: none;
}

.search-input:focus {
  border-color: var(--secondary-color);
}

.search-input::placeholder {
  color: var(--text-light);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-color);
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.mobile-menu-toggle:hover {
  color: var(--secondary-color);
}

.mobile-menu-overlay {
  display: none;
}

.logo {
  margin-right: auto;
  margin-left: 0;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 0;
  flex-shrink: 0;
  min-width: 0;
}

.nav-icon {
  position: relative;
  color: var(--text-color);
  font-size: 20px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 40px;
  min-height: 40px;
}

.nav-icon:hover {
  color: var(--secondary-color);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  min-width: 220px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  overflow: hidden;
}

.user-menu:hover .user-dropdown,
.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 15px 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.user-dropdown-header strong {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  margin-bottom: 5px;
}

.user-dropdown-header span {
  display: block;
  color: var(--text-light);
  font-size: 12px;
}

.user-dropdown-menu {
  padding: 5px 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
}

.user-dropdown-item:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
}

.user-dropdown-item i {
  width: 18px;
  text-align: center;
}

.logout-btn {
  color: #e74c3c;
}

.logout-btn:hover {
  background: #fee;
  color: #c33;
}

.nav-icon .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Main Menu */
.main-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex: 1;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.mobile-menu-header {
  display: none;
}

.menu-item {
  position: relative;
}

.menu-item > a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-item > a:hover {
  color: var(--secondary-color);
}

.menu-item > a i {
  font-size: 10px;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  min-width: 250px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 100;
  box-sizing: border-box;
}

.menu-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 10px 0;
}

.dropdown-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.dropdown-column a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  padding: 12px 20px;
  font-size: 14px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}

.dropdown-column a:last-child {
  border-bottom: none;
}

.dropdown-column a:hover {
  background-color: var(--bg-light);
  padding-left: 25px;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-slide {
  display: none;
  height: 100%;
}

.hero-slide.active {
  display: block;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 50%;
  max-width: 48%;
  padding: 0 60px;
  box-sizing: border-box;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  min-width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.section-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  color: var(--text-color);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Featured Collections */
.featured-section {
  padding: 80px 0;
  background: var(--bg-light);
  width: 100%;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.collection-image {
  height: 300px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.collection-image img,
.collection-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  transition: transform 0.3s;
}

.collection-image video {
  background: #000;
}

.collection-card:hover .collection-image img {
  transform: scale(1.1);
}

.collection-content {
  padding: 25px;
}

.collection-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.collection-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.collection-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.collection-link:hover {
  gap: 10px;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--bg-light);
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

.product-image img,
.product-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  transition: transform 0.3s;
}

.product-image video {
  background: #000;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view,
.add-to-wishlist {
  background: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.add-to-wishlist {
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.quick-view:hover,
.add-to-wishlist:hover {
  background: var(--secondary-color);
  color: #fff;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge.new {
  background: var(--secondary-color);
  color: #fff;
}

.product-badge.sale {
  background: #e74c3c;
  color: #fff;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-title,
.product-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-color);
  text-decoration: none;
}

.product-title a,
.product-name a {
  text-decoration: none;
}

a .product-title,
a .product-name {
  text-decoration: none;
}

.product-description {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  font-size: 13px;
}

.product-rating i {
  color: #ffc107;
}

.product-rating span {
  color: var(--text-light);
  margin-left: 5px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: auto;
  margin-top: 8px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.old-price {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px;
  margin-top: auto;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: var(--secondary-color);
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: var(--bg-light);
  width: 100%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: #fff;
  padding: 60px 0 0;
  width: 100%;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.social-links a:hover {
  background: var(--secondary-color);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form .btn-primary {
  background: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.search-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-width: min(600px, 90vw);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1;
  box-sizing: border-box;
}

.search-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-modal-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.search-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  transition: color 0.3s;
}

.search-modal-close:hover {
  color: var(--secondary-color);
}

.search-modal-body {
  padding: 25px;
}

.search-bar-modal {
  position: relative;
  margin-bottom: 20px;
}

.search-bar-modal input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.search-bar-modal input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.search-btn-modal {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.search-btn-modal:hover {
  background: var(--secondary-color);
}

.search-suggestions {
  max-height: 300px;
  overflow-y: auto;
}

.search-suggestion-item {
  padding: 12px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 0.3s;
}

.search-suggestion-item:hover {
  background: var(--bg-light);
}

.search-suggestion-item:last-child {
  border-bottom: none;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -66.67%;
  width: 66.67%;
  max-width: 66.67vw;
  height: 100vh;
  background: var(--bg-color);
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 28px 24px;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(to bottom, var(--bg-color) 0%, var(--bg-light) 100%);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.cart-header span {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.5px;
  position: relative;
  display: flex;
  align-items: center;
}

.cart-header span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}



.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: var(--bg-light);
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: var(--bg-light);
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

.empty-cart {
  text-align: center;
  color: var(--text-light);
  padding: 60px 20px;
  font-size: 16px;
}

.cart-sidebar-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-color);
  transition: background 0.2s ease;
}

.cart-sidebar-item > div {
  flex: 1;
  min-width: 0;
}

.cart-sidebar-item:hover {
  background: var(--bg-light);
}

.cart-sidebar-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.cart-sidebar-item h4 {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.4;
}

.cart-sidebar-item h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-sidebar-item h4 a:hover {
  color: var(--secondary-color);
}

.cart-sidebar-item p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.cart-sidebar-item .quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cart-sidebar-item .quantity-controls button {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-color);
  transition: all 0.2s ease;
  font-weight: 600;
}

.cart-sidebar-item .quantity-controls button:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
}

.cart-sidebar-item .quantity-controls span {
  min-width: 35px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 15px;
}

.cart-sidebar-item .remove-btn {
  margin-left: 0;
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 600;
}

.cart-sidebar-item .remove-btn i {
  color: #dc3545;
}

.cart-sidebar-item .remove-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545 !important;
}

.cart-sidebar-item .remove-btn:hover i {
  color: #dc3545 !important;
}

.cart-footer {
  padding: 24px 20px;
  border-top: 2px solid var(--border-color);
  background: var(--bg-color);
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.cart-total {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.cart-total strong {
  font-family: var(--font-display);
}

.cart-footer .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
}

.cart-footer .btn-primary {
  background: var(--primary-color);
  color: var(--bg-color);
  margin-bottom: 12px;
}

.cart-footer .btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-footer .btn-secondary {
  background: var(--bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cart-footer .btn-secondary:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    width: 50%;
    max-width: 50%;
    padding: 0 40px;
  }

  .hero-image {
    width: 50%;
  }

  .hero-title {
    font-size: 36px;
  }

  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive Header Search */
@media (max-width: 1024px) {
  .header-search {
    max-width: 300px;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .header-search {
    display: none;
  }
  html, body {
    width: 100%;
  }

  section {
    width: 100%;
  }

  .collections-grid,
  .products-grid,
  .features-grid {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-menu-toggle {
    display: block;
    margin-right: 10px;
    margin-left: -15px;
    order: -1;
    z-index: 1001;
    position: relative;
  }

  .nav-main {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
  }

  .logo {
    margin-left: -30px;
    margin-right: auto;
    order: 0;
    flex: 0;
    text-align: left;
  }

  .logo h1 {
    font-size: 22px;
  }

  .main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 66.67%;
    max-width: 66.67vw;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 0;
    box-sizing: border-box;
    list-style: none;
    justify-content: flex-start;
  }

  .main-menu.active {
    left: 0;
  }

  .mobile-menu-header {
    display: block;
    width: 100%;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    margin-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 2001;
    background: #fff;
    flex-shrink: 0;
    height: auto;
  }

  .mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    min-height: 50px;
  }

  .mobile-menu-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    flex: 1;
  }

  .mobile-menu-back {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    transition: all 0.3s;
    border-radius: 5px;
    margin-left: 15px;
  }

  .mobile-menu-back:hover,
  .mobile-menu-back:active {
    color: var(--secondary-color);
    background: var(--bg-light);
  }

  .main-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .main-menu li.mobile-menu-header {
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0;
    flex-shrink: 0;
  }

  .main-menu li.menu-item {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .main-menu li.menu-item:first-of-type {
    margin-top: 0 !important;
    padding-top: 0;
  }

  .main-menu li.menu-item a {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    cursor: pointer;
    margin: 0;
  }

  .main-menu li a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
  }

  .main-menu li a span {
    flex: 1;
    text-align: left;
  }

  .main-menu li a i.fa-chevron-down {
    margin-left: 10px;
    transition: transform 0.3s;
    font-size: 14px;
  }

  .main-menu li.has-dropdown.active > a i.fa-chevron-down {
    transform: rotate(180deg);
  }

  .main-menu .dropdown-link {
    padding: 12px 20px 12px 40px;
    display: block;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    cursor: pointer;
    pointer-events: auto;
  }

  .main-menu .dropdown-link:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    margin-left: 20px;
    display: none;
    box-sizing: border-box;
  }

  .menu-item.has-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .nav-actions {
    margin-left: 0;
    gap: 8px;
    flex-shrink: 0;
    min-width: 0;
  }

  .nav-icon {
    font-size: 18px;
    padding: 8px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-top {
    display: none;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    height: 500px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-slide.active {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 500px;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
    order: 2;
  }

  .hero-content .container {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 20px;
    border-radius: 10px;
  }

  .hero-title {
    font-size: 28px;
    word-wrap: break-word;
  }

  .hero-image {
    position: relative;
    width: 100%;
    min-width: 600px;
    height: 500px;
    opacity: 1;
    order: 1;
    overflow: hidden;
  }

  .hero-image img {
    width: 600px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    min-width: 600px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-image {
    height: 300px !important;
    min-height: 300px;
  }

  .collection-image img,
  .collection-image video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .collection-content {
    padding: 15px 20px 20px;
  }

  .collection-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .collection-content p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .collection-link {
    font-size: 13px;
  }

  .section-header {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .section-header h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .section-filters {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    padding: 0 5px;
  }

  .filter-btn {
    padding: 7px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-image {
    height: 200px;
  }

  .product-image img,
  .product-image video {
    object-fit: cover;
    object-position: center;
  }

  .product-overlay {
    gap: 10px;
    flex-direction: row;
  }

  .quick-view {
    padding: 8px 14px;
    font-size: 11px;
    min-height: 36px;
  }

  .add-to-wishlist {
    width: 36px;
    height: 36px;
    padding: 8px;
    font-size: 14px;
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  .product-price {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .current-price,
  .product-card .product-price-display {
    font-size: 16px;
  }

  .btn-add-cart {
    font-size: 12px;
    padding: 10px 12px;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 66.67%;
    max-width: 66.67vw;
    right: -66.67%;
  }

  .cart-header {
    padding: 22px 18px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 15px;
  }

  .cart-header span {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
  }

  .cart-header span::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
    left: 0;
  }



  .cart-sidebar-item {
    padding: 16px;
    gap: 12px;
  }

  .cart-sidebar-item img {
    width: 80px;
    height: 80px;
  }

  .cart-sidebar-item h4 {
    font-size: 14px;
  }

  .cart-sidebar-item p {
    font-size: 13px;
  }

  .cart-sidebar-item .quantity-controls {
    gap: 10px;
  }

  .cart-sidebar-item .quantity-controls button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .cart-sidebar-item .quantity-controls span {
    min-width: 30px;
    font-size: 14px;
  }

  .cart-sidebar-item .remove-btn {
    font-size: 14px;
    padding: 0;
    width: 30px;
    height: 30px;
    color: #dc3545;
  }

  .cart-sidebar-item .remove-btn i {
    color: #dc3545;
  }

  .cart-footer {
    padding: 20px 16px;
  }

  .cart-total {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .cart-footer .btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Section padding küçült */
  .featured-section,
  .products-section {
    padding: 40px 0 !important;
  }


  /* Genel başlıklar küçült */
  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  h4 {
    font-size: 16px !important;
  }

  /* Body font küçült */
  body {
    font-size: 14px;
  }

  p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo h1 {
    font-size: 16px;
  }

  .nav-actions {
    gap: 6px;
    flex-shrink: 0;
    min-width: 0;
  }

  .nav-icon {
    font-size: 16px;
    padding: 6px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-image {
    height: 180px;
  }

  .product-image img,
  .product-image video {
    object-fit: cover;
    object-position: center;
  }

  .product-overlay {
    gap: 8px;
    flex-direction: row;
  }

  .quick-view {
    padding: 6px 12px;
    font-size: 10px;
    min-height: 32px;
  }

  .add-to-wishlist {
    width: 32px;
    height: 32px;
    padding: 6px;
    font-size: 12px;
  }

  .product-info {
    padding: 10px;
  }

  .product-title {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .product-rating {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .product-price {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .current-price {
    font-size: 14px;
  }

  .btn-add-cart {
    font-size: 11px;
    padding: 8px 10px;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .collection-image {
    height: 300px !important;
    min-height: 300px;
  }

  .collection-image img,
  .collection-image video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }

  .product-image img,
  .product-image video {
    object-fit: cover;
    object-position: center;
  }

  .collection-content {
    padding: 12px 15px 15px;
  }

  .collection-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .collection-content p {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .collection-link {
    font-size: 12px;
  }

  .main-menu {
    width: 66.67%;
    max-width: 66.67vw;
    left: -100%;
  }

  .main-menu.active {
    left: 0;
  }

  .cart-sidebar {
    width: 90%;
    max-width: 90vw;
    right: -90%;
  }

  .cart-header {
    padding: 20px 14px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
  }

  .cart-header span {
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
  }

  .cart-header span::after {
    width: 35px;
    height: 2px;
    bottom: -5px;
    left: 0;
  }



  .cart-sidebar-item {
    padding: 12px;
    gap: 10px;
  }

  .cart-sidebar-item img {
    width: 70px;
    height: 70px;
  }

  .cart-sidebar-item h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .cart-sidebar-item p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .cart-sidebar-item .quantity-controls {
    gap: 8px;
  }

  .cart-sidebar-item .quantity-controls button {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .cart-sidebar-item .quantity-controls span {
    min-width: 28px;
    font-size: 13px;
  }

  .cart-sidebar-item .remove-btn {
    font-size: 13px;
    padding: 0;
    width: 28px;
    height: 28px;
    color: #dc3545;
  }

  .cart-sidebar-item .remove-btn i {
    color: #dc3545;
  }

  .cart-footer {
    padding: 16px 12px;
  }

  .cart-total {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .cart-footer .btn {
    padding: 11px 12px;
    font-size: 13px;
  }

  .search-modal-content {
    width: 95%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  /* Section header küçült */
  .section-header {
    margin-bottom: 25px !important;
    padding: 0 5px;
  }

  .section-header h2 {
    font-size: 22px !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.2px !important;
  }

  .section-header p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .section-filters {
    flex-wrap: wrap;
    gap: 8px !important;
    margin-top: 15px !important;
    justify-content: center;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .section-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 6px 14px !important;
    font-size: 12px !important;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Section padding küçült */
  .featured-section,
  .products-section {
    padding: 25px 0 !important;
  }


  /* Genel başlıklar küçült */
  h1 {
    font-size: 18px !important;
  }

  h2 {
    font-size: 16px !important;
  }

  h3 {
    font-size: 14px !important;
  }

  h4 {
    font-size: 12px !important;
  }

  /* Body font küçült */
  body {
    font-size: 12px !important;
  }

  p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  /* Butonlar küçült */
  .btn {
    font-size: 11px !important;
    padding: 8px 16px !important;
  }

  /* Breadcrumb küçült */
  .breadcrumb {
    padding: 10px 0 !important;
  }

  .breadcrumb-item a,
  .breadcrumb-item.active span {
    font-size: 11px !important;
  }
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: var(--bg-light);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-item a:hover {
  color: var(--secondary-color);
}

.breadcrumb-item.active span {
  color: var(--text-color);
  font-weight: 600;
  font-size: 14px;
}

.breadcrumb-separator {
  color: var(--text-light);
  font-size: 10px;
  margin: 0 5px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-image {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

.skeleton-text {
  height: 16px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

/* Product Detail Page */
.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.product-gallery {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.product-main-media,
.product-main-image {
  position: relative;
  background: #f8f8f8;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-main-image:hover img {
  transform: scale(1.05);
}

.product-main-image:hover .image-zoom-icon {
  opacity: 1;
}

.image-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.product-main-media video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.product-thumbnail {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  background: #f8f8f8;
}

.product-thumbnail:hover {
  border-color: var(--secondary-color);
  transform: translateY(-3px);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnail.video-thumbnail {
  position: relative;
}

.product-thumbnail.video-thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s;
}

.product-thumbnail.video-thumbnail:hover .video-play-icon {
  background: rgba(212, 175, 55, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.video-modal-content {
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .video-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Cart Page - Professional Design */
.cart-section {
  padding: 20px 0 80px;
  background: #fafafa;
  min-height: 60vh;
}

.cart-header {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cart-header h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.cart-subtitle {
  color: #666;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.cart-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}

.cart-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-color) 0%, #d4a853 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.cart-item:hover::before {
  opacity: 1;
}

.cart-item-image {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
  border: 1px solid #e8e8e8;
  position: relative;
}

.cart-item-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: border-color 0.3s;
}

.cart-item:hover .cart-item-image::after {
  border-color: var(--secondary-color);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-item:hover .cart-item-image img {
  transform: scale(1.08);
}

.cart-item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.cart-item-title-section {
  flex: 1;
}

.cart-item-title-section h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 6px 0;
  line-height: 1.4;
  font-weight: 600;
}

.cart-item-title-section h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.cart-item-title-section h3 a:hover {
  color: var(--secondary-color);
}

.cart-item-category {
  color: #888;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 600;
}

.cart-item-remove {
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 8px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  padding: 0;
}

.cart-item-remove:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #fff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-meta {
  margin: 0;
}

.stock-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.stock-info i.fa-check-circle {
  color: #28a745;
  font-size: 12px;
}

.stock-info i.fa-times-circle {
  color: #e74c3c;
  font-size: 12px;
  background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
  border-color: #f8bbd0;
}

.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.quantity-control {
  display: flex;
  align-items: center;
}

.quantity-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 4px;
  border: 1px solid #e8e8e8;
}

.qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.qty-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.1);
}

.qty-input {
  width: 60px;
  height: 38px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-color);
  -moz-appearance: textfield;
  padding: 0;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.price-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.cart-summary {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.cart-summary-header {
  padding: 24px 28px;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.cart-summary-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.3px;
}

.cart-summary-body {
  padding: 24px 28px;
  background: #fff;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 15px;
  color: #555;
}

.summary-value {
  font-weight: 600;
  color: var(--text-color);
  font-size: 15px;
}

.summary-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e8e8e8 50%, transparent 100%);
  margin: 16px 0;
}

.summary-total {
  font-size: 17px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px solid #e8e8e8;
  background: linear-gradient(135deg, #fafafa 0%, transparent 100%);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.summary-total span:first-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 17px;
}

.summary-total .summary-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.cart-summary-footer {
  padding: 24px 28px;
  border-top: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafafa;
}

.btn-block {
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-block::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.5s;
}

.btn-block:hover::before {
  left: 100%;
}

.btn-primary.btn-block {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary.btn-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary.btn-block {
  background: #fff;
  color: var(--primary-color);
  border: 2px solid #e8e8e8;
}

.btn-secondary.btn-block:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-empty {
  background: #fff;
  border-radius: 16px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
}

.empty-cart-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 3px solid #e8e8e8;
  position: relative;
}

.empty-cart-icon::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #d4a853);
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-empty:hover .empty-cart-icon::before {
  opacity: 0.1;
}

.empty-cart-icon i {
  font-size: 48px;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cart-empty p {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cart-container {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .cart-section {
    padding: 20px 0 40px;
  }

  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .cart-header h1 {
    font-size: 22px;
  }

  .cart-subtitle {
    font-size: 13px;
  }

  .cart-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-summary {
    position: relative;
    top: 0;
    margin-top: 20px;
  }

  .cart-summary-header {
    padding: 18px 20px;
  }

  .cart-summary-header h3 {
    font-size: 18px;
  }

  .cart-summary-body {
    padding: 18px 20px;
  }

  .summary-row {
    font-size: 14px;
  }

  .summary-total {
    font-size: 16px;
  }

  .summary-value {
    font-size: 16px;
  }

  .cart-summary-footer {
    padding: 18px 20px;
  }

  .cart-summary-footer .btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .cart-item {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 18px;
  }

  .cart-item-image {
    width: 100px;
    height: 100px;
  }

  .cart-item-title-section h3 {
    font-size: 16px;
  }

  .cart-item-category {
    font-size: 11px;
  }

  .cart-item-remove {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .stock-info {
    font-size: 12px;
    padding: 5px 12px;
  }

  .cart-item-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .quantity-form {
    padding: 3px;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .qty-input {
    width: 50px;
    height: 32px;
    font-size: 14px;
  }

  .cart-item-price {
    align-items: flex-start;
    width: 100%;
  }

  .price-label {
    font-size: 10px;
  }

  .price-value {
    font-size: 20px;
  }

  .cart-empty {
    padding: 50px 25px;
  }

  .empty-cart-icon i {
    font-size: 40px;
  }

  .cart-empty h2 {
    font-size: 22px;
  }

  .cart-empty p {
    font-size: 14px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lightbox-modal > * {
  pointer-events: auto;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
  pointer-events: auto;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-content video {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .product-main-media,
  .product-main-image {
    max-height: 500px;
  }

  .product-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .product-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Filter and Sort Section */
.filter-sort-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 15px;
}

.sort-select {
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  min-width: 200px;
}

.view-toggle {
  display: flex;
  gap: 10px;
}

.view-toggle button {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-toggle button.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-badge i {
  font-size: 40px;
  color: var(--secondary-color);
}

.trust-badge span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

/* Social Share */
.social-share {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-share a:hover {
  transform: translateY(-3px);
}

.social-share a.facebook {
  background: #3b5998;
}

.social-share a.twitter {
  background: #1da1f2;
}

.social-share a.pinterest {
  background: #bd081c;
}

.social-share a.whatsapp {
  background: #25d366;
}

/* Quick View Modal */
.quick-view-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quick-view-modal.active {
  display: flex;
}

.quick-view-content {
  background: #fff;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quick-view-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s;
}

.quick-view-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

/* Stock Warning */
.stock-warning {
  display: inline-block;
  padding: 5px 10px;
  background: #fff3cd;
  color: #856404;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.stock-warning.low {
  background: #f8d7da;
  color: #721c24;
}

/* Product Badge Improvements */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  text-transform: uppercase;
}

.product-badge.new {
  background: var(--secondary-color);
  color: #fff;
}

.product-badge.sale {
  background: #e74c3c;
  color: #fff;
}

.product-badge.featured {
  background: var(--primary-color);
  color: #fff;
}

/* Smooth Animations */
.product-card,
.collection-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Auth Modal */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.auth-modal-content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  z-index: 10001;
}

.auth-modal.active .auth-modal-content {
  transform: scale(1) translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-color);
  transition: all 0.3s;
  z-index: 10;
}

.auth-modal-close:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: rotate(90deg);
}

.auth-modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--bg-light);
  padding: 0 30px;
  margin-top: 20px;
}

.auth-tab {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-tab:hover {
  color: var(--primary-color);
}

.auth-tab.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.auth-tab-content {
  display: none;
  padding: 30px;
  animation: fadeIn 0.3s ease;
}

.auth-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-modal-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.auth-modal-header p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* Auth Pages */
.auth-section {
  background: var(--bg-light);
  width: 100%;
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.auth-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 50px;
  max-width: 500px;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
}

.auth-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.auth-header p {
  color: var(--text-light);
  font-size: 14px;
}

.auth-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--text-color);
  transition: border-color 0.3s;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: var(--secondary-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  cursor: pointer;
}

.checkbox-group span {
  font-weight: 400;
  font-size: 14px;
}

.error-message {
  display: block;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.alert-error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

.alert-error ul {
  margin: 0;
  padding-left: 20px;
}

.alert-error li {
  margin-bottom: 5px;
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.auth-footer p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.auth-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.auth-footer a:hover {
  color: var(--primary-color);
}

.btn-block {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .auth-card {
    padding: 30px 20px;
    margin: 20px;
  }

  .auth-header h2 {
    font-size: 28px;
  }
}

/* Account Pages */
.account-section {
  background: var(--bg-light);
  width: 100%;
}

.account-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.account-sidebar {
  background: #fff;
  border-radius: 15px;
  padding: 0;
  height: fit-content;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.account-sidebar-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.account-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 32px;
}

.account-sidebar-header h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 5px;
  color: #fff;
}

.account-sidebar-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.account-sidebar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--primary-color);
  padding: 30px 20px 0;
}

.account-menu {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.account-menu li {
  margin-bottom: 5px;
}

.account-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.account-menu a i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.account-menu a:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
  border-left-color: var(--secondary-color);
}

.account-menu a.active {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  color: var(--secondary-color);
  border-left-color: var(--secondary-color);
  font-weight: 600;
}

.account-content {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.account-content-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-light);
}

.account-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.account-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.account-form {
  max-width: 100%;
}

.profile-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.form-group label i {
  color: var(--secondary-color);
  font-size: 14px;
}

.form-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.stat-info h3 {
  font-size: 32px;
  margin-bottom: 5px;
  font-family: var(--font-display);
}

.stat-info p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* Order Card Enhanced */
.order-card-enhanced {
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 0;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s;
}

.order-card-enhanced:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.order-card-header {
  background: var(--bg-light);
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
}

.order-info-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-number-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-number-section i {
  font-size: 24px;
  color: var(--secondary-color);
}

.order-number-section strong {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.order-date {
  display: block;
  color: var(--text-light);
  font-size: 13px;
}

.order-status-badge {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.order-status-badge i {
  font-size: 8px;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-completed {
  background: #d4edda;
  color: #155724;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.order-card-body {
  padding: 30px;
}

.order-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.order-item-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s;
}

.order-item-card:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-info {
  flex: 1;
  min-width: 0;
}

.order-item-info h4 {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-item-info p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.order-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
}

.order-more-items {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--bg-light);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
}

.order-summary {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-color);
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 2px solid var(--border-color);
  font-size: 18px;
}

.order-summary-total strong {
  color: var(--secondary-color);
  font-size: 20px;
}

.order-card-footer {
  padding: 20px 30px;
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.btn-success {
  background: #28a745;
  color: #fff;
}

.btn-success:hover {
  background: #218838;
}

/* Wishlist Enhanced */
.wishlist-product-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--border-color);
  border-radius: 15px;
  margin-bottom: 25px;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wishlist-product-card:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.wishlist-product-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-light);
}

.wishlist-product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.wishlist-product-card:hover .wishlist-product-image img {
  transform: scale(1.05);
}

.wishlist-remove-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  color: #e74c3c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wishlist-remove-btn:hover {
  background: #e74c3c;
  color: #fff;
  transform: scale(1.1);
}

.wishlist-product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wishlist-product-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 10px;
}

.wishlist-product-info h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.wishlist-product-info h3 a:hover {
  color: var(--secondary-color);
}

.wishlist-category {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wishlist-description {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.wishlist-product-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-light);
}

.wishlist-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffc107;
  font-size: 14px;
}

.wishlist-rating span {
  color: var(--text-light);
  margin-left: 5px;
}

.stock-available {
  color: #28a745;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stock-unavailable {
  color: #e74c3c;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wishlist-product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--bg-light);
}

.wishlist-price {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-display);
}

.wishlist-buttons {
  display: flex;
  gap: 15px;
}

.wishlist-buttons .btn {
  padding: 12px 25px;
  font-size: 14px;
  white-space: nowrap;
}

/* Empty States */
.empty-state-wishlist,
.empty-state-orders {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-light);
  border-radius: 15px;
  margin: 40px 0;
}

.empty-state-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.empty-state-icon i {
  font-size: 48px;
  color: var(--secondary-color);
}

.empty-state-wishlist h3,
.empty-state-orders h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.empty-state-wishlist p,
.empty-state-orders p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.empty-state-wishlist .btn,
.empty-state-orders .btn {
  padding: 15px 40px;
  font-size: 16px;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

@media (max-width: 1024px) {
  .account-container {
    grid-template-columns: 250px 1fr;
  }
  
  .wishlist-product-card {
    grid-template-columns: 200px 1fr;
  }
}

/* Auth Modal Responsive */
@media (max-width: 768px) {
  .auth-modal-content {
    width: 95%;
    max-height: 95vh;
    border-radius: 15px;
  }

  .auth-modal-tabs {
    padding: 0 20px;
  }

  .auth-tab {
    padding: 15px 10px;
    font-size: 14px;
  }

  .auth-tab-content {
    padding: 20px;
  }

  .auth-modal-header h2 {
    font-size: 24px;
  }

  .auth-modal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .account-container {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    margin-bottom: 20px;
  }

  .wishlist-product-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wishlist-product-image {
    max-width: 100%;
  }

  .wishlist-product-actions {
    flex-direction: column;
    gap: 15px;
  }

  .wishlist-buttons {
    width: 100%;
    flex-direction: column;
  }

  .wishlist-buttons .btn {
    width: 100%;
  }

  .order-items-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .account-stats {
    grid-template-columns: 1fr;
  }

  .order-card-footer {
    flex-direction: column;
  }

  .order-card-footer .btn {
    width: 100%;
  }
}

/* Checkout Page - Professional Design */
.checkout-section {
  padding: 20px 0 80px;
  background: #fafafa;
  min-height: 60vh;
}

.checkout-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.checkout-header h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.checkout-subtitle {
  color: #666;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.checkout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
  align-items: start;
}

.checkout-summary {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.checkout-summary-header {
  padding: 26px 30px;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.checkout-summary-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.3px;
}

.checkout-summary-body {
  padding: 26px 30px;
  background: #fff;
}

.checkout-items {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  font-size: 14px;
  gap: 15px;
}

.checkout-item:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.checkout-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.checkout-item-name {
  color: var(--text-color);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

.checkout-item-qty {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}

.checkout-item-price {
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-display);
  font-size: 16px;
  white-space: nowrap;
}

.checkout-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: #555;
}

.checkout-total-value {
  font-weight: 600;
  color: var(--text-color);
  font-size: 15px;
}

.checkout-total-final {
  font-size: 18px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 2px solid #e8e8e8;
}

.checkout-total-final span:first-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}

.checkout-total-final .checkout-total-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.checkout-form-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.checkout-form-section {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
}

.checkout-form-section:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.checkout-section-header {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.checkout-section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
}

.checkout-section-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.3px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.checkout-form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-form-group.checkout-form-full {
  grid-column: 1 / -1;
}

.checkout-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.checkout-form-group .required {
  color: #e74c3c;
  font-weight: 700;
}

.checkout-form-group input,
.checkout-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--text-color);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-form-group input:hover,
.checkout-form-group select:hover {
  border-color: #d0d0d0;
}

.checkout-form-group input:focus,
.checkout-form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: #fff;
}

.checkout-form-group input::placeholder {
  color: #999;
}

.checkout-same-address {
  margin-bottom: 24px;
  padding: 16px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
}

.checkout-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  user-select: none;
}

.checkout-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--secondary-color);
  border-radius: 4px;
}

.checkout-checkbox-label:hover {
  color: var(--primary-color);
}

.checkout-submit {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.btn-checkout-submit {
  width: 100%;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-checkout-submit::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.5s;
}

.btn-checkout-submit:hover::before {
  left: 100%;
}

.btn-checkout-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-checkout-submit:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .checkout-form-grid,
  .checkout-form-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .checkout-section {
    padding: 20px 0 40px;
  }

  .checkout-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .checkout-header h1 {
    font-size: 22px;
  }

  .checkout-subtitle {
    font-size: 13px;
  }

  .checkout-form-section {
    padding: 18px;
  }

  .checkout-section-header h2 {
    font-size: 18px;
  }

  .checkout-form-group label {
    font-size: 13px;
  }

  .checkout-form-group input,
  .checkout-form-group select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .checkout-summary-header h2 {
    font-size: 18px;
  }

  .checkout-item-name {
    font-size: 13px;
  }

  .checkout-item-price {
    font-size: 14px;
  }

  .checkout-total-row {
    font-size: 14px;
  }

  .checkout-total-final .checkout-total-value {
    font-size: 22px;
  }

  .btn-checkout-submit {
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
  }
}

/* Order Detail Page */
.order-detail-section {
  padding: 20px 0 60px;
  background: #fafafa;
  min-height: 60vh;
}

.order-detail-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8e8e8;
}

.order-detail-header h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.order-detail-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
}

.order-info-header {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0;
}

.order-info-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.order-number-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-number-section i {
  font-size: 22px;
  color: var(--secondary-color);
}

.order-number-section strong {
  display: block;
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.order-date {
  display: block;
  color: var(--text-light);
  font-size: 13px;
}

.order-status-badge {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.order-status-badge i {
  font-size: 7px;
}

.status-paid {
  background: #d4edda;
  color: #155724;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-failed {
  background: #f8d7da;
  color: #721c24;
}

.order-addresses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.order-address-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #f0f0f0;
}

.address-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}

.address-header i {
  font-size: 18px;
  color: var(--secondary-color);
}

.address-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.address-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.address-content p {
  color: var(--text-color);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.order-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e8e8e8;
}

.order-summary-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.order-summary-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.order-summary-header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.3px;
}

.order-summary-table {
  overflow-x: auto;
}

.order-summary-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.order-summary-table thead {
  background: #fafafa;
}

.order-summary-table th {
  padding: 12px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e8e8e8;
}

.order-summary-table th:first-child {
  width: 40%;
}

.order-summary-table th:nth-child(2) {
  width: 15%;
}

.order-summary-table th:nth-child(3) {
  width: 22.5%;
}

.order-summary-table th:nth-child(4) {
  width: 22.5%;
}

.order-summary-table th.text-center {
  text-align: center;
}

.order-summary-table th.text-right {
  text-align: right;
}

.order-summary-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
}

.order-summary-table tbody tr:hover {
  background: #fafafa;
}

.order-summary-table tbody td {
  padding: 14px;
  font-size: 14px;
  color: var(--text-color);
  vertical-align: middle;
}

.order-summary-table tbody td.text-center {
  text-align: center;
}

.order-summary-table tbody td.text-right {
  text-align: right;
}

.order-item-name {
  font-weight: 600;
  color: var(--primary-color);
}

.order-summary-table tfoot {
  border-top: 2px solid #e8e8e8;
}

.order-summary-table tfoot .summary-row {
  border-bottom: 1px solid #f0f0f0;
}

.order-summary-table tfoot td {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-color);
  vertical-align: middle;
}

.order-summary-table tfoot td.text-right {
  text-align: right;
}

.order-summary-table tfoot .summary-total-row {
  background: linear-gradient(135deg, #fafafa 0%, transparent 100%);
}

.order-summary-table tfoot .summary-total-row td {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  vertical-align: middle;
}

.order-summary-table tfoot .summary-total-row td.text-right {
  text-align: right;
}

.order-summary-table tfoot .summary-total {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-display);
  letter-spacing: -0.5px;
}

.order-payment-action {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #f0f0f0;
}

.btn-pay {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-pay::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.5s;
}

.btn-pay:hover::before {
  left: 100%;
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-pay:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .order-addresses {
    grid-template-columns: 1fr;
  }

  .order-detail-section {
    padding: 15px 0 40px;
  }

  .order-detail-header h1 {
    font-size: 22px;
  }

  .order-info-card,
  .order-summary-card {
    padding: 18px;
  }

  .order-info-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .order-number-section strong {
    font-size: 14px;
  }

  .order-date {
    font-size: 12px;
  }

  .order-status-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .order-addresses {
    flex-direction: column;
    gap: 15px;
  }

  .order-address-card {
    padding: 15px;
  }

  .address-header h3 {
    font-size: 16px;
  }

  .order-summary-header h2 {
    font-size: 18px;
  }

  .order-summary-table {
    font-size: 12px;
  }

  .order-summary-table th,
  .order-summary-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .order-summary-table th:first-child {
    width: 50%;
  }

  .order-summary-table th:nth-child(2) {
    width: 15%;
  }

  .order-summary-table th:nth-child(3),
  .order-summary-table th:nth-child(4) {
    width: 17.5%;
  }

  .order-summary-table tfoot .summary-total {
    font-size: 18px;
  }

  .btn-pay {
    font-size: 14px;
    padding: 12px 20px;
    width: 100%;
  }
}

/* ============================================
   MOBİL UYUMLULUK İYİLEŞTİRMELERİ
   ============================================ */

/* Product Detail Mobil Optimizasyonları */
@media (max-width: 768px) {
  .product-detail-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 !important;
  }

  .product-gallery {
    position: static !important;
    margin-bottom: 30px;
  }

  .product-main-image,
  .product-main-media {
    margin-bottom: 15px;
    aspect-ratio: 1;
  }

  .product-thumbnails {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px;
  }

  .product-info h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .product-detail-container .product-price-display {
    font-size: 32px !important;
  }

  .product-card .product-price-display {
    font-size: 16px !important;
  }

  .product-rating {
    font-size: 14px;
  }

  .product-rating i {
    font-size: 16px;
  }
}

/* Genel Mobil Optimizasyonlar */
@media (max-width: 768px) {
  /* Container padding azalt */
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Tüm tabloları mobil uyumlu yap */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Flash mesajları mobil için */
  .flash-message {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
  }

  /* Product detail mobil */
  .product-detail-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .product-gallery {
    position: static !important;
  }

  .product-main-image,
  .product-main-media {
    margin-bottom: 20px;
  }

  /* Cart mobil */
  .cart-container {
    flex-direction: column;
  }

  .cart-items {
    width: 100%;
    margin-bottom: 20px;
  }

  .cart-summary {
    width: 100%;
    position: static;
  }

  /* Checkout mobil */
  .checkout-container {
    flex-direction: column;
  }

  .checkout-form {
    width: 100%;
    margin-bottom: 30px;
  }

  .checkout-summary {
    width: 100%;
    position: static;
  }

  /* Form elemanları mobil */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important; /* iOS zoom önleme */
    padding: 12px 15px !important;
  }

  /* Butonlar mobil */
  .btn,
  button {
    padding: 14px 20px !important;
    font-size: 16px !important;
    min-height: 48px; /* Touch target */
  }

  /* Modal'lar mobil */
  .modal-content {
    width: 95% !important;
    max-width: 95% !important;
    margin: 20px auto !important;
    max-height: 90vh;
    overflow-y: auto;
  }

  /* Footer mobil */
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Küçük telefonlar (480px ve altı) */
@media (max-width: 480px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Logo küçült */
  .logo h1 {
    font-size: 16px !important;
  }

  /* Nav actions küçült */
  .nav-actions {
    gap: 6px !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
  }

  .nav-icon {
    font-size: 16px !important;
    padding: 6px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Hero section mobil */
  .hero {
    height: auto !important;
    min-height: 400px !important;
  }

  .hero-slide.active {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    height: 500px !important;
  }

  .hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    padding: 30px 12px !important;
    z-index: 2 !important;
    order: 2 !important;
  }

  .hero-content .container {
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 30px 12px !important;
    border-radius: 10px !important;
  }

  .hero-image {
    position: relative !important;
    width: 100% !important;
    min-width: 600px !important;
    height: 500px !important;
    opacity: 1 !important;
    order: 1 !important;
    overflow: hidden !important;
  }

  .hero-image img {
    width: 600px !important;
    height: 500px !important;
    object-fit: cover !important;
    object-position: center !important;
    min-width: 600px !important;
  }

  .hero-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .hero-description {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
  }

  .hero-badge {
    font-size: 9px !important;
    padding: 5px 12px !important;
    margin-bottom: 10px !important;
  }


  .hero-subtitle {
    font-size: 12px !important;
  }

  .section-header {
    margin-bottom: 25px !important;
  }

  .section-header h2 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .section-header p {
    font-size: 12px !important;
  }

  .btn {
    font-size: 12px !important;
    padding: 9px 18px !important;
  }

  /* Product cards mobil */
  .product-card {
    padding: 12px !important;
  }

  .product-card-image {
    height: 180px !important;
  }

  .product-card h3,
  .product-card .product-name {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .product-card .product-price {
    font-size: 14px !important;
  }

  .product-card .product-price-display {
    font-size: 14px !important;
  }

  .product-card .current-price {
    font-size: 14px !important;
  }

  .product-card .product-description {
    font-size: 11px !important;
  }

  /* Collection card küçült */
  .collection-image {
    height: 300px !important;
    min-height: 300px;
  }

  .collection-image img,
  .collection-image video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .collection-content {
    padding: 12px !important;
  }

  .collection-content h3 {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .collection-content p {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }

  /* Section padding küçült */
  .featured-section,
  .products-section {
    padding: 30px 0 !important;
  }

  /* Genel başlıklar küçült */
  h1 {
    font-size: 20px !important;
  }

  h2 {
    font-size: 18px !important;
  }

  h3 {
    font-size: 16px !important;
  }

  h4 {
    font-size: 14px !important;
  }

  /* Body font küçült */
  body {
    font-size: 13px !important;
  }

  p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Checkout mobil */
  .checkout-header h1 {
    font-size: 20px !important;
  }

  .checkout-subtitle {
    font-size: 12px !important;
  }

  .checkout-form-section {
    padding: 15px !important;
  }

  .checkout-section-header h2 {
    font-size: 16px !important;
  }

  .checkout-form-group label {
    font-size: 12px !important;
  }

  .checkout-form-group input,
  .checkout-form-group select {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .checkout-summary-header h2 {
    font-size: 16px !important;
  }

  .checkout-item-name {
    font-size: 12px !important;
  }

  .checkout-item-price {
    font-size: 13px !important;
  }

  .checkout-total-row {
    font-size: 13px !important;
  }

  .checkout-total-final .checkout-total-value {
    font-size: 20px !important;
  }

  /* Order detail mobil */
  .order-detail-header h1 {
    font-size: 20px !important;
  }

  .order-info-card,
  .order-summary-card {
    padding: 15px !important;
  }

  .order-number-section strong {
    font-size: 13px !important;
  }

  .order-date {
    font-size: 11px !important;
  }

  .order-status-badge {
    font-size: 10px !important;
    padding: 5px 12px !important;
  }

  .address-header h3 {
    font-size: 15px !important;
  }

  .order-summary-header h2 {
    font-size: 16px !important;
  }

  .order-summary-table {
    font-size: 11px !important;
  }

  .order-summary-table th,
  .order-summary-table td {
    padding: 8px 4px !important;
    font-size: 11px !important;
  }

  .order-summary-table tfoot .summary-total {
    font-size: 16px !important;
  }

  .btn-pay {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }

  /* Cart mobil */
  .cart-section {
    padding: 15px 0 30px !important;
  }

  .cart-header h1 {
    font-size: 20px !important;
  }

  .cart-subtitle {
    font-size: 12px !important;
  }

  .cart-summary-header {
    padding: 15px 18px !important;
  }

  .cart-summary-header h3 {
    font-size: 16px !important;
  }

  .cart-summary-body {
    padding: 15px 18px !important;
  }

  .summary-row {
    font-size: 13px !important;
  }

  .summary-total {
    font-size: 15px !important;
  }

  .summary-value {
    font-size: 15px !important;
  }

  .cart-summary-footer {
    padding: 15px 18px !important;
  }

  .cart-summary-footer .btn {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }

  .cart-item {
    grid-template-columns: 80px 1fr !important;
    gap: 12px !important;
    padding: 15px !important;
  }

  .cart-item-image {
    width: 80px !important;
    height: 80px !important;
  }

  .cart-item-title-section h3 {
    font-size: 14px !important;
  }

  .cart-item-category {
    font-size: 10px !important;
  }

  .cart-item-remove {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  .stock-info {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }

  .qty-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 11px !important;
  }

  .qty-input {
    width: 45px !important;
    height: 28px !important;
    font-size: 13px !important;
  }

  .price-value {
    font-size: 18px !important;
  }

  .cart-empty {
    padding: 40px 20px !important;
  }

  .empty-cart-icon i {
    font-size: 36px !important;
  }

  .cart-empty h2 {
    font-size: 20px !important;
  }

  .cart-empty p {
    font-size: 13px !important;
  }

  /* Form groups mobil */
  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* Tables mobil - scroll */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
  }

  /* Butonlar tam genişlik */
  .btn-full-mobile {
    width: 100% !important;
    display: block !important;
  }

  /* Checkout mobil */
  .checkout-header h1 {
    font-size: 20px !important;
  }

  .checkout-subtitle {
    font-size: 12px !important;
  }

  .checkout-form-section {
    padding: 15px !important;
  }

  .checkout-section-header h2 {
    font-size: 16px !important;
  }

  .checkout-form-group label {
    font-size: 12px !important;
  }

  .checkout-form-group input,
  .checkout-form-group select {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  .checkout-summary-header h2 {
    font-size: 16px !important;
  }

  .checkout-item-name {
    font-size: 12px !important;
  }

  .checkout-item-price {
    font-size: 13px !important;
  }

  .checkout-total-row {
    font-size: 13px !important;
  }

  .checkout-total-final .checkout-total-value {
    font-size: 20px !important;
  }

  /* Order detail mobil */
  .order-detail-header h1 {
    font-size: 20px !important;
  }

  .order-info-card,
  .order-summary-card {
    padding: 15px !important;
  }

  .order-number-section strong {
    font-size: 13px !important;
  }

  .order-date {
    font-size: 11px !important;
  }

  .order-status-badge {
    font-size: 10px !important;
    padding: 5px 12px !important;
  }

  .address-header h3 {
    font-size: 15px !important;
  }

  .order-summary-header h2 {
    font-size: 16px !important;
  }

  .order-summary-table {
    font-size: 11px !important;
  }

  .order-summary-table th,
  .order-summary-table td {
    padding: 8px 4px !important;
    font-size: 11px !important;
  }

  .order-summary-table tfoot .summary-total {
    font-size: 16px !important;
  }

  .btn-pay {
    font-size: 13px !important;
    padding: 10px 18px !important;
  }
}

/* Tablet optimizasyonları (768px - 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Touch optimizasyonları */
@media (hover: none) and (pointer: coarse) {
  /* Touch cihazlar için hover efektlerini kaldır */
  a:hover,
  button:hover {
    opacity: 1;
  }

  /* Product overlay - touch ile aktif */
  .product-card:active .product-overlay,
  .product-image:active .product-overlay {
    opacity: 1;
  }

  /* Touch target boyutları */
  a,
  button,
  .nav-icon,
  .cart-icon {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Scroll smooth */
  * {
    -webkit-overflow-scrolling: touch;
  }
}

/* Landscape telefon optimizasyonları */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 300px !important;
  }

  .mobile-menu {
    max-height: 100vh;
    overflow-y: auto;
  }
}

/* Payment Success/Fail Pages */
.payment-success-section,
.payment-fail-section {
  padding: 40px 0 80px;
  background: #fafafa;
  min-height: 60vh;
}

.payment-success-card,
.payment-fail-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.payment-success-icon,
.payment-fail-icon {
  margin-bottom: 20px;
}

.payment-success-icon i {
  font-size: 64px;
  color: #28a745;
}

.payment-fail-icon i {
  font-size: 64px;
  color: #dc3545;
}

.payment-success-card h1,
.payment-fail-card h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.payment-success-message,
.payment-fail-message {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 30px;
}

.payment-order-info {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  text-align: left;
}

.payment-order-info h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.payment-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.payment-info-row:last-child {
  border-bottom: none;
}

.payment-info-label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 14px;
}

.payment-info-value {
  color: var(--text-light);
  font-size: 14px;
}

.payment-success-buttons,
.payment-fail-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-success-buttons .btn,
.payment-fail-buttons .btn {
  min-width: 150px;
}

@media (max-width: 768px) {
  .payment-success-section,
  .payment-fail-section {
    padding: 20px 0 40px;
  }

  .payment-success-card,
  .payment-fail-card {
    padding: 25px 20px;
  }

  .payment-success-icon i,
  .payment-fail-icon i {
    font-size: 48px;
  }

  .payment-success-card h1,
  .payment-fail-card h1 {
    font-size: 22px;
  }

  .payment-success-message,
  .payment-fail-message {
    font-size: 14px;
  }

  .payment-order-info {
    padding: 18px;
  }

  .payment-order-info h2 {
    font-size: 16px;
  }

  .payment-info-label,
  .payment-info-value {
    font-size: 13px;
  }

  .payment-success-buttons,
  .payment-fail-buttons {
    flex-direction: column;
  }

  .payment-success-buttons .btn,
  .payment-fail-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .payment-success-card,
  .payment-fail-card {
    padding: 20px 15px;
  }

  .payment-success-icon i,
  .payment-fail-icon i {
    font-size: 40px;
  }

  .payment-success-card h1,
  .payment-fail-card h1 {
    font-size: 20px;
  }

  .payment-success-message,
  .payment-fail-message {
    font-size: 13px;
  }

  .payment-order-info {
    padding: 15px;
  }

  .payment-order-info h2 {
    font-size: 15px;
  }

  .payment-info-label,
  .payment-info-value {
    font-size: 12px;
  }
}

/* Yüksek çözünürlüklü ekranlar */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}