/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

input,
textarea,
select {
  font-family: inherit;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #000;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 14px;
}

.btn-primary {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

.btn-outline {
  background-color: transparent;
  color: #000;
  border-color: #000;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.mobile-menu-btn {
  display: none;
  font-size: 20px;
  color: #000;
  z-index: 1001;
}

.logo a {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: #666;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn,
.account-btn {
  font-size: 18px;
  color: #000;
}

.cart-btn {
  position: relative;
  font-size: 18px;
  color: #000;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #000;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 24px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .nav a {
    font-size: 18px;
    padding: 12px 0;
  }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

.search-content {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  position: relative;
}

.search-input {
  width: 100%;
  font-size: 24px;
  padding: 20px 0;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #000;
}

.search-suggestions {
  margin-top: 40px;
}

.search-suggestions h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.suggestions-list a {
  padding: 8px 16px;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.suggestions-list a:hover {
  background-color: #000;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 600px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ===== CATEGORY HERO ===== */
.category-hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.category-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.category-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.category-hero-content {
  text-align: center;
  color: #fff;
}

.category-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
}

.category-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== CATEGORIES SECTION ===== */
.categories {
  padding: 80px 0;
}

.categories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

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

.category-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-overlay h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

/* ===== BEST SELLERS SECTION ===== */
.best-sellers {
  padding: 80px 0;
}

.best-sellers h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.product-card {
  display: block;
  transition: transform 0.3s ease;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 16px;
  transition: transform 0.5s ease;
}

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

.product-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
}

.product-card .price {
  color: #666;
  font-weight: 400;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-banner p {
  opacity: 0.8;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 0;
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.newsletter p {
  color: #666;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
}

.newsletter-disclaimer {
  font-size: 12px;
  color: #999;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #000;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

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

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

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.social-links a {
  font-size: 20px;
  color: #ccc;
  transition: color 0.3s ease;
}

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

.copyright {
  font-size: 14px;
  color: #999;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* ===== SHOP PAGE ===== */
.shop-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.shop-page h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.filters-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filters-sidebar h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.filter-group {
  border-top: 1px solid #eee;
  padding: 20px 0;
}

.filter-group h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

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

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.filter-options input[type="checkbox"] {
  width: auto;
}

.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.product-count {
  color: #666;
  font-size: 14px;
}

.controls-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-filter-btn {
  display: none;
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
}

.sort-select {
  padding: 8px 12px;
  font-size: 14px;
  min-width: 180px;
  width: auto;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.thumbnail {
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.product-price {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.product-description {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.product-options {
  margin-bottom: 32px;
}

.size-selection,
.quantity-selection {
  margin-bottom: 24px;
}

.option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.option-header label {
  font-weight: 500;
}

.size-guide {
  font-size: 14px;
  text-decoration: underline;
}

.product-select {
  width: 100%;
  padding: 12px;
}

.quantity-selection label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  width: fit-content;
}

.quantity-btn {
  padding: 12px 16px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quantity-btn:hover {
  background-color: #f5f5f5;
}

.quantity-value {
  padding: 12px 20px;
  min-width: 60px;
  text-align: center;
}

.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.add-to-cart {
  flex: 1;
}

.wishlist-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tabs {
  border-top: 1px solid #eee;
  padding-top: 32px;
}

.tab-buttons {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 8px 0;
  font-weight: 500;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  color: #000;
  border-bottom-color: #000;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel ul {
  list-style: disc;
  padding-left: 20px;
}

.tab-panel ul li {
  margin-bottom: 4px;
  color: #666;
}

.related-products {
  border-top: 1px solid #eee;
  padding-top: 80px;
}

.related-products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.about-hero-content {
  text-align: center;
  color: #fff;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.about-page {
  padding: 80px 0;
}

.our-story {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.our-story h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.story-content p {
  margin-bottom: 24px;
  color: #666;
  line-height: 1.8;
}

.values {
  margin-bottom: 80px;
}

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

.value-card {
  text-align: center;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.team {
  margin-bottom: 80px;
}

.team h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.team-member {
  text-align: center;
}

.member-image {
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-member p {
  color: #666;
}

.about-cta {
  background-color: #000;
  color: #fff;
  padding: 60px;
  text-align: center;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

/* ===== LOOKBOOK PAGE ===== */
.lookbook-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.page-header p {
  color: #666;
}

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

.lookbook-item {
  cursor: pointer;
}

.lookbook-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 12px;
}

.lookbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lookbook-item:hover .lookbook-image img {
  transform: scale(1.05);
}

.lookbook-item h3 {
  font-size: 18px;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
}

.contact-info-section h2 {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  font-size: 20px;
  margin-top: 4px;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-item p {
  color: #666;
  line-height: 1.5;
}

.store-hours h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.store-hours table {
  width: 100%;
}

.store-hours table td {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.store-hours table td:first-child {
  font-weight: 500;
}

.map-section {
  margin-top: 60px;
}

.map-placeholder {
  height: 400px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* ===== CART PAGE ===== */
.cart-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.cart-page h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.item-image {
  width: 100px;
  height: 130px;
  flex-shrink: 0;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-details {
  flex: 1;
}

.item-details h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.item-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.quantity-controls .quantity-btn {
  padding: 8px 12px;
  background: #fff;
  border: none;
  cursor: pointer;
}

.quantity-controls .quantity {
  padding: 8px 16px;
  min-width: 50px;
  text-align: center;
}

.remove-btn {
  color: #999;
  font-size: 16px;
  transition: color 0.3s ease;
}

.remove-btn:hover {
  color: #000;
}

.item-price {
  font-weight: 500;
  align-self: flex-start;
}

.order-summary {
  background-color: #f9f9f9;
  padding: 32px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.summary-details {
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.summary-row.total {
  font-weight: 600;
  font-size: 18px;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 12px;
}

.checkout-btn {
  width: 100%;
  margin-bottom: 16px;
}

.continue-shopping {
  display: block;
  text-align: center;
  font-size: 14px;
  text-decoration: underline;
  margin-bottom: 32px;
}

.promo-code h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.promo-input {
  display: flex;
  gap: 8px;
}

.promo-input input {
  flex: 1;
  padding: 8px 12px;
  font-size: 14px;
}

.promo-input button {
  padding: 8px 16px;
  font-size: 14px;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.empty-cart p {
  color: #666;
  margin-bottom: 32px;
}

/* ===== ACCOUNT PAGE ===== */
.account-page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.account-layout {
  max-width: 800px;
  margin: 0 auto;
}

.auth-forms {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
}

.form-tabs {
  display: flex;
  margin-bottom: 32px;
  border-bottom: 1px solid #ddd;
}

.form-tabs .tab-btn {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.form-tabs .tab-btn.active {
  color: #000;
  border-bottom-color: #000;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.forgot-password {
  font-size: 14px;
  color: #666;
  text-decoration: underline;
}

.forgot-password:hover {
  color: #000;
}

.account-dashboard {
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.account-sidebar {
  background-color: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
  height: fit-content;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-nav .nav-item {
  padding: 12px 16px;
  color: #666;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.account-nav .nav-item:hover,
.account-nav .nav-item.active {
  background-color: #000;
  color: #fff;
}

.account-section {
  display: none;
}

.account-section.active {
  display: block;
}

.account-section h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-item {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-number {
  font-weight: 600;
}

.order-date {
  color: #666;
  font-size: 14px;
}

.order-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.order-status.delivered {
  background-color: #d4edda;
  color: #155724;
}

.order-status.processing {
  background-color: #fff3cd;
  color: #856404;
}

.order-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-order {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
}

.addresses-list {
  margin-bottom: 24px;
}

.address-item {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.address-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.address-info p {
  color: #666;
  line-height: 1.5;
}

.address-actions {
  display: flex;
  gap: 8px;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.wishlist-item {
  text-align: center;
}

.wishlist-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 12px;
}

.wishlist-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.wishlist-item p {
  color: #666;
  margin-bottom: 16px;
}

.wishlist-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .categories h2,
  .best-sellers h2 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    display: none;
  }

  .mobile-filter-btn {
    display: block;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cart-item {
    flex-direction: column;
    gap: 16px;
  }

  .item-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-cta {
    padding: 40px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .thumbnail-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}
