/* style.css - ClothBrand Fashion Theme */
:root {
  --primary: #1a1a2e; /* Dark navy - sophisticated */
  --primary-light: #2d2d44;
  --secondary: #e94560; /* Fashion red accent */
  --secondary-light: #ff6b81;
  --gold: #d4af37; /* Premium gold accent */
  --light-bg: #f8f7f4; /* Warm off-white */
  --sand: #e8e0d5;
  --dark: #0a0a0a;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== */
/* HEADER */
/* ==================== */

.header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 50px;
  width: auto;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
}

.nav-menu a:hover {
  color: var(--secondary);
}

.login-link {
  background-color: var(--light-bg);
  padding: 8px 20px;
  border-radius: 25px;
  margin-left: 10px;
}

.cart-icon {
  position: relative;
  font-size: 18px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--secondary);
  color: white;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: var(--transition);
}

/* ==================== */
/* BUTTONS */
/* ==================== */

.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: white;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, white 0%, var(--light-bg) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats .stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stats .stat i {
  font-size: 1.8rem;
  color: var(--secondary);
  background-color: rgba(233, 69, 96, 0.1);
  padding: 12px;
  border-radius: 50%;
}

.stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--sand), white);
}

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

/* ==================== */
/* SECTION HEADER */
/* ==================== */

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background-color: rgba(233, 69, 96, 0.1);
  color: var(--secondary);
  padding: 6px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.button-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ==================== */
/* PRODUCT CARDS */
/* ==================== */

.featured-products {
  padding: 80px 0;
  background-color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  border-radius: 20px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.new {
  background: linear-gradient(135deg, #00b894, #00a381);
}
.product-badge.trending {
  background: linear-gradient(135deg, #fdcb6e, #f39c12);
  color: #2d3436;
}
.product-badge.sale {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
}
.product-badge.premium {
  background: linear-gradient(135deg, #d4af37, #b8941e);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view {
  background-color: white;
  color: var(--primary);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
}

.quick-view:hover {
  background-color: var(--secondary);
  color: white;
}

.wishlist-btn {
  width: 45px;
  height: 45px;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--text-dark);
}

.wishlist-btn:hover {
  background-color: var(--secondary);
  color: white;
}

.product-info {
  padding: 20px;
}

.product-category {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-info h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.product-rating i {
  color: #f39c12;
  font-size: 0.9rem;
}

.rating-count {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-left: 5px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.quick-add {
  background-color: var(--light-bg);
  color: var(--primary);
  border: 2px solid var(--sand);
  border-radius: 25px;
  padding: 8px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
}

.quick-add:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.quick-add.added {
  background-color: #00b894;
  color: white;
  border-color: #00b894;
}

/* ==================== */
/* BLOG CARDS */
/* ==================== */

.featured-blogs {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-meta i {
  margin-right: 5px;
}

.blog-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--secondary);
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-read-more {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--primary);
  gap: 12px;
}

.blog-author span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ==================== */
/* FOOTER */
/* ==================== */

.footer {
  background-color: var(--primary);
  color: white;
  padding: 70px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

/* ==================== */
/* RESPONSIVE */
/* ==================== */

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-circle {
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    gap: 25px;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

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

  .blogs-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-circle {
    width: 280px;
    height: 280px;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-circle {
    width: 220px;
    height: 220px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeIn 0.8s ease 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* ==================== */
/* REGISTER PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
  --error-color: #e74c3c;
  --success-color: #00b894;
  --google-red: #db4437;
  --facebook-blue: #4267b2;
  /* Added missing variables */
  --cart-green: #00b894;
  --cart-green-lighter: #e0f7f0;
}

.register-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.register-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .register-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.register-hero-text h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .register-hero-text h1 {
    font-size: 2.2rem;
  }
}

.register-hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .register-hero-text p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

.register-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .register-stats {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .register-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.register-stats .stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.register-stats .stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .register-stats .stat-number {
    font-size: 1.8rem;
  }
}

.register-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sand), white);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@media (max-width: 1024px) {
  .hero-circle {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-circle {
    width: 220px;
    height: 220px;
  }
}

/* Register Form */
.register-section {
  padding: 60px 0 80px;
  background-color: white;
}

.register-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .register-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
  .register-info-card {
    order: 2;
  }
}

.register-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d44 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.2);
  height: fit-content;
  position: sticky;
  top: 120px;
}

@media (max-width: 1024px) {
  .register-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .register-info-card {
    padding: 30px 20px;
  }
}

.register-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .register-info-card h3 {
    font-size: 1.5rem;
  }
}

.register-info-card p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--secondary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  opacity: 0.9;
}

