/* -------------------------
   BASIC / RESET
   ------------------------- */
* { box-sizing: border-box; }
html,body { height:100%; }
body {
  margin:0;
  font-family: "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:#111;
  background:#f7f8ff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* TOP BANNER */
.top-banner { background:#760000; color:#fff; padding:6px 0; text-align:center; }
.top-banner .promo { font-size:14px; }

/* NAVBAR */
/* ---------- NAVBAR ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: linear-gradient(90deg, #0f0f19 0%, #16162a 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-logo {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

/* ---------- SEARCH ---------- */
.nav-search {
  display: flex;
  align-items: center;
  width: 50%;
  max-width: 720px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.nav-search input {
  flex: 1;
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  outline: none;
  color: #333;
}

.nav-search button {
  width: 56px;
  border: none;
  background: #ff4da6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-search button:hover {
  background: #ff2e91;
  transform: scale(1.05);
}

.nav-search:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.3);
}

/* ---------- ACTIONS ---------- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-actions a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-actions a:hover {
  color: #ff4da6;
  transform: translateY(-2px);
}

/* ---------- CTA BUTTON ---------- */
.cta {
  background: linear-gradient(90deg, #4c5ff5, #566aff);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  background: linear-gradient(90deg, #6473ff, #7280ff);
  box-shadow: 0 4px 10px rgba(68, 83, 242, 0.4);
  transform: translateY(-2px);
}


/* -------------------------------
   PAGE LAYOUT
--------------------------------*/
.page-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px 80px;
  font-family: "Poppins", "Inter", sans-serif;
  color: #111;
}

/* -------------------------------
   PRODUCT AREA GRID
--------------------------------*/
.product-area {
  display: grid;
  grid-template-columns: 90px 1fr 380px;
  gap: 32px;
  align-items: start;
  animation: fadeIn 0.5s ease-in-out;
}

/* -------------------------------
   THUMBNAILS
--------------------------------*/
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumb {
  width: 80px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.thumb.active {
  border-color: #760000;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* -------------------------------
   MAIN IMAGE
--------------------------------*/
.main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.main-image:hover {
  transform: scale(1.01);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  border: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.arrow.left { left: 14px; }
.arrow.right { right: 14px; }

.arrow:hover {
  background: #760000;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* FAVORITE */
.fav {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  border: 0;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.fav:hover {
  background: #ff006e;
  color: #fff;
  transform: scale(1.1);
}

/* -------------------------------
   PRODUCT DETAILS
--------------------------------*/
.details h1 {
  font-size: 30px;
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f0f19;
}

.price {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #760000;
}

.meta {
  margin-bottom: 20px;
  color: #444;
  font-size: 15px;
}

.primary-buttons {
  display: flex;
  flex-direction: row !important; 
  flex-wrap: nowrap;    
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  margin-top: 60px;
  justify-content: center; 
  width: 100%;
  max-width: 100%; 
  margin-left: auto;
  margin-right: auto;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.btn-primary,
.btn-secondary {
  padding: 18px 40px;      
  font-size: 18px;        
  border-radius: 16px;     
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  min-width: 180px;  
  width: 500px;
}

.btn-primary {
  background: linear-gradient(90deg, #00b3ff, #760000);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #009ee0, #006ce0);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
  background: linear-gradient(90deg, #760000, #5868ff);
  color: #fff;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #5a6aff, #6b7bff);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(68, 83, 242, 0.4);
}


/* -------------------------------
   OPTIONS (Style & Size)
--------------------------------*/
.option-block {
  margin-bottom: 22px;
}

.option-block h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-chart {
  font-size: 14px;
  color: #760000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.size-chart:hover {
  color: #005bd1;
  text-decoration: underline;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opt {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #d0d7e6;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: #222;
  transition: all 0.3s ease;
}

.opt.active,
.opt:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: scale(1.05);
}

/* -------------------------------
   QUANTITY SELECTOR
--------------------------------*/
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f2f4ff;
  border: 1px solid #ccd2e0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
}

.qty button:hover {
  background: #760000;
  color: #fff;
}

.qty input {
  width: 50px;
  text-align: center;
  border: 1px solid #ccd2e0;
  border-radius: 8px;
  padding: 6px;
  font-weight: 600;
  font-size: 15px;
  background: #fff;
}

/* -------------------------------
   ANIMATIONS
--------------------------------*/
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* QUANTITY */
.qty { display:flex; align-items:center; border:1px solid #dcdcfb; border-radius:10px; overflow:hidden; width:120px; }
.qty button { border:0; background:#fff; width:36px; height:36px; cursor:pointer; font-size:18px; }
.qty input { border:0; width:48px; text-align:center; }

/* ACCORDION */
.accordion-wrap { margin-top:14px; }
.accordion { margin-bottom:8px; }
.acc-btn { width:100%; text-align:left; padding:12px 14px; border-radius:10px; background:#fff; border:1px solid #dcdcfb; cursor:pointer; display:flex; justify-content:space-between; align-items:center; font-weight:600; }
.acc-panel { display:none; padding:10px 14px; margin-top:6px; background:#fff; border-radius:8px; border:1px solid #eee; color:#333; }

/* BOTTOM INFO */
.bottom-info {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  background: #f8f9ff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.bottom-info:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
}

/* DISCOUNT BANNER */
.discount-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e0e1f9;
  font-weight: 600;
  color: #2a2a2a;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}

.discount-banner i {
  color: #f5b700;
  font-size: 1.2rem;
  animation: pulse 1.2s infinite alternate;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.2); opacity: 0.8; }
}

.discount-banner:hover {
  background: #f0f1ff;
  transform: translateY(-2px);
}

/* ACTION ROW */
.action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 28px 0;
  flex-wrap: wrap;
}

/* MAIN CTA BUTTON */
.main-cta {
  background: linear-gradient(90deg, #760000, #803b3b);
  color: #fff;
  border: none;
  padding: 14px 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(74,108,247,0.3);
  transition: all 0.25s ease;
}

.main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74,108,247,0.4);
}

/* GUARANTEE CARD */
.guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #e0e1f9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  text-align: left;
  transition: all 0.3s ease;
}

.guarantee:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.guarantee img {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.guar-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.guar-text strong {
  color: #760000;
}


/* Description & Tags Section */
.desc-tags {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 40px auto;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.desc-tags:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #760000;
  margin-top: 5px;
  border-radius: 2px;
}

.desc-block {
  max-width: 700px;
  line-height: 1.6;
  color: #333;
}

.tags-share {
  max-width: 360px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tags span {
  padding: 8px 14px;
  border: 1px solid #dcdcfb;
  border-radius: 30px;
  background: #f9f9ff;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tags span:hover {
  background: #760000;
  color: #fff;
  border-color: #760000;
  transform: translateY(-2px);
}

/* Share Section */
.share {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.share-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

.share-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.share-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f1ff;
  color: #760000;
  font-size: 16px;
  transition: all 0.25s ease;
}

.share-icons a:hover {
  background: #760000;
  color: #fff;
  transform: scale(1.1);
}


/* share icons */
.share-icons { display:flex; gap:10px; margin-top:8px; }
.share-icons a { display:inline-flex; width:36px; height:36px; border-radius:50%; background:#fff; align-items:center; justify-content:center; border:1px solid #e6e7ef; color:#111; }

/* =======================
   REVIEW BAND
======================= */
.review-band {
  background: linear-gradient(135deg, #760000, #803b3b);
  color: #fff;
  padding: 36px 20px;
  border-radius: 18px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.review-band:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.review-band h3 {
  margin: 0 0 18px;
  font-size: 1.6rem;
  font-weight: 700;
}

.ratings {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.rating {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 14px 24px;
  border-radius: 12px;
  transition: transform 0.25s ease;
}

.rating:hover {
  transform: translateY(-4px);
}

.rating p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.stars {
  font-size: 1.3rem;
  margin: 6px 0;
  letter-spacing: 3px;
}

.rating span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* =======================
   PRODUCT QUALITY & FAQ
======================= */


.quality-faq {
  display: flex;
  gap: 28px;
  margin: 40px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.quality, .faq-list {
  background: #fff;
  border: 1px solid #e0e1f9;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  padding: 24px;
  text-align: left;
  flex: 1 1 400px;
  transition: all 0.25s ease;
}

.quality:hover, .faq-list:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
}

.quality h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
}

.quality h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #760000;
  margin-top: 6px;
  border-radius: 2px;
}

.quality p {
  color: #444;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ ACCORDION */
.faq-item {
  margin-bottom: 14px;
  border-bottom: 1px solid #ececff;
  padding-bottom: 8px;
}

.acc-btn {
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.acc-btn:hover {
  color: #760000;
}

.acc-panel {
  max-height: 0; 
  overflow: hidden;
  padding-left: 4px;
  line-height: 1.5;
  font-size: 0.9rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  display: none;
}

.acc-panel.show {
  display: block; 
  max-height: 1000px; 
  padding: 10px 0;
}

.acc-btn i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.acc-btn i.fa-chevron-up {
  transform: rotate(180deg);
}

.acc-btn i.fa-chevron-down {
  transform: rotate(0deg);
}


/* =======================
   NEWSLETTER SECTION
======================= */
.newsletter {
  background: linear-gradient(135deg, #760000, #803b3b);
  color: #fff;
  padding: 40px 24px;
  border-radius: 20px;
  text-align: center;
  margin: 50px 0;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.newsletter h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  font-weight: 700;
}

.newsletter p {
  margin-bottom: 16px;
  font-size: 1rem;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.newsletter input {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  width: 300px;
  font-size: 0.95rem;
  outline: none;
}

.newsletter button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.newsletter button:hover {
  background: #222;
  transform: translateY(-2px);
}

.newsletter small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.newsletter a {
  color: #fff;
  text-decoration: underline;
}

/* -------------------------------
   LOWER INFO SECTION
--------------------------------*/
.lower-info {
  margin: 50px 0;
  text-align: left;
  background: #fff;
  padding: 30px 24px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.lower-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}

.lower-info h2 {
  color: #0f0f19;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

/* -------------------------------
   TRENDING TAGS
--------------------------------*/
.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.trending-tags span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #d0d7e6;
  background: #f8f9ff;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trending-tags span:hover {
  background: linear-gradient(90deg, #760000, #00b3ff);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(68, 83, 242, 0.3);
}

/* -------------------------------
   SMALL NOTE
--------------------------------*/
.small-note {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  background: #f6f7ff;
  padding: 12px 16px;
  border-left: 4px solid #760000;
  border-radius: 8px;
  margin-bottom: 26px;
  font-style: italic;
}

/* -------------------------------
   SOCIAL SHARE
--------------------------------*/
.social-share-small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.social-share-small p {
  font-weight: 600;
  font-size: 15px;
  color: #111;
  margin: 0;
}

.share-icons {
  display: flex;
  gap: 14px;
}

.share-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f3ff;
  color: #760000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.share-icons a:hover {
  background: linear-gradient(90deg, #760000, #00b3ff);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 14px rgba(68, 83, 242, 0.3);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #0d0d16 0%, #111123 100%);
  color: #d6d9e6;
  padding: 50px 20px 28px;
  margin-top: 40px;
  font-family: "Poppins", "Inter", system-ui;
}

/* TOP SECTION */
.footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-brand img:hover {
  transform: scale(1.05);
}

.footer-columns {
  display: flex;
  flex: 2 1 700px;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-columns .col {
  min-width: 160px;
}

.footer-columns h5 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns li {
  margin-bottom: 8px;
}

.footer-columns a {
  color: #cfd4e9;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-columns a:hover {
  color: #5a6dfc;
  transform: translateX(3px);
}

/* SOCIAL + PAYMENTS */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.socials a {
  color: #d6d9e6;
  margin-right: 14px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  color: #5a6dfc;
  transform: translateY(-2px);
}

.payments img {
  height: 30px;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.payments img:hover {
  opacity: 1;
}

/* COPYRIGHT */
.copyright {
  color: #9fa6c9;
  text-align: center;
  margin-top: 26px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* --- Responsive Fix Patch --- */

/* ====== LARGE (≤1200px) ====== */
@media (max-width: 1200px) {
  .product-area {
    grid-template-columns: 80px 1fr 320px;
  }
}

/* ====== MEDIUM (≤992px) ====== */
@media (max-width: 992px) {
  .product-area {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .thumbs {
    flex-direction: row;
    justify-content: center;
  }
  .details h1 {
    font-size: 24px;
  }
  .price {
    font-size: 22px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }
  footer .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
  }

  .primary-buttons {
    justify-content: center;
    gap: 22px;
  }
  .primary-buttons .btn {
    padding: 16px 34px;
    font-size: 17px;
    border-radius: 14px;
  }
   .footer-brand img {
   display: none;
  }
}

/* ====== TABLET (≤768px) ====== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 20px;
  }
  .nav-search {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .cta {
    font-size: 14px;
    padding: 8px 14px;
  }
  .page-wrap {
    padding: 0 16px 60px;
  }

  footer {
    padding: 30px 20px;
    font-size: 14px;
  }
  footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  footer .footer-logo img {
    width: 140px;
  }
  footer .social-links {
    justify-content: center;
    gap: 12px;
  }

   .footer-brand img {
   display: none;
  }

  /* Center logo */
  .site-logo {
    display: block;
    margin: 0 auto;
    width: 160px;
  }
  .navbar {
    justify-content: center !important;
  }

  /* Bigger Primary Buttons */
  .primary-buttons {
    justify-content: center;
    gap: 20px;
  }
  .primary-buttons .btn {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 16px;
  }
}

/* ====== MOBILE (≤480px) ====== */
@media (max-width: 480px) {
  .btn {
    font-size: 14px;
    padding: 14px 22px;
  }
  .opt {
    padding: 8px 12px;
    font-size: 13px;
  }

  .site-logo {
    display: block;
    margin: 0 auto;
    width: 140px;
  }

  .navbar {
    justify-content: center !important;
    padding: 10px 14px;
  }

  .thumb {
    width: 60px;
  }

  /* Footer: compact centered layout */
  footer {
    text-align: center;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-brand img {
   display: none;
  }

  footer .footer-columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    width: 100%;
  }

  footer .footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    text-align: center;
  }

  footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  /* Bigger Buttons for mobile */
  .primary-buttons {
    justify-content: center;
    gap: 16px;
  }
  .primary-buttons .btn {
    width: 100%;
    max-width: 280px;
    font-size: 20px;
    padding: 20px 20px;
    border-radius: 16px;
  }
}
@media (max-width: 500px) {
  .primary-buttons {
    flex-wrap: wrap; /* allow wrap on small screens */
  }
}
