*,
*::before,
*::after {
    box-sizing: inherit;
}

:root {
  box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.header {
  background: var(--brand-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 150;
}

body {
    background: #f5f6fa;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #181818;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

a {
    text-decoration: none;
}

:root {
  --brand-gold: #f5d38b;
  --brand-dark: #111;
  --brand-muted: #f3f5fb;
  --text-soft: #5c5c5c;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding-inline: 16px;
}

.logo {
  color: #f5d38b;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}

/* Header layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 12px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-pill {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.cart-pill .cart-count {
  background: #ff4757;
  color: #fff;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 12px;
}

.cart-text {
  display: inline-block;
}

.cart-icon {
  font-size: 1.1rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: transparent;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-nav-panel {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(320px, calc(100vw - 24px));
  top: 100%;
  background: rgba(15, 15, 15, 0.95);
  padding: 12px 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  display: none;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.mobile-nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  display: block;
}

.mobile-nav-panel .nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 0 12px;
}

.mobile-nav-panel .nav-links a {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: #fff;
}

.mobile-nav-panel .nav-links a:hover,
.mobile-nav-panel .nav-links a:focus {
  background: rgba(255, 255, 255, 0.1);
}


.hero {
    min-height: 75vh;
    background: url("../images/products/sofa.png") center / cover no-repeat;
    background-color: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    color: #fff;
}

.hero,
.trust,
.categories {
    width: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.2)),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 0.4rem 0;
    line-height: 1.2;
}

.hero-lede {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 1.5rem 0;
}

.btn {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--brand-gold);
    color: #111;
}

.btn.secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.hero-badges li {
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
}

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

.hero-stats div {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.hero-1 {
    min-height: 60vh;
    background: url("../images/products/banner.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #efede7;
    padding: 40px 20px 60px;
}

/* SHOP PAGE */
.shop {
    padding: 50px 0;
    flex-direction: column;
}

.shop h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.product-card h3 {
    margin: 15px 0 8px;
}

.price {
    font-weight: bold;
    color: #0984e3;
    margin-bottom: 15px;
}
.btn-cart {
  background: linear-gradient(135deg, #f8f3e8, #e8dcc6);
  color: #2c3e50;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 25px rgba(200, 190, 170, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle shine */
.btn-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: 0.5s;
}

.btn-cart:hover::before {
  left: 100%;
}

/* Hover state */
.btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(180, 170, 145, 0.55);
}

/* Click effect */
.btn-cart:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(160, 150, 120, 0.45);
}


/* Hover effect */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
/* CART PAGE */
.cart {
    padding: 50px 0;
    flex-direction: column;
}

.cart h2 {
    text-align: center;
    margin-bottom: 30px;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-details {
    flex: 1;
    margin-left: 15px;
}

.cart-details h4 {
    margin-bottom: 5px;
}

.cart-price {
    font-weight: bold;
    color: #0984e3;
}

.cart-actions {
    text-align: right;
}

.cart-actions input {
    width: 50px;
    padding: 5px;
    margin-bottom: 5px;
}

.remove-btn {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
}

/* SUMMARY */
.cart-summary {
  background: #ffffff;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  height: fit-content;
}

.cart-summary h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* price rows */
.cart-summary p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 15px;
  color: #444;
}

/* total */
.cart-summary .total {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  border-top: 1px solid #ddd;
  padding-top: 14px;
  margin-top: 16px;
}

/* checkout button */
.cart-summary button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart-summary button:hover {
  background: #333;
}


.btn-checkout {
    width: 100%;
    background: #0984e3;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
}
/* CHECKOUT PAGE */
.checkout {
    padding: 50px 0;
    flex-direction: column;
}

.checkout h2 {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.checkout-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

.checkout-box h3 {
    margin-bottom: 15px;
}

.checkout-box input {
    width: 100%;
    padding: 10px;
    margin-tp: 50px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.checkout-box label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.order-summary {
    margin-top: 20px;
    font-weight: bold;
}
/* CART BADGE */
.cart-link {
    position: relative;
}
.order-items {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}
.checkout-product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
}

.checkout-product img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}

.checkout-info {
  flex: 1;
}

.checkout-info h4 {
  color: #fff;
  font-size: 15px;
}

.checkout-info p {
  color: #bbb;
  font-size: 13px;
}

.checkout-price {
  color: #22e6a8;
  font-weight: bold;
}


.order-total {
  margin-top: 20px;
  color: #fff;
}

.order-total p,
.order-total h4 {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.order-total h4 {
  font-size: 20px;
  color: #22e6a8;
}

.cart-count {
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: -26px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}
/* HERO SECTION */
.gold-hero {
    background: linear-gradient(to right, #2b160a, #4b2a14);
    padding: 40px 0;
}

.gold-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0 20px;
}

/* LEFT SIDE */
.gold-left {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: #f5d38b;
}

.brand-title {
    font-size: 60px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.star {
    font-size: 40px;
}

.tagline {
    font-size: 20px;
    margin: 15px 0 25px;
    color: #e6c78c;
}

.gold-btn {
    padding: 14px 35px;
    border: 1px solid #d4af37;
    color: #f5d38b;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.3s;
}

.gold-btn:hover {
    background: #d4af37;
    color: #2b160a;
}

/* RIGHT SIDE */
.gold-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}
/* Section headings */
.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 0.5rem;
}

.section-heading .section-subtitle {
    color: var(--text-soft, #5f5f5f);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    color: var(--brand-gold);
    margin-bottom: 0.25rem;
}

.trust {
    padding: 60px 10px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 560px;
}

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

.trust-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(15, 15, 15, 0.08);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

.trust-card p {
    color: #5d5d5d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.trust-visual {
    width: 100%;
    min-height: 320px;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}
/* Categories Section */
.categories {
    padding: 40px 10px;
}
.categories.container {
    display: flex;
    flex-direction: column;
}

.categories h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #f5d38b;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.category-card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-card-info {
    padding: 18px 20px 24px;
    text-align: left;
}

.category-card-info h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
}

.category-card-info p {
    color: var(--text-soft, #5a5a5a);
    font-size: 0.95rem;
    margin: 0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 16px;
  opacity: 0.9;
}

/* SECTION */
.contact-section {
  padding: 80px 8%;
  background: #f9f9f9;
}

/* INFO CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.contact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
  margin-bottom: 8px;
  color: #222;
}

.contact-card p {
  color: #555;
  font-size: 14.5px;
}

/* FORM + MAP */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #222;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14.5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2c5364;
}

.contact-form button {
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 30px;
  background: #2c5364;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #203a43;
}

/* MAP */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}
.mega-footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 70px 6%;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #d1d1d1;
  font-size: 14px;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* SIGNUP COLUMN */
.footer-signup p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 15px;
}

