: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: #fff;
  border-bottom: 1px solid #eee;
  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;
}

/* Animated Hero Slider */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}

.hero-container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}

.hero-section {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.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 */
.notification-panel {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #eef9ee; /* Light green from reference */
  z-index: 2000;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: top 0.4s ease-in-out;
}

.notification-panel.show {
  top: 0;
}

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

.notif-header span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.close-notif {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.notif-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.notif-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.notif-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notif-actions .btn-outline {
  background: transparent;
  border: 1px solid #000;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.notif-actions .btn-solid {
  background: #000;
  border: 1px solid #000;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.continue-link {
  text-align: center;
  display: block;
  margin-top: 15px;
  color: #000;
  text-decoration: underline;
}

/* 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 */
.insta-section {
  padding: 60px 20px;
  text-align: center;
  background: #0b0b0b;
  color: #fff;
}
.insta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.insta-icon {
  width: 32px;
  height: 32px;
}
.insta-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}
.insta-image:hover {
  transform: scale(1.02);
}

/* About Us Section */
.about-section {
  padding: 60px 20px;
  background: #fdfdfd;
  text-align: center;
  border-top: 1px solid #eee;
}
.about-container {
  max-width: 800px;
  margin: 0 auto;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Contact / Footer Section */
.contact-footer {
  background: #fff;
  padding: 60px 20px 20px;
  border-top: 1px solid #eee;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 0.9rem;
}

/* 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);
}