.benefit-item p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.trust-signals {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.trust-signals h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

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

.trust-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-icon i {
  font-size: 1.5rem;
  color: var(--secondary-light);
}

.trust-icon span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.register-card {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .register-card {
    padding: 30px 20px;
  }
}

.register-header {
  text-align: center;
  margin-bottom: 40px;
}

.register-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .register-header h2 {
    font-size: 1.6rem;
  }
}

.register-header p {
  color: var(--text-light);
}

.register-form .form-group {
  margin-bottom: 25px;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.input-with-icon {
  position: relative;
  transition: var(--transition);
}

.input-with-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
  z-index: 1;
}

.input-with-icon:focus-within i {
  color: var(--secondary);
}

.input-with-icon input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--light-bg);
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
  background-color: white;
}

.password-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 8px;
}

.password-toggle:hover {
  color: var(--secondary);
  background: rgba(233, 69, 96, 0.1);
}

.password-strength {
  margin: 10px 0 20px;
  height: 60px;
}

.strength-bar {
  height: 6px;
  background-color: var(--sand);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.strength-text {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group label {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.terms-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.terms-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.register-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
}

.register-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.register-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.loading-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  position: absolute;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.register-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: var(--text-light);
}

.register-divider::before,
.register-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--sand);
}

.register-divider span {
  padding: 0 15px;
  font-size: 0.9rem;
}

.social-register {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

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

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--sand);
  background-color: white;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.social-btn i {
  font-size: 1.2rem;
}

.google-btn:hover {
  border-color: var(--google-red);
  color: var(--google-red);
  background: #fff8f8;
}

.facebook-btn:hover {
  border-color: var(--facebook-blue);
  color: var(--facebook-blue);
  background: #f8f9ff;
}

.register-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
}

.register-footer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.register-footer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.register-footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Register Steps */
.register-steps {
  padding: 80px 0;
  background-color: var(--light-bg);
}

@media (max-width: 768px) {
  .register-steps {
    padding: 60px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.step {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Register CTA */
.register-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d44 100%);
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  .register-cta {
    padding: 60px 0;
  }
}

.register-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .register-cta h2 {
    font-size: 2.2rem;
  }
}

.register-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.register-cta .btn-primary {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  padding: 18px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
}

.register-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.modal-content {
  background-color: white;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 90vh;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terms-modal {
  max-width: 600px;
}

.terms-content {
  padding: 40px;
  max-height: 70vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .terms-content {
    padding: 30px 20px;
  }
}

.terms-content h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.terms-content h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin: 25px 0 10px;
}

.terms-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 5px;
  z-index: 1;
}

.modal-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

