:root {
  --primary-color: #000000; /* Professional Black/White theme based on references */
  --secondary-color: #333;
  --bg-color: #fff;
  --text-color: #111;
  --card-bg: #fff;
  --radius: 4px;
  --font-main: 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

html {
  scroll-behavior: smooth;
}

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

/* Icons (SVG styling) */
.icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Top Bar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.logo-container img {
  height: 40px;
  width: auto;
}

.header-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

main {
  padding-top: 70px;
}

/* Video Hero Section */
.video-hero-wrapper {
  position: relative;
  width: 100%;
  height: calc(50vh + 70px); /* Optimized for mobile view, including header height */
  margin-top: -70px; /* Pull it up underneath the fixed header */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Laptop and Desktop View */
@media (min-width: 768px) {
  .video-hero-wrapper {
    height: calc(80vh + 70px);
    min-height: 570px;
  }
}


.shop-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  transform: scale(1.05);
}

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

/* Sliding Circular Menu */
.slider-container {
  padding: 20px;
  background: white;
  text-align: center;
}

.slider-container h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.circular-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.circular-slider::-webkit-scrollbar {
  display: none;
}

.circle-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-color);
}

.circle-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.circle-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Product Grid */
.category-section {
  padding: 20px;
}

.category-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Category Banners */
.category-banner {
  display: flex;
  flex-direction: row;
  background: #fdfdfd;
  border: 1px solid #eee;
  margin-bottom: 15px;
  overflow: hidden;
  height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 15px;
}

.category-banner-img {
  flex: 1;
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.category-banner h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.category-banner p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.banner-arrow-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.banner-arrow-btn.open {
  transform: rotate(90deg);
}

.category-grid-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
}

.category-grid-container.open {
  max-height: 3000px;
}

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

.product-card {
  background: var(--card-bg);
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #eee;
}

.product-card-body {
  padding: 10px 0;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.product-card .price {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Notification Slider */
/* Cart Modal Overlay */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.cart-modal-overlay.show {
  opacity: 1;
}
.cart-modal-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-modal-overlay.show .cart-modal-card {
  transform: translateY(0) scale(1);
}
.cart-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #a1a1aa;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-modal-close:hover {
  color: #09090b;
}
.cart-modal-check {
  margin-bottom: 16px;
}
.check-animate {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.6s 0.3s ease forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.cart-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 6px;
}
.cart-modal-subtitle {
  font-size: 0.85rem;
  color: #71717a;
  margin-bottom: 24px;
}
.cart-modal-product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: left;
}
.cart-modal-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
}
.cart-modal-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #09090b;
}
.cart-modal-meta {
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 2px;
}
.cart-modal-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #09090b;
  margin-top: 4px;
}
.cart-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-modal-btn-primary {
  display: block;
  padding: 14px;
  background: #09090b;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.cart-modal-btn-primary:hover {
  background: #27272a;
}
.cart-modal-btn-secondary {
  display: block;
  padding: 12px;
  background: transparent;
  color: #52525b;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s;
}
.cart-modal-btn-secondary:hover {
  background: #f5f5f5;
  color: #09090b;
}

/* Quantity Selector */
.qty-selector {
  display: inline-flex;
  border: 1px solid #ddd;
  align-items: center;
}

.qty-btn {
  background: #f9f9f9;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .category-banner {
    height: 300px;
  }

  .category-banner-content {
    padding: 30px;
  }

  .category-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .category-banner p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}

/* Instagram Section removed */

/* About Us — Editorial Magazine Layout */
.about-editorial {
  padding: 80px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}
.about-editorial-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.about-brand-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #09090b;
}
.about-date-label {
  font-size: 0.8rem;
  color: #71717a;
  font-weight: 500;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}
.about-collage {
  position: relative;
  min-height: 320px;
}
.collage-img {
  position: absolute;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.collage-back {
  width: 55%;
  height: 85%;
  top: 0;
  left: 0;
  z-index: 1;
}
.collage-front {
  width: 60%;
  height: 80%;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.about-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #09090b;
  margin-bottom: 32px;
}
.about-hero-heading em {
  font-style: italic;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 6px;
}
.about-feature p {
  font-size: 0.9rem;
  color: #52525b;
  line-height: 1.6;
}
.about-story-text {
  margin-bottom: 40px;
  max-width: 700px;
}
.about-story-text p {
  font-size: 0.95rem;
  color: #52525b;
  line-height: 1.7;
}
.about-bottom-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .about-bottom-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #a1a1aa;
}
.about-info-value {
  font-size: 0.85rem;
  font-weight: 500;
  color: #09090b;
}

/* Contact Us Section */
.contact-connect-section {
  padding: 60px 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
}
.contact-connect-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-connect-inner {
    flex-direction: row;
    gap: 60px;
  }
}
.contact-connect-left {
  max-width: 400px;
}
.contact-connect-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 12px;
}
.contact-connect-desc {
  font-size: 0.95rem;
  color: #52525b;
  line-height: 1.6;
}
.contact-methods-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-methods-list {
    flex-direction: row;
    gap: 0;
  }
}
.contact-method-item {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .contact-method-item {
    border-top: none;
    border-left: 1px solid #e5e5e5;
    padding: 0 32px;
  }
  .contact-method-item:first-child {
    border-left: none;
    padding-left: 0;
  }
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52525b;
}
.contact-method-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #09090b;
}
.contact-method-desc {
  font-size: 0.85rem;
  color: #71717a;
  line-height: 1.5;
}
.contact-method-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #09090b;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-method-link:hover {
  color: #52525b;
}

/* Footer Section */
.shadcn-footer {
  padding: 30px 20px;
  background: #000;
  border-top: 1px solid #222;
  color: #a1a1aa;
  font-family: 'Poppins', sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    gap: 60px;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.footer-desc {
  font-size: 0.8rem;
  line-height: 1.4;
}
.footer-socials {
  display: flex;
  gap: 16px;
  list-style: none;
  margin-top: 4px;
}
.footer-socials a {
  color: #a1a1aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.85rem;
}
.footer-socials a:hover {
  color: #fff;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}
.footer-col h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom-bar {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #222;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #a1a1aa;
}
@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal {
  display: flex;
  gap: 16px;
  list-style: none;
}
.footer-legal a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #fff;
}

/* Image Protection */
.no-download {
  pointer-events: none;
  user-select: none;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right {
  transform: translateX(50%);
}

.slide-left {
  transform: translateX(-50%);
}

.fade-up {
  transform: translateY(30px);
}

.scroll-animate.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
