/* ===== MANKINI.COM STATIC CLONE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #574CD5;
  --color-primary: rgba(215, 255, 137, 1);
  --purple-dark: #3d35b0;
  --text: #333;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--text); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--color-primary);
  color: var(--text);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.site-logo:hover { text-decoration: none; color: var(--color-primary); }

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}
nav ul li a {
  display: block;
  padding: 22px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  transition: color 0.2s;
}
nav ul li a:hover,
nav ul li a.active { color: var(--purple); text-decoration: none; }

/* ===== MAIN CONTENT ===== */
main {
 /*max-width: 1200px;*/
  margin: 0 auto;
  /*padding: 40px 24px 60px*/;
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
  background: #1a1a2e;
}
.hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  opacity: 0.8;
}
.hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.hero-text h2 { font-size: 32px; margin-bottom: 8px; }
.hero-text p { font-size: 16px; margin-bottom: 20px; opacity: 0.9; }
.btn {
  display: inline-block;
  background: var(--text);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.btn:hover { background: #fff; text-decoration: none; color: var(--text); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== PRODUCT SECTION ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
}

.product-images { position: relative; }
.product-main-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: block;
}
.product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumbs img:hover,
.product-thumbs img.active { border-color: var(--color-primary); }

.product-info h1 { font-size: 28px; margin-bottom: 8px; }
.product-price {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}
.product-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: #555;
}
.color-swatches {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.swatch:hover { transform: scale(1.1); border-color: #999; }
.swatch.active { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary); }
.swatch.sold-out::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 20px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  padding: 10px 16px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--light-gray); }
.qty-display {
  padding: 10px 20px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  min-width: 50px;
  text-align: center;
  font-weight: 600;
}
.add-to-cart {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--color-primary);
  color: var(--text);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
  border: 2px solid var(--white); 
}
.add-to-cart:hover { background: var(--white); color:var(--text); border: 2px solid var(--color-primary);  }
.sold-out-notice {
  color: #c00;
  font-size: 14px;
  margin-top: 8px;
}

/* ===== SECTION HEADINGS ===== */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-top: -24px;
  margin-bottom: 32px;
  font-size: 15px;
}

/* ===== COLORS BANNER ===== */
.colors-section {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) { .colors-section { grid-template-columns: 1fr; } }
.colors-section img { width: 100%; border-radius: 8px; }
.colors-text h2 { font-size: 26px; margin-bottom: 12px; }
.colors-text p { color: #555; margin-bottom: 20px; }

/* ===== CUSTOMER PHOTOS ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.photo-grid img:hover { opacity: 0.9; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 24px;
}
.review-card .stars { font-size: 18px; margin-bottom: 10px; }
.review-card p { font-style: italic; color: #555; }

/* ===== BORAT DESCRIPTION ===== */
.borat-section {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.borat-section h2 { font-size: 24px; margin-bottom: 16px; }
.borat-section p { color: #555; margin-bottom: 12px; line-height: 1.8; }

/* ===== PAGE CONTENT ===== */
.page-content {
  max-width: 800px;
  margin: 0 auto;
}
.page-content h1 { font-size: 32px; margin-bottom: 24px; }
.page-content p { margin-bottom: 16px; line-height: 1.8; color: #444; }
.page-content ul { padding-left: 20px; margin-bottom: 16px; }
.page-content ul li { margin-bottom: 8px; }
.links-list { list-style: none; padding: 0; }
.links-list li { margin-bottom: 12px; }
.links-list li a { font-size: 16px; font-weight: 500; }

/* ===== GALLERY PAGE ===== */
.gallery-empty {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  color: #666;
}
.gallery-empty p { font-size: 18px; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--purple); }
.form-group textarea { height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 24px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; }
.footer-col ul li a:hover { color: #fff; }
.footer-col p { font-size: 14px; color: #aaa; line-height: 1.7; }
.footer-col address { font-style: normal; font-size: 14px; color: #aaa; line-height: 1.7; }
.footer-col address a { color: #aaa; }
.footer-col address a:hover { color: #fff; }
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.payment-icon {
  background: #fff;
  color: #333;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: #fff; }

/* ===== EMAIL BAR ===== */
.email-bar {
  background: var(--purple);
  color: #fff;
  padding: 40px 24px;
  text-align: center;
  margin-top: 40px;
}
.email-bar h3 { font-size: 20px; margin-bottom: 16px; }
.email-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}
.email-form button {
  background: #fff;
  color: var(--purple);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.email-form button:hover { opacity: 0.85; }