/* Success Message */
.form-success {
  display: none;
  background: var(--cart-green-lighter);
  color: var(--cart-green);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.form-success i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==================== */
/* PRODUCTS PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --primary-light: #2d2d44;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --dark: #0a0a0a;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
  --success-green: #00b894;
  --error-red: #e94560;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.products-hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  padding: 60px 0 40px;
  text-align: center;
}

.page-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==================== */
/* PRODUCTS SECTION */
/* ==================== */
.products-section {
  padding: 40px 0 80px;
  background-color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== */
/* PRODUCTS CONTROLS */
/* ==================== */
.products-controls-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

/* Search Bar */
.search-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 25px;
  padding: 5px 15px;
  border: 2px solid var(--sand);
  transition: var(--transition);
  max-width: 400px;
  width: 100%;
  margin: 0;
}

.search-container:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  padding: 12px 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
  outline: none;
  width: 100%;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-btn {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Filter Toggle Button */
.filter-toggle {
  display: none;
}

.btn-filter {
  background-color: var(--light-bg);
  color: var(--primary);
  border: 2px solid var(--sand);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}

.btn-filter:hover {
  background-color: var(--sand);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* Sort Options */
.sort-options {
  min-width: 200px;
}

.sort-select {
  width: 100%;
  padding: 10px 15px;
  border-radius: 25px;
  border: 2px solid var(--sand);
  background-color: white;
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.sort-select:focus {
  outline: none;
  border-color: var(--secondary);
}

/* ==================== */
/* PRODUCTS LAYOUT */
/* ==================== */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  position: relative;
}

/* Filters Sidebar */
.filters-sidebar {
  background-color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  height: fit-content;
  position: sticky;
  top: 120px;
  transition: transform 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-group {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sand);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 10px;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  user-select: none;
  font-size: 0.95rem;
}

.filter-list label:hover {
  color: var(--secondary);
}

.filter-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Price Range */
.price-range {
  margin-top: 20px;
}

.range-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: var(--sand);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Filter Buttons */
.btn-apply-filters,
.btn-reset-filters {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.btn-apply-filters {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
}

.btn-apply-filters:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.btn-reset-filters {
  background-color: var(--light-bg);
  color: var(--text-dark);
  border: 2px solid var(--sand);
}

.btn-reset-filters:hover {
  background-color: var(--sand);
}

/* Close Filters Button (Mobile) */
.close-filters-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

/* ==================== */
/* PRODUCTS GRID */
/* ==================== */
.products-grid-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.products-meta {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.products-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
  min-height: 400px;
}

/* Product Card */
.product-card-large {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-card-large .product-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.product-card-large .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  border-radius: 20px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.new {
  background: linear-gradient(135deg, #00b894, #00a381);
}
.product-badge.trending {
  background: linear-gradient(135deg, #fdcb6e, #f39c12);
  color: #2d3436;
}
.product-badge.sale {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
}
.product-badge.premium {
  background: linear-gradient(135deg, #d4af37, #b8941e);
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 2;
}

.product-card-large:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  color: var(--text-dark);
  font-size: 1rem;
}

.product-action-btn:hover {
  background-color: var(--secondary);
  color: white;
  transform: scale(1.1);
}

.product-info-large {
  padding: 20px;
}

.product-category {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-info-large h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 2.6em;
  font-weight: 700;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-price-large {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.add-to-cart-large {
  width: 100%;
  padding: 12px;
  background-color: var(--light-bg);
  color: var(--primary);
  border: 2px solid var(--sand);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.add-to-cart-large:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
}

.add-to-cart-large.in-cart {
  background-color: var(--success-green);
  color: white;
  border-color: var(--success-green);
  cursor: default;
}

.add-to-cart-large:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==================== */
/* NO PRODUCTS MESSAGE */
/* ==================== */
.no-products,
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-products i,
.no-results i {
  font-size: 3rem;
  color: var(--sand);
  margin-bottom: 20px;
}

.no-products h3,
.no-results h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.no-products p,
.no-results p {
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.no-products .btn,
.no-results .btn {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.no-products .btn:hover,
.no-results .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* ==================== */
/* PAGINATION */
/* ==================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination-btn {
  padding: 10px 20px;
  background-color: white;
  border: 2px solid var(--sand);
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  white-space: nowrap;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
}

.page-numbers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--sand);
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.page-number.active {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
}

.page-number:not(.active):hover {
  background-color: var(--light-bg);
  border-color: var(--secondary);
}

/* ==================== */
/* NOTIFICATION */
/* ==================== */
.product-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  z-index: 10000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation:
    slideInRight 0.3s ease,
    fadeOut 0.3s ease 2.7s;
  animation-fill-mode: forwards;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 350px;
  word-wrap: break-word;
}

.product-notification i {
  font-size: 1.2rem;
  color: var(--secondary);
}

.product-notification.warning {
  background: #f39c12;
}

.product-notification.error {
  background: #e74c3c;
}

.product-notification.info {
  background: #3498db;
}

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* ==================== */
/* QUICK VIEW MODAL */
/* ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.quick-view-content {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalScale 0.3s ease;
}

@keyframes modalScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.quick-view-image {
  border-radius: 12px;
  overflow: hidden;
  height: fit-content;
}

.quick-view-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.quick-view-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quick-view-details h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.3;
  font-weight: 700;
}

.quick-view-details .product-category {
  margin-bottom: 15px;
}

.quick-view-details p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.quick-view-details .product-price-large {
  margin-bottom: 25px;
}

/* Quick View Close Button */
.quick-view-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--sand);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.quick-view-close-btn:hover {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
  transform: rotate(90deg);
}

/* Quick View Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.rating-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

.stars {
  color: #f39c12;
  display: flex;
  gap: 2px;
}

/* Quick View Options */
.product-option-group {
  margin-bottom: 20px;
}

.product-option-group h4 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

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

.size-option {
  display: inline-flex;
  align-items: center;
}

.size-option input {
  display: none;
}

.size-label {
  padding: 8px 18px;
  border: 2px solid var(--sand);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  color: var(--text-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}

.size-option.active .size-label,
.size-option input:checked + .size-label {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
}

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

.color-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.color-option input {
  display: none;
}

.color-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid var(--sand);
  transition: var(--transition);
  flex-shrink: 0;
}

.color-option.active .color-dot,
.color-option input:checked + .color-dot {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.2);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 150px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2px solid var(--sand);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quantity-btn:hover {
  background: var(--sand);
}

.quantity-input {
  width: 60px;
  text-align: center;
  padding: 10px;
  border: 2px solid var(--sand);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
  pointer-events: none;
  font-size: 1rem;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.product-actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid var(--sand);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ==================== */
/* RESPONSIVE BREAKPOINTS */
/* ==================== */

/* Tablet - 992px and below */
@media (max-width: 992px) {
  .products-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: white;
    padding: 30px 25px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: none;
    border-radius: 0;
    position: fixed;
    max-width: 400px;
  }

  .filters-sidebar.active {
    transform: translateX(0);
    display: block !important;
  }

  .close-filters-btn {
    display: block;
  }

  .filter-toggle {
    display: block;
  }

  .products-controls-grid {
    grid-template-columns: 1fr auto;
  }

  .sort-options {
    min-width: 180px;
  }

  .quick-view-content {
    padding: 20px;
    gap: 20px;
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .product-card-large .product-image {
    height: 200px;
  }

  .products-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .products-hero {
    padding: 50px 0 25px;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .products-controls-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filter-toggle,
  .sort-options {
    width: 100%;
  }

  .btn-filter,
  .sort-select {
    width: 100%;
    justify-content: center;
  }

  .products-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }

  .product-card-large .product-image {
    height: 180px;
  }

  .product-info-large {
    padding: 15px;
  }

  .product-info-large h4 {
    font-size: 1rem;
    min-height: 2.4em;
  }

  .product-description {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }

  .current-price {
    font-size: 1.3rem;
  }

  .original-price {
    font-size: 0.9rem;
  }

  .add-to-cart-large {
    padding: 10px;
    font-size: 0.9rem;
  }

  .pagination {
    gap: 10px;
  }

  .pagination-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .page-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .quick-view-content {
    padding: 15px;
    gap: 15px;
  }

  .quick-view-details h3 {
    font-size: 1.5rem;
  }

  .quick-view-close-btn {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .color-options,
  .size-options {
    gap: 10px;
  }

  .size-label {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .product-notification {
    top: 80px;
    right: 10px;
    left: 10px;
    max-width: none;
    padding: 12px 20px;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .products-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .product-card-large .product-image {
    height: 160px;
  }

  .product-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .product-actions {
    top: 10px;
    right: 10px;
    gap: 8px;
  }

  .product-action-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .product-info-large {
    padding: 12px;
  }

  .product-info-large h4 {
    font-size: 0.95rem;
    min-height: 2.2em;
    margin-bottom: 8px;
  }

  .product-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
  }

  .product-price-large {
    margin-bottom: 12px;
  }

  .current-price {
    font-size: 1.2rem;
  }

  .original-price {
    font-size: 0.85rem;
  }

  .add-to-cart-large {
    padding: 8px;
    font-size: 0.85rem;
  }

  .pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .pagination-btn {
    justify-content: center;
  }

  .page-numbers {
    order: -1;
  }

  .filters-sidebar {
    padding: 25px 20px;
    max-width: 100%;
  }

  .filter-group h4 {
    font-size: 1rem;
  }

  .filter-list label {
    font-size: 0.9rem;
  }

  .btn-apply-filters,
  .btn-reset-filters {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Very Small Mobile - 360px and below */
@media (max-width: 360px) {
  .products-grid-large {
    grid-template-columns: 1fr;
  }

  .product-card-large .product-image {
    height: 220px;
  }

  .product-info-large h4 {
    font-size: 1.1rem;
  }

  .quick-view-details h3 {
    font-size: 1.3rem;
  }
}

/* Print Styles */
@media print {
  .filters-sidebar,
  .products-controls-grid,
  .product-actions,
  .add-to-cart-large,
  .pagination,
  .header,
  .footer {
    display: none !important;
  }

  .products-layout {
    display: block;
  }

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

  .product-card-large {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .product-card-large:hover {
    transform: none;
  }
}

/* ==================== */
/* LOGIN PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
  --error-color: #e74c3c;
  --success-color: #00b894;
  --google-red: #db4437;
  --facebook-blue: #4267b2;
  /* Added missing variables */
  --cart-green: #00b894;
  --cart-green-lighter: #e0f7f0;
}

.login-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.login-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .login-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.login-hero-text h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
}

.login-hero-text h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .login-hero-text h1::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .login-hero-text h1 {
    font-size: 2.2rem;
  }
  .login-hero-text h1::after {
    width: 40px;
    height: 2px;
  }
}

.login-hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .login-hero-text p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

.login-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .login-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit i {
  color: var(--secondary);
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 8px;
}

.benefit span {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.hero-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  animation: float 8s ease-in-out infinite;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sand), white);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@media (max-width: 1024px) {
  .hero-circle {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-circle {
    width: 240px;
    height: 240px;
  }
}

/* Login Section */
.login-section {
  padding: 60px 0 100px;
  background-color: white;
  position: relative;
}

.login-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
  }
}

.login-card {
  background-color: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary),
    var(--secondary-light),
    var(--secondary)
  );
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .login-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.login-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  margin: 10px auto 0;
}

.login-header p {
  color: var(--text-light);
  margin-top: 15px;
}

.login-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.login-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.input-with-icon {
  position: relative;
  transition: var(--transition);
}

.input-with-icon i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
  z-index: 1;
}

.input-with-icon:focus-within i {
  color: var(--secondary);
}

.input-with-icon input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--light-bg);
}

.input-with-icon input:hover {
  border-color: var(--secondary);
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
  background-color: white;
}

.password-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 8px;
}

.password-toggle:hover {
  color: var(--secondary);
  background: rgba(233, 69, 96, 0.1);
}

.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 480px) {
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.remember-me input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--sand);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.remember-me input[type="checkbox"]:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.remember-me input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.remember-me label {
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.forgot-password {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.forgot-password:hover {
  color: var(--primary);
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  font-family: "Inter", sans-serif;
}

.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.loading-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  position: absolute;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: var(--text-light);
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--sand);
}

.login-divider span {
  padding: 0 20px;
  font-size: 0.9rem;
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .social-login {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--sand);
  background-color: white;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.social-btn i {
  font-size: 1.2rem;
}

.google-btn:hover {
  border-color: var(--google-red);
  color: var(--google-red);
  background: #fff8f8;
}

.facebook-btn:hover {
  border-color: var(--facebook-blue);
  color: var(--facebook-blue);
  background: #f8f9ff;
}

.login-footer {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--sand);
}

.login-footer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.login-footer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.login-footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Login Info Card */
.login-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d44 100%);
  color: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.2);
  height: fit-content;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.login-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.3);
}

