/* =========================================================
   SUPER GRAND FASHION - style.css
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --wine: #751f32;
  --wine-dark: #541526;
  --wine-light: #9b3e52;
  --rose: #f7e8e5;
  --rose-dark: #ead3cf;
  --cream: #fffaf8;
  --gold: #b88a58;
  --gold-light: #d8b88d;
  --ink: #2d2022;
  --muted: #75686a;
  --white: #ffffff;
  --border: #ead9d5;
  --success: #25d366;
  --shadow: 0 18px 40px rgba(70, 27, 36, 0.10);
  --shadow-hover: 0 22px 45px rgba(70, 27, 36, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

button, input, select {
  font-family: inherit;
}

.container {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

/* Top Bar */
.topbar {
  background: linear-gradient(90deg, var(--wine-dark), var(--wine), var(--wine-light));
  color: var(--white);
  text-align: center;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #d9b6aa;
}

.brand span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.brand small {
  font-family: "DM Sans", sans-serif;
  letter-spacing: 3px;
  font-size: 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #4c3d40;
  transition: 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: width 0.2s ease;
}

nav a:hover {
  color: var(--wine);
}

nav a:hover::after {
  width: 100%;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: var(--white);
  padding: 10px 17px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-whatsapp:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--wine);
  font-size: 27px;
  cursor: pointer;
  line-height: 1;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #f3d9d5;
}

.hero > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 14, 21, 0.58), rgba(43, 14, 21, 0.14) 58%, rgba(43, 14, 21, 0.04));
}

.hero-content {
  width: min(1180px, 92%);
  margin: auto;
  padding-top: 125px;
  color: var(--white);
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: var(--wine-light);
}

.hero .eyebrow {
  color: #fff0ec;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.02;
  margin: 16px 0;
}

h1 em {
  color: #ffe5dd;
  font-style: italic;
}

.hero p {
  font-size: 18px;
  max-width: 620px;
  color: #fff8f5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 22px;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(117, 31, 50, 0.20);
}

.btn-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 12px 25px rgba(117, 31, 50, 0.28);
}

.btn-light {
  background: var(--white);
  color: var(--wine);
}

.btn-light:hover {
  background: #fff4f1;
}

/* Trust Strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip div {
  padding: 19px;
  text-align: center;
  border-right: 1px solid var(--border);
  color: var(--wine);
  font-size: 18px;
}

.trust-strip div:last-child {
  border-right: none;
}

.trust-strip b {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

/* General Section */
.section {
  width: min(1180px, 92%);
  margin: 85px auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 28px;
}

.section-head h2, .about h2, .social-cta h2, .deal-banner h2 {
  font-family: "Playfair Display", serif;
}

.section-head h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-top: 6px;
}

.section-head p {
  color: var(--muted);
}

/* Categories */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 145px;
  padding: 24px 18px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f4ded9);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-card .icon {
  font-size: 32px;
  margin-bottom: auto;
}

.category-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--wine);
}

.category-card span {
  font-size: 12px;
  color: var(--muted);
}

/* Deal Banner */
.deal-banner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 40px 46px;
  border-radius: 24px;
  background: linear-gradient(110deg, #7b2035, #a64758);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 20px 40px rgba(117, 31, 50, 0.14);
}

.deal-banner .eyebrow {
  color: #f9d9cf;
}

.deal-banner h2 {
  font-size: 42px;
}

.deal-banner p {
  color: #fbe9e4;
  margin-top: 6px;
}

.deal-banner .btn {
  background: var(--white);
  color: var(--wine);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  height: 255px;
  background: #f2e5e2;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--wine);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(117, 31, 50, 0.18);
}

