:root {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --muted: #b5b5b5;
  --card: #111;
  --border: #222;
  --shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: #000
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;
  color: #fff;
  border-bottom: 1px solid #111;
  box-shadow: var(--shadow)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px
}

.logo {
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 22px
}

.logo img {
  width: 50px;
  /* or use clamp() for responsiveness */
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}


.nav-links {
  display: flex;
  gap: 15px;
  align-items: center
}

.nav-links a {
  opacity: .9;
  padding: 8px 10px;
  border-radius: 12px
}

.nav-links a:hover {
  background: #111;
  opacity: 1
}

.badge {
  font-size: 10px;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 2px 6px;
  margin-left: 6px
}

.hero {
  background: linear-gradient(#000, #111);
  color: #fff
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  padding: 32px 16px
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #222;
  box-shadow: var(--shadow);
}

.hero-slider img {
  width: 100%;
  display: none;
  border-radius: 24px;
}

.hero-slider img.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

.section {
  padding: 32px 0
}

.section h2 {
  font-size: 24px;
  margin: 0 0 16px 0
}

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

.banner div {
  background: #000;
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #111
}

.banner h3 {
  margin: 0 0 6px 0
}

.banner p {
  margin: 0;
  color: #d0d0d0
}

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

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 14px;
  transition: transform .2s, box-shadow .2s
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08)
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #f0f0f0
}

.card h3 {
  font-size: 16px;
  margin: 10px 0 6px 0
}

.card .price {
  font-weight: 700
}

.actions {
  display: flex;
  gap: 8px;
  margin-top: 10px
}

.btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer
}

.btn.secondary {
  background: #fff;
  color: #000
}

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

.form {
  display: grid;
  gap: 10px
}

.input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd
}

select.input {
  appearance: auto
}


.site-footer {
  background-color: #222;
  color: white;
  padding: 40px 20px 10px;
  font-family: arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  width: 90px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: rotate(360deg)scale(1.1);
}

.footer-brand h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 15px;
  margin-top: 8px;
}

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

.footer-links ul li {
  margin: 8px 0;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-social a img {
  width: 35px;
  height: 35px;
  margin: 10px;
  border-radius: 50%;
  transition: transform 0.3s,
    box-shadow 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.footer-contact h4 {
  font-size: 19px;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
}

.advanced-brand {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  animation: gradientShift 5s ease infinite alternate;
}

@keyframes gradientShift {
  0% {
    background: linear-gradient(140deg, white, grey);
  }

  100% {
    background: linear-gradient(140deg, silver, grey);
  }
}

.brand-logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 3px solid #fff;
  animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.advanced-brand h2 {
  font-size: 28px;
  margin: 10px 0;
  opacity: 0;
  animation: fadeInText 1s forwards;
}

.advanced-brand p {
  font-size: 16px;
  opacity: 0;
  animation: fadeInText 1s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

small {
  color: #cfcfcf
}

@media(max-width:900px) {
  .hero .container {
    grid-template-columns: 1fr
  }

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

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

.cart-item,
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.qty-controls button,
.remove-btn,
.buy-btn,
.move-btn {
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
}

.buy-btn {
  background: green;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.move-btn {
  background: blue;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.remove-btn {
  background: red;
  color: #fff;
  border: none;
  border-radius: 50%;
}



@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  background: linear-gradient(45deg, #2c3e50, #34495e);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.image-section {
  position: relative;
}

.product-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  cursor: pointer;
}

.product-image:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: bold;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.details-section {
  padding: 20px 0;
}

.product-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  animation: fadeInRight 1s ease-out 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.current-price {
  font-size: 2rem;
  color: #27ae60;
  font-weight: bold;
}

.original-price {
  font-size: 1.5rem;
  color: #95a5a6;
  text-decoration: line-through;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.4s both;
}

.stars {
  color: #f39c12;
  font-size: 1.2rem;
}

.rating-text {
  color: #7f8c8d;
}

.description {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.size-selection {
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.8s both;
}

.size-label {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2c3e50;
}

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

.size-option {
  padding: 12px 20px;
  border: 2px solid #bdc3c7;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.size-option:hover {
  border-color: #3498db;
  background: #3498db;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.size-option.selected {
  background: #2c3e50;
  border-color: #2c3e50;
  color: white;
}

.payment-section {
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 1s both;
}

.payment-label {
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2c3e50;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.payment-option {
  padding: 15px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.payment-option:hover {
  border-color: #e74c3c;
  background: #e74c3c;
  color: white;
  transform: scale(1.05);
}

.payment-option.selected {
  border-color: #27ae60;
  background: #27ae60;
  color: white;
}

.buy-now-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out 1.2s both;
}

.buy-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.buy-now-btn:hover::before {
  left: 100%;
}

.buy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.reviews-section {
  background: #f8f9fa;
  padding: 40px;
  animation: fadeIn 1s ease-out 1.4s both;
}

.reviews-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.review {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.reviewer-name {
  font-weight: bold;
  color: #2c3e50;
}

.review-stars {
  color: #f39c12;
}

.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

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

  .payment-options {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --muted: #b5b5b5;
  --card: #111;
  --border: #222;
  --shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= NAVBAR ================= */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;
  color: #fff;
  border-bottom: 1px solid #111;
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
}

.logo img {
  width: clamp(40px, 8vw, 60px);
  height: auto;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links a {
  opacity: .9;
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-links a:hover {
  background: #111;
  opacity: 1;
}

.badge {
  font-size: 10px;
  border: 1px solid #333;
  border-radius: 999px;
  padding: 2px 6px;
  margin-left: 6px;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(#000, #111);
  color: #fff;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  padding: 32px 16px;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid #222;
  box-shadow: var(--shadow);
}

.hero-slider img {
  width: 100%;
  display: none;
  border-radius: 24px;
}

.hero-slider img.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* ================= SECTIONS ================= */
.section {
  padding: 32px 0;
}

.section h2 {
  font-size: 24px;
  margin: 0 0 16px 0;
}

.banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.banner div {
  background: #000;
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #111;
}

.banner h3 {
  margin: 0 0 6px 0;
}

.banner p {
  margin: 0;
  color: #d0d0d0;
}

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

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 14px;
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #f0f0f0;
}

.card h3 {
  font-size: 16px;
  margin: 10px 0 6px 0;
}

.card .price {
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: #000;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
} */

/* ================= FOOTER ================= */
.site-footer {
  background-color: #222;
  color: white;
  padding: 40px 20px 10px;
  font-family: arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  width: 100px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #fff;
  animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

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

.footer-links ul li {
  margin: 8px 0;
}

.footer-links a {
  color: #bbb;
  transition: color 0.3s;
}

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

.footer-social a img {
  width: 35px;
  height: 35px;
  margin: 10px;
  border-radius: 50%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    padding: 20px;
    border-radius: 12px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section h2 {
    font-size: 20px;
    text-align: center;
  }

  .card h3 {
    font-size: 14px;
  }

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

.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.thumbnail:hover {
  border: 2px solid #333;
}