@media (max-width: 1024px) {
  .login-info-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .login-info-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
}

.info-card-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
}

.info-card-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.info-card-content p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.info-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  transition: var(--transition);
}

.info-feature:hover {
  background: rgba(255, 255, 255, 0.05);
}

.info-feature i {
  font-size: 1.5rem;
  color: var(--secondary-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.info-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  opacity: 0.95;
}

.info-feature p {
  margin-bottom: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.login-info-card .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 16px;
  transition: all 0.3s ease;
  border-radius: 12px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

.login-info-card .btn-secondary:hover {
  background-color: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.modal-content {
  background-color: white;
  padding: 50px;
  border-radius: 24px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .modal-content {
    padding: 30px 25px;
    max-width: 400px;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 5px;
}

.modal-close:hover {
  color: var(--secondary);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--text-light);
  margin-top: 15px;
}

.reset-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.reset-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.reset-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: var(--cart-green-lighter);
  color: var(--cart-green);
  padding: 25px;
  border-radius: 12px;
  margin-top: 25px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.form-success i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

/* Demo Banner */
.demo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d44 100%);
  color: white;
  padding: 20px 0;
  z-index: 1001;
  animation: slideUpBanner 0.5s ease;
  display: none;
  border-top: 3px solid var(--secondary);
}

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

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

.demo-banner p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.demo-banner strong {
  color: var(--secondary-light);
}

.demo-banner code {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.close-banner {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.close-banner:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* ==================== */
/* INDEX PAGE - Additional Homepage Styles */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Hero Stats Animation */
.hero-stats .stat {
  opacity: 0;
  animation: fadeInStats 0.8s ease forwards;
}

.hero-stats .stat:nth-child(1) {
  animation-delay: 0.3s;
}
.hero-stats .stat:nth-child(2) {
  animation-delay: 0.5s;
}
.hero-stats .stat:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes fadeInStats {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Card Animations */
.product-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Divider */
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  margin: 20px auto;
  border-radius: 2px;
}

/* Quick Add Button States */
.quick-add {
  position: relative;
  overflow: hidden;
}

.quick-add.added {
  background: var(--success-color);
  color: white;
  border-color: var(--success-color);
}

.quick-add .fa-spinner {
  animation: spin 0.8s linear infinite;
}

/* Wishlist Heart Animation */
.wishlist-btn .fas {
  transition: all 0.3s ease;
}

.wishlist-btn .fas.fa-heart {
  animation: heartPop 0.4s ease;
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* Blog Card Hover */
.blog-card .blog-image {
  position: relative;
  overflow: hidden;
}

.blog-card .blog-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: var(--transition);
}

.blog-card:hover .blog-image::after {
  opacity: 1;
}

/* Floating Cards - Homepage */
.floating-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: transform 0.4s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

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

.floating-card:hover {
  transform: translateY(-8px) scale(1.02);
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
  .floating-card {
    display: none !important;
  }
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--primary), #2d2d44);
  padding: 40px;
  border-radius: 20px;
  color: white;
  text-align: center;
}

.newsletter-widget h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.newsletter-widget p {
  opacity: 0.8;
  margin-bottom: 25px;
}

.newsletter-widget input {
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
}

.newsletter-widget .btn {
  width: 100%;
  max-width: 400px;
  padding: 15px;
  font-size: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-card .stars {
  color: #f39c12;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 2px;
}

.testimonial-card .author span {
  font-size: 0.85rem;
  color: var(--text-light);
}
/* ==================== */
/* CONTACT PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
  --error-color: #e74c3c;
  --success-color: #00b894;
  /* Added missing variables */
  --cart-green: #00b894;
  --cart-green-lighter: #e0f7f0;
}

.contact-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  text-align: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-title {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  background-color: white;
  padding: 20px 25px;
  border-radius: 15px;
  min-width: 200px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-stat i {
  font-size: 2rem;
  color: var(--secondary);
  width: 50px;
  height: 50px;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-stat h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-stat p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact Form */
.contact-main {
  padding: 60px 0 80px;
  background-color: white;
}

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

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-section {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 30px 20px;
  }
}

.contact-form-section h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-form-section h2 {
    font-size: 1.8rem;
  }
}

.contact-form-section p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 25px;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
  background-color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
}

.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.submit-btn {
  position: relative;
  padding: 18px 40px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
  overflow: hidden;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.loading-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.form-success {
  display: none;
  background: var(--cart-green-lighter);
  color: var(--cart-green);
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

/* Contact Info */
.contact-info-section {
  position: sticky;
  top: 120px;
  height: fit-content;
}

@media (max-width: 1024px) {
  .contact-info-section {
    position: static;
  }
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, #2d2d44 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.2);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-info-card p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.contact-method {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--secondary-light);
}

.method-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  opacity: 0.9;
}

.method-info p {
  margin-bottom: 5px;
  opacity: 0.8;
  font-size: 0.95rem;
}

.social-contact {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-contact h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.social-icon i {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 30px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .contact-hero-stats {
    gap: 20px;
  }

  .contact-stat {
    min-width: 160px;
    padding: 15px 20px;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .contact-method {
    gap: 12px;
  }

  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-stat {
    min-width: 100%;
    flex: 1;
  }

  .social-icons {
    flex-direction: column;
  }

  .social-icon {
    justify-content: center;
  }
}
/* ==================== */
/* CHECKOUT PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
  --error-color: #e74c3c;
  --success-color: #00b894;
  --cart-green: #00b894;
  --cart-green-lighter: #e0f7f0;
}

.checkout-main {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
  min-height: 70vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Checkout Header */
.checkout-header {
  text-align: center;
  padding: 0 0 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--sand);
}

.checkout-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.checkout-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Progress Steps */
.checkout-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.checkout-progress::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--sand);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
  transform: scale(1.1);
}

.progress-step.completed .step-number {
  background: var(--success-color);
  color: white;
  border-color: var(--success-color);
}

.progress-step.completed .step-label {
  color: var(--success-color);
}

.progress-step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-number i {
  font-size: 0.8rem;
}

.step-label {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

/* Checkout Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

@media (max-width: 992px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* Checkout Form */
.checkout-form-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px var(--shadow);
}

@media (max-width: 768px) {
  .checkout-form-section {
    padding: 25px 20px;
  }
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--sand);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
}