.platform {
  position: absolute;
  right: 12px;
  top: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  color: var(--wine);
  backdrop-filter: blur(5px);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat {
  font-size: 10px;
  color: var(--wine-light);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin: 6px 0;
  line-height: 1.25;
  min-height: 44px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 9px 0 auto;
}

.price strong {
  font-size: 20px;
  color: var(--wine);
}

.price del {
  font-size: 12px;
  color: #988c8e;
}

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

.shop-btn {
  flex: 1;
  text-align: center;
  background: var(--wine);
  color: var(--white);
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
  display: block;
}

.shop-btn:hover {
  background: var(--wine-dark);
  transform: translateY(-1px);
}

/* Search & Filter Tools */
.tools {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid #e3d2ce;
  border-radius: 10px;
  padding: 0 11px;
}

.search span {
  color: var(--wine);
  font-size: 20px;
}

.search input {
  border: none;
  outline: none;
  padding: 11px 4px;
  width: 210px;
  font: inherit;
  background: transparent;
}

select {
  border: 1px solid #e3d2ce;
  border-radius: 10px;
  background: var(--white);
  padding: 11px 13px;
  font: inherit;
  color: #4c3d40;
  outline: none;
  cursor: pointer;
}

select:focus {
  border-color: var(--wine-light);
}

.empty {
  text-align: center;
  padding: 45px;
  color: var(--muted);
  font-size: 15px;
}

/* About Section */
.about {
  width: min(1180px, 92%);
  margin: 90px auto;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 60px;
  align-items: center;
}

.about-logo {
  background: #f1dfdb;
  border-radius: 25px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.about-logo img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.about h2 {
  font-size: 44px;
  line-height: 1.1;
}

.about p {
  color: var(--muted);
  max-width: 700px;
  margin: 15px 0;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: var(--wine);
  font-weight: 700;
  font-size: 13px;
}

/* Social Section */
.social-cta {
  width: min(1180px, 92%);
  margin: 0 auto 50px;
  background: #f3ddd9;
  border: 1px solid #ead0cb;
  border-radius: 24px;
  padding: 38px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.social-cta h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-top: 5px;
}

.social-cta p {
  color: var(--muted);
  margin-top: 8px;
}

.social-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  background: var(--white);
  border: 1px solid #ddc3bd;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--wine);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: #fff8f6;
}

.social-btn.whatsapp {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}

/* Disclosure */
.disclosure {
  width: min(1180px, 92%);
  margin: 0 auto 30px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff3ef;
  border: 1px solid #efd7d1;
  color: #65595b;
  font-size: 12px;
}

.disclosure b {
  color: var(--wine);
}

/* Footer */
footer {
  background: #27191c;
  color: #eee0df;
  padding: 55px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 45px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
}

.footer-grid p {
  color: #bfaeb0;
  font-size: 13px;
  max-width: 300px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-grid a {
  display: block;
  color: #cbbabc;
  font-size: 13px;
  margin: 8px 0;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  border-top: 1px solid #48383b;
  padding: 18px;
  color: #a99497;
  font-size: 12px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
  z-index: 2000;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  nav { gap: 15px; }
  nav a { font-size: 13px; }
}

@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 15px 30px rgba(50, 20, 25, 0.08);
  }
  nav.open { display: flex; }
  nav a { width: 100%; padding: 8px 0; }
  nav a::after { display: none; }
  .menu-btn { display: block; margin-left: auto; }
  .nav-whatsapp { display: none; }
  .hero, .hero > img { min-height: 560px; height: 560px; }
  .hero-content { padding-top: 95px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 30px; }
  .about-logo { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .topbar { font-size: 10px; padding: 8px 10px; }
  .nav { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 13px; }
  .brand small { font-size: 8px; letter-spacing: 2px; }
  nav { top: 68px; }
  .hero, .hero > img { min-height: 610px; height: 610px; }
  .hero-content { padding-top: 80px; }
  h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div { border-bottom: 1px solid var(--border); }
  .trust-strip div:nth-child(2), .trust-strip div:nth-child(4) { border-right: none; }
  .section { margin: 60px auto; }
  .section-head { display: block; }
  .section-head h2, .about h2, .social-cta h2, .deal-banner h2 { font-size: 30px; }
  .section-head p { margin-top: 8px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 130px; padding: 18px 15px; }
  .category-card h3 { font-size: 19px; }
  .deal-banner { display: block; padding: 25px; }
  .deal-banner .btn { margin-top: 18px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .product-image { height: 205px; }
  .product-body { padding: 11px; }
  .product-title { font-size: 15px; min-height: 40px; }
  .product-cat { font-size: 9px; }
  .price strong { font-size: 17px; }
  .price del { font-size: 10px; }
  .shop-btn { padding: 8px 4px; font-size: 11px; }
  .tools { margin-top: 18px; width: 100%; }
  .search { flex: 1; min-width: 0; }
  .search input { width: 100%; min-width: 0; }
  select { width: 100%; }
  .about { margin: 65px auto; }
  .about-logo { padding: 18px; }
  .about h2 { font-size: 32px; }
  .about-points { grid-template-columns: 1fr; }
  .social-cta { display: block; padding: 25px; }
  .social-actions { margin-top: 20px; }
  .social-btn { flex: 1; text-align: center; min-width: 100px; }
  .disclosure { font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .floating-whatsapp { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 260px; }
  .category-grid { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
}