.signup-btn {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
}

.promo-box p {
  font-size: 14px;
  line-height: 1.6;
}

.promo-box span {
  display: block;
  font-size: 12px;
  margin: 10px 0;
  color: #bbb;
}

.promo-links a {
  font-size: 14px;
  color: #fff;
  margin-right: 15px;
  text-decoration: underline;
}

.footer-signup hr {
  border: none;
  border-top: 1px solid #444;
  margin: 30px 0;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
    .categories h2 {
        font-size: 26px;
    }

    .category-card {
        padding: 15px;
    }

    .category-card img {
        height: 180px;
    }

    .category-card p,
    .category-card h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        gap: 15px;
    }

    .category-card img {
        height: 150px;
    }

    .category-card p,
    .category-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 90px 0 70px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }

    .hero-lede {
        font-size: 1rem;
    }
}

@media (max-width: 1023px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .header-actions {
        order: 2;
    }

    .menu-toggle {
        display: flex;
    }

    .cart-pill {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .hero {
        padding: 70px 0 90px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-visual {
        min-height: 220px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .cart-text {
        display: none;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gold-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        left: 30px;
        bottom: 30px;
    }

    .brand-title {
        font-size: 45px;
    }
}

@media (max-width: 576px) {
    .gold-right {
        grid-template-columns: 1fr;
    }

    .brand-title {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }
}

/* Responsive */
@media(max-width:768px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media(max-width:992px) {
    .product-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:768px) {
    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