.form-section h2 i {
  color: var(--secondary);
  margin-right: 10px;
}

.form-group {
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  transition: var(--transition);
  background-color: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
  background-color: white;
}

.form-group input.error,
.form-group select.error {
  border-color: var(--error-color);
}

.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}

.payment-method {
  position: relative;
}

.payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-method label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 2px solid var(--sand);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  text-align: center;
}

.payment-method label i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.payment-method label span {
  font-weight: 500;
  color: var(--text-dark);
}

.payment-method input[type="radio"]:checked + label {
  border-color: var(--secondary);
  background: rgba(233, 69, 96, 0.05);
}

.payment-method input[type="radio"]:checked + label i {
  color: var(--secondary);
}

.card-icons {
  display: flex;
  gap: 6px;
  font-size: 1.2rem;
  color: var(--text-light);
}

.card-icons i {
  font-size: 1.2rem !important;
}

/* Card Details */
.card-details,
.upi-details {
  padding: 20px;
  background: var(--light-bg);
  border-radius: 12px;
  margin-top: 15px;
}

/* Order Summary in Form */
.order-summary-form .order-items {
  margin-bottom: 20px;
}

.order-summary-form .order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand);
}

.order-summary-form .order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  font-weight: 500;
}

.order-item-price {
  font-weight: 600;
  color: var(--primary);
}

