/* GENERAL STYLES */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: black;
    color: white;
}

header nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

/* HERO SECTION */
.hero {
    height: 60vh;
    background: url('images/banner.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero button {
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    background: black;
    color: white;
    cursor: pointer;
}

/* PRODUCTS GRID */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
}

/* PRODUCT CARD */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* PRODUCT IMAGE (your 370px style) */
.card img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    object-position: center;
}

/* TEXT */
.card h3 {
    margin: 10px 0 5px;
}

.card p {
    color: gray;
}

/* BUTTON */
.card button {
    margin: 10px 0 15px;
    padding: 8px 15px;
    border: none;
    button {
    background-color: black;
    color: white;
}
    cursor: pointer;
    border-radius: 6px;
}

.card button:hover {body {
    background-color: #000000;
    color: #ffffff;
}
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    color: white;
}
.product-page {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 40px;
}

/* text */
.product-info {
    max-width: 400px;
}
.quantity {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity input {
    width: 25px;
    padding: 5px;
    font-size: 20px;
}
button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 7px;
    font-weight: 500;
}

.product {
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

.product img {
    width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
}

.info button {
    margin-top: ;
    margin-left: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* LEFT LINKS */
.left-nav {
  display: flex;
  gap: 20px;
}

.left-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/* RIGHT CART */
.right-nav {
  display: flex;
  align-items: center;
}

.cart-btn {
  background: black;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
}

.card {
  width: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;   /* 🔥 ჰორიზონტალურად ცენტრში */
  text-align: center;    /* 🔥 ტექსტიც ცენტრში */

  gap: 8px;
  text-decoration: none;
  color: black;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card h3,
.card p {
  margin: 0;
}

.card h3 {
  font-weight: 600;
}

.card p {
  color: #777;
}

.tiktok {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.tiktok a {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 26px;
  border-radius: 14px;

  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #fff;

  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  transition: all 0.25s ease;
}

.tiktok a:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

body {
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  color: #111;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;

  /* უფრო ღია ლურჯი background */
  background: radial-gradient(circle at top, #cfe9ff, #f7fbff);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* BLACK SPLASHES */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 15% 25%, rgba(0,0,0,0.12), transparent 45%),
    radial-gradient(circle at 75% 20%, rgba(0,0,0,0.10), transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(0,0,0,0.08), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(0,0,0,0.10), transparent 60%);

  filter: blur(25px);
  opacity: 0.9;
}

/* contact box glass feel */
.contact-box {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}