@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  /* Color Palette */
  --bg-primary: #ffffff; /* Clean white background */
  --bg-secondary: #ffffff;
  --bg-tertiary: #fff5f7; /* Soft blush pink for accents */
  
  --primary: #ec2196; /* Cats & Bows Bright Pink */
  --primary-dark: #a40b63; /* Cats & Bows Dark Berry Pink */
  --primary-hover: #c80d75;
  --primary-light: #fff0f3;
  --primary-shadow: rgba(236, 33, 150, 0.1);
  
  --accent: #ec2196;
  --accent-gold: #e5a93b;
  
  --text-dark: #2b2022; /* Elegant deep off-black */
  --text-medium: #5a5a5a;
  --text-light: #888888;
  
  --border-color: #f0f0f0; /* Light grey borders */
  --border-focus: #ec2196;
  
  --success: #48c9b0;
  --error: #ec7063;
  
  /* Fonts */
  --font-heading: 'Amiri', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --radius-sm: 2px;   /* Clean boutique sharp corners */
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

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

ul {
  list-style: none;
}

/* --- COMMON UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary);
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: none;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  box-shadow: none;
}

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

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--primary-light);
  color: var(--primary);
}

.badge-success {
  background-color: #e8f8f5;
  color: var(--success);
}

.badge-warning {
  background-color: #fef9e7;
  color: var(--accent-gold);
}

/* --- HEADER & PROMO --- */
.promo-bar {
  background-color: #e11a38; /* Bright coral-red announcement bar */
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.logo i {
  font-size: 20px;
  color: var(--primary);
}

.logo span {
  color: var(--text-dark);
  font-weight: 600;
}

.logo span span {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
  margin-left: 2px;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 13px;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.nav-btn {
  background: none;
  border: none;
  color: var(--text-medium);
  cursor: pointer;
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.cart-count {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid white;
}

/* --- HERO SECTION --- */
.hero {
  padding: 20px 0 40px;
  background-color: #ffffff; /* Clean white */
  position: relative;
}

.hero-banner-container {
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: block;
}

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

.hero-content h1 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.hero-content h1 span {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}

.hero-content p {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-item i {
  color: var(--primary);
  font-size: 16px;
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--border-color);
  animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper img {
  border-radius: var(--radius-sm);
  width: 100%;
}

.hero-badge-float {
  position: absolute;
  background: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  border: 1px solid #f0f0f0;
  animation: float-delayed 6s ease-in-out infinite;
}

.hero-badge-float.b1 {
  top: 10%;
  left: -20px;
}

.hero-badge-float.b2 {
  bottom: 10%;
  right: -10px;
}

.hero-badge-float i {
  color: var(--accent-gold);
  font-size: 16px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- CATEGORIES SECTION --- */
.categories-sec {
  padding: 80px 0;
  text-align: center;
}

.sec-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.sec-subtitle {
  color: var(--text-medium);
  margin-bottom: 48px;
  font-size: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px;
  justify-content: center;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.category-img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background-color: var(--bg-tertiary);
  border: 4px solid var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  transition: var(--transition);
}

.category-card:hover .category-img {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.category-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* --- PRODUCT SECTION & CARD --- */
.products-sec {
  padding: 80px 0;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: transparent;
  border-radius: var(--radius-sm);
  border: none;
  overflow: hidden;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  background-color: #fafafa;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: none;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ebebeb;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-wishlist:hover {
  color: var(--primary);
  background: white;
  border-color: var(--primary);
}

.product-card-body {
  padding: 12px 4px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
}

.product-card-category {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--primary-dark);
  line-height: 1.3;
  height: 44px; /* Set a consistent height for 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-title a {
  color: var(--primary-dark);
  text-decoration: none;
}

.product-card-title a:hover {
  color: var(--primary);
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}

.stars {
  color: var(--accent-gold);
  font-size: 11px;
}

.rating-text {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.product-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-price::before {
  content: '₹';
  margin-right: 1px;
}

.add-cart-btn {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  width: 100%;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
  margin-top: auto;
}

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

/* --- WHY CHOOSE US --- */
.why-sec {
  padding: 80px 0;
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-secondary);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-focus);
}

.why-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-medium);
  font-size: 15px;
}

/* --- TESTIMONIALS --- */
.reviews-sec {
  padding: 80px 0;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background-color: var(--bg-secondary);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 14px;
}

.review-text {
  font-size: 15px;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 24px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

.user-info h4 {
  font-size: 15px;
  font-weight: 700;
}

.user-info p {
  font-size: 12px;
  color: var(--text-light);
}

/* --- COMMUNITY FEED (INSTAGRAM STYLE) --- */
.community-sec {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-secondary);
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(210, 93, 120, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: white;
  font-size: 24px;
  transition: var(--transition);
  cursor: pointer;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* --- FOOTER --- */
.footer {
  background-color: #312124;
  color: #ECE5E6;
  padding: 80px 0 30px;
}

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

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-brand p {
  color: #B5A6A8;
  margin-bottom: 24px;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ECE5E6;
  font-size: 16px;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #B5A6A8;
  font-size: 14px;
}

.footer-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-newsletter p {
  color: #B5A6A8;
  font-size: 14px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  color: white;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: #8C7B7E;
}

.newsletter-form button {
  background-color: var(--primary);
  border: none;
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8C7B7E;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* --- SHOP PAGE SPECIFICS --- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 60px 0 80px;
}

.shop-sidebar {
  background-color: var(--bg-secondary);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget {
  margin-bottom: 30px;
}

.sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

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

.category-list a {
  font-size: 15px;
  color: var(--text-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-list a:hover, .category-list a.active {
  color: var(--primary);
  font-weight: 600;
}

.category-list span {
  background-color: var(--bg-primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--text-light);
}

.search-widget {
  position: relative;
}

.search-widget input {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 10px 16px 10px 40px;
  font-size: 14px;
}

.search-widget i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background-color: var(--bg-secondary);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.shop-toolbar-results {
  font-size: 15px;
  color: var(--text-medium);
}

.shop-toolbar-sort select {
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--text-medium);
  font-weight: 600;
  cursor: pointer;
}

/* --- PRODUCT DETAIL PAGE SPECIFICS --- */
.detail-sec {
  padding: 60px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background-color: var(--bg-secondary);
  padding: 40px 0;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: none;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image-wrapper {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

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

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  background-color: var(--bg-primary);
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--primary);
}

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

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-category {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.detail-price {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.detail-price::before {
  content: '₹';
  margin-right: 2px;
}

.detail-desc {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.customization-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.customization-box h4 {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.customization-box h4 i {
  color: var(--primary);
}

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

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--border-focus);
  background-color: white;
}

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

.qty-selector {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: white;
  width: 130px;
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--text-medium);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background-color: var(--bg-primary);
  color: var(--primary);
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-weight: 700;
  color: var(--text-dark);
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- CART PAGE SPECIFICS --- */
.cart-sec {
  padding: 60px 0 80px;
}

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

.cart-table-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-item:first-child {
  padding-top: 0;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

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

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

.cart-item-details p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}

.cart-item-price::before {
  content: '₹';
}

.remove-cart-item {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 18px;
  padding: 8px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.remove-cart-item:hover {
  color: var(--error);
  background-color: var(--bg-primary);
}

.cart-summary-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-title {
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-medium);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.summary-row.total span:last-child {
  color: var(--primary);
}

.summary-row span:last-child::before {
  content: '₹';
  margin-right: 2px;
}

.checkout-btn {
  width: 100%;
  margin-top: 24px;
}

/* --- CHECKOUT MODAL / SECTION --- */
.checkout-form-sec {
  margin-top: 30px;
  border-top: 1px dashed var(--border-color);
  padding-top: 30px;
}

.checkout-form-sec h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.form-grid-full {
  grid-column: span 2;
}

/* --- PAYMENT GATEWAY STUB --- */
.payment-stub-box {
  background-color: var(--bg-primary);
  border: 1px dashed var(--border-focus);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.payment-stub-box h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-stub-box p {
  font-size: 13px;
  color: var(--text-medium);
}

/* --- ADMIN PANEL --- */
.admin-layout {
  padding: 40px 0 80px;
}

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

.admin-title-group h1 {
  font-size: 28px;
}

.admin-title-group p {
  color: var(--text-medium);
  font-size: 15px;
}

.admin-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.admin-nav-item {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-medium);
}

.admin-nav-item.active, .admin-nav-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stat-card-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
}

.stat-card-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 4px;
}

.admin-table-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background-color: var(--bg-primary);
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-color);
}

.admin-table td {
  padding: 20px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.admin-table-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-table-product {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

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

.admin-btn-icon {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-medium);
  font-size: 14px;
  transition: var(--transition-fast);
}

.admin-btn-icon:hover {
  background-color: var(--bg-primary);
  color: var(--primary);
}

.admin-btn-icon.delete:hover {
  color: var(--error);
  background-color: #FCE8E6;
}

/* --- ADMIN ADD/EDIT MODAL --- */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 43, 46, 0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.admin-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.admin-modal {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.admin-modal-overlay.active .admin-modal {
  transform: translateY(0);
}

.admin-modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h2 {
  font-size: 20px;
}

.close-modal {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-light);
}

.admin-modal-body {
  padding: 24px;
  max-height: 70vh;
  overflow-y: auto;
}

.admin-modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background-color: var(--bg-primary);
}

/* --- EMPTY STATES --- */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state-icon {
  font-size: 64px;
  color: var(--border-focus);
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-medium);
  margin-bottom: 24px;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  color: var(--text-dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-left-color: var(--success);
}

.toast-error {
  border-left-color: var(--error);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-feed {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-features {
    justify-content: center;
  }
  .hero-badge-float.b1 {
    left: 10px;
  }
  .hero-badge-float.b2 {
    right: 10px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none; /* simple responsive nav could be toggled, but let's keep it minimal */
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .why-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .admin-stats {
    grid-template-columns: 1fr;
  }
}

/* --- CART DRAWER --- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(58, 43, 46, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: -4px 0 24px rgba(58, 43, 46, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-medium);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.close-drawer:hover {
  color: var(--primary);
}

.cart-drawer-body {
  flex-grow: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-drawer-empty {
  text-align: center;
  margin: auto;
  color: var(--text-medium);
}

.cart-drawer-empty i {
  font-size: 48px;
  color: var(--border-focus);
  margin-bottom: 16px;
}

.cart-drawer-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f5f5f5;
}

.cart-drawer-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #ebebeb;
}

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

.cart-drawer-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-drawer-item-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.cart-drawer-item-cust {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.cart-drawer-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.cart-drawer-item-qty-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid #ebebeb;
  background-color: #fafafa;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.cart-drawer-shipping-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.btn-drawer-checkout {
  width: 100%;
  text-align: center;
}

/* --- CATEGORY SCROLL BAR --- */
.category-scroll-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
  overflow: hidden;
}

.scroll-container-wrapper {
  overflow: hidden;
}

.scroll-container {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 4px 8px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

@media (min-width: 768px) {
  .scroll-container {
    justify-content: center; /* Center them on desktop if they fit */
  }
}

.scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 80px;
  cursor: pointer;
}

.scroll-img-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-dark);
  padding: 3px;
  margin-bottom: 6px;
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.scroll-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.scroll-item:hover .scroll-img-wrapper {
  transform: scale(1.06);
  border-color: var(--primary);
}

.scroll-item span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-dark);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.scroll-item:hover span {
  color: var(--primary);
}

/* --- INFO PAGES --- */
.info-sec {
  padding: 60px 0 100px;
}

.info-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid var(--border-color);
}

.info-title {
  font-size: 32px;
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.info-content h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.info-content li {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 8px;
}