.order-totals {
  padding-top: 15px;
  border-top: 2px solid var(--sand);
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--text-light);
}

.order-row.discount {
  color: var(--success-color);
}

.order-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: 10px;
  border-top: 1px solid var(--sand);
}

.place-order-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.place-order-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.place-order-btn i {
  margin-right: 8px;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.secure-badge i {
  color: var(--success-color);
  font-size: 1.2rem;
}

/* Order Summary Sidebar */
.checkout-summary {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.summary-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px var(--shadow);
}

.summary-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.summary-items {
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}

.summary-item-info {
  flex: 1;
}

.summary-item-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.summary-item-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

.summary-item-price {
  font-weight: 600;
  color: var(--primary);
}

.summary-totals {
  margin-top: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.summary-row.discount {
  color: var(--success-color);
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: 10px;
  border-top: 1px solid var(--sand);
}

.delivery-info,
.return-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.delivery-info i,
.return-info i {
  color: var(--secondary);
}

/* Success Modal */
.success-modal {
  text-align: center;
  padding: 50px 40px !important;
}

.success-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.success-modal h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.success-modal p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.order-details {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  text-align: left;
}

.order-details p {
  margin: 8px 0;
  color: var(--text-dark);
}

.delivery-note {
  color: var(--secondary);
  font-weight: 600;
}

.success-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

.success-actions .btn {
  min-width: 150px;
}

@media (max-width: 768px) {
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
  .success-actions .btn {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-header h1 {
    font-size: 2rem;
  }
  .checkout-progress {
    flex-wrap: wrap;
    gap: 20px;
  }
  .checkout-progress::before {
    display: none;
  }
  .checkout-summary {
    position: static;
  }
  .payment-methods {
    grid-template-columns: 1fr;
  }
  .success-modal {
    padding: 30px 20px !important;
  }
}
/* ==================== */
/* CART PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
  --cart-green: #00b894;
  --cart-green-light: #55efc4;
  --cart-green-lighter: #e0f7f0;
  --cart-error: #e74c3c;
  --cart-warning: #f39c12;
}

/* Main Cart Layout */
.cart-main {
  min-height: 70vh;
  padding: 40px 0 80px;
  background: linear-gradient(180deg, var(--light-bg) 0%, white 100%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cart-header {
  text-align: center;
  padding: 0 0 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--sand);
}

.cart-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.cart-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Progress Steps */
.cart-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.cart-progress::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--sand);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.progress-step.active .step-number {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
  transform: scale(1.1);
}

.progress-step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

/* Empty Cart State */
.empty-cart {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
  max-width: 500px;
  margin: 0 auto;
}

.empty-cart-icon {
  width: 100px;
  height: 100px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.empty-cart-icon i {
  font-size: 3rem;
  color: var(--secondary);
}

.empty-cart h2 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.empty-cart p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.empty-cart .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Cart Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

/* Cart Items Section */
.cart-items-section {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px var(--shadow);
}

.cart-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--sand);
}

.cart-section-header h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.cart-section-header h2 span {
  color: var(--secondary);
}

#clearCartBtn {
  background: none;
  border: none;
  color: var(--cart-error);
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
}

#clearCartBtn:hover {
  background: rgba(231, 76, 60, 0.1);
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 15px;
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
  position: relative;
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
  border-color: var(--secondary);
}

.cart-item-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.cart-item-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-category {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-item-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.cart-item-variant {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.variant-chip {
  background: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-light);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-item-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid var(--sand);
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.quantity-btn:hover:not(:disabled) {
  background: var(--secondary);
  color: white;
}

.quantity-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--cart-error);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.cart-item-remove:hover {
  background: rgba(231, 76, 60, 0.1);
}

.cart-item-subtotal {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
  margin-top: 8px;
}

/* Order Summary */
.cart-summary {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px var(--shadow);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.summary-header {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--sand);
  margin-bottom: 25px;
}

.summary-header h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

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

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
}

.summary-row span:first-child {
  color: var(--text-light);
}

.summary-row span:last-child {
  font-weight: 500;
  color: var(--text-dark);
}

.summary-row.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--sand);
}

.summary-divider {
  height: 1px;
  background: var(--sand);
  margin: 20px 0;
}

.eco-badge {
  color: var(--cart-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.eco-badge::before {
  content: "✓";
}

.savings-notice {
  background: var(--cart-green-lighter);
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cart-green);
  font-size: 0.95rem;
}

.savings-notice i {
  font-size: 1.1rem;
}

.checkout-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.checkout-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.payment-methods {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  margin-bottom: 20px;
}

.payment-methods span {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.8rem;
  color: var(--text-light);
}

.payment-icons i {
  transition: var(--transition);
}

.payment-icons i:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.security-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.security-notice i {
  color: var(--cart-green);
}

.continue-shopping {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--sand);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cart-main {
    padding: 20px 0 40px;
  }

  .cart-header h1 {
    font-size: 2.2rem;
  }

  .cart-progress {
    flex-wrap: wrap;
    gap: 20px;
  }

  .cart-progress::before {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item-image {
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }

  .cart-item-variant {
    justify-content: center;
  }

  .cart-item-actions {
    align-items: center;
  }

  .cart-section-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 576px) {
  .cart-items-section,
  .cart-summary {
    padding: 20px;
  }

  .empty-cart {
    padding: 40px 20px;
  }

  .empty-cart-icon {
    width: 80px;
    height: 80px;
  }

  .empty-cart-icon i {
    font-size: 2.5rem;
  }

  .cart-item {
    padding: 15px;
  }

  .cart-item-title {
    font-size: 1rem;
  }

  .quantity-control {
    padding: 3px;
  }

  .quantity-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .quantity-input {
    width: 32px;
    font-size: 0.9rem;
  }
}
/* ==================== */
/* BLOGS PAGE - ClothBrand */
/* ==================== */

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --secondary-light: #ff6b81;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-dark: #1a1a2e;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
}

.blogs-hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  padding: 80px 0 50px;
  text-align: center;
}

.page-header {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 800;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Blogs Section */
.blogs-section {
  padding: 60px 0 80px;
  background-color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blogs-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category-btn {
  padding: 10px 24px;
  background-color: var(--light-bg);
  border: 2px solid var(--sand);
  border-radius: 25px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.blog-category-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.blog-category-btn.active {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
}

.blog-search {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 25px;
  padding: 5px 5px 5px 20px;
  border: 2px solid var(--sand);
  transition: var(--transition);
}

.blog-search:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.blog-search input {
  border: none;
  padding: 10px 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  width: 200px;
  color: var(--text-dark);
  background: transparent;
  outline: none;
}

.blog-search input::placeholder {
  color: var(--text-light);
}

.search-btn {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* Blogs Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.blog-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-card-category {
  background-color: var(--light-bg);
  color: var(--secondary);
  padding: 4px 14px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

.blog-card-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.4;
  flex: 1;
  font-weight: 700;
}

.blog-card-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--sand);
}

.blog-card-read-time {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-read-btn {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  padding: 8px 18px;
  border: 2px solid var(--secondary);
  border-radius: 20px;
  background: transparent;
}

.blog-card-read-btn:hover {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  gap: 10px;
  border-color: var(--secondary);
}

/* Load More Button */
.blogs-load-more {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  padding: 15px 45px;
  background-color: white;
  border: 2px solid var(--sand);
  border-radius: 30px;
  color: var(--text-dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.btn-load-more:hover {
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

.btn-load-more i {
  transition: var(--transition);
}

.btn-load-more:hover i {
  transform: translateY(2px);
}

/* Blog Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.blog-modal-content {
  background-color: white;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  border: 2px solid var(--sand);
}

.modal-close:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: rotate(90deg);
}

.modal-blog-details {
  padding: 40px;
}

@media (max-width: 768px) {
  .modal-blog-details {
    padding: 25px 20px;
  }
}

.modal-blog-header {
  margin-bottom: 30px;
}

.modal-blog-image {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.modal-blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.modal-blog-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin: 30px 0 20px;
  font-weight: 700;
}

.modal-blog-content h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 25px 0 15px;
  font-weight: 600;
}

.modal-blog-content h4 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.modal-blog-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.modal-blog-content ul,
.modal-blog-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-blog-content li {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.modal-blog-content blockquote {
  border-left: 4px solid var(--secondary);
  padding-left: 20px;
  margin: 20px 0;
  color: var(--text-light);
  font-style: italic;
}

/* No Blogs Found */
.no-blogs {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.no-blogs i {
  font-size: 3rem;
  color: var(--sand);
  margin-bottom: 20px;
}

.no-blogs h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.no-blogs p {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
  .blogs-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-categories {
    justify-content: center;
  }

  .blog-search {
    max-width: 100%;
  }

  .blog-search input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blogs-hero {
    padding: 60px 0 30px;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .blog-categories {
    gap: 8px;
  }

  .blog-category-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .blog-card-image {
    height: 200px;
  }

  .modal-blog-image {
    height: 220px;
  }

  .modal-blog-content {
    font-size: 1rem;
  }

  .modal-blog-content h2 {
    font-size: 1.6rem;
  }

  .modal-blog-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-card-read-btn {
    width: 100%;
    justify-content: center;
  }

  .modal-blog-details {
    padding: 20px 15px;
  }

  .modal-blog-image {
    height: 180px;
  }

  .modal-blog-content h2 {
    font-size: 1.4rem;
  }
}
/* about.css - ClothBrand About Page */
:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --gold: #d4af37;
  --light-bg: #f8f7f4;
  --sand: #e8e0d5;
  --text-light: #666666;
  --shadow: rgba(26, 26, 46, 0.08);
  --transition: all 0.3s ease;
}

.about-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-title {
  font-size: 3.2rem;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

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

.stat {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.hero-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sand), white);
}

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

@media (max-width: 992px) {
  .hero-circle {
    width: 300px;
    height: 300px;
  }
}

/* Our Story */
.our-story {
  padding: 80px 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.story-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--sand);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-year {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), #c0392b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 30px;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content {
  background: var(--light-bg);
  padding: 25px 30px;
  border-radius: 15px;
  flex: 1;
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px var(--shadow);
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team */
.meet-team {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 280px;
  overflow: hidden;
}

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

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.member-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.6;
}
