:root {
  --color-primary: #333333;
  --color-secondary: #FF6B6B;
  --color-white: #FFFFFF;
  --color-bg-light: #F9F9F9;
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --font-family: 'Inter', sans-serif;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  /* Match About Us page style */
  color: var(--color-primary);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--border-radius);
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: var(--spacing-md) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--color-bg-light);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  padding: 4px;
  font-family: inherit;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  margin-bottom: var(--spacing-xl);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
}

/* Products Grid */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--spacing-lg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: 0;
  /* Rectangular Design */
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.product-image-link {
  display: block;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--spacing-md);
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-category {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
}

.buy-instagram {
  display: block;
  text-align: center;
  margin-top: var(--spacing-md);
  padding: 8px;
  background-color: #E1306C;
  /* Instagram Color */
  color: white;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
}

.buy-instagram:hover {
  background-color: #C13584;
}

.view-more-container {
  text-align: center;
  margin: var(--spacing-xl) 0;
}

/* Products Page Layout */
.products-page-layout {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
}

.filters {
  width: 250px;
  flex-shrink: 0;
  background: var(--color-bg-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  height: fit-content;
}

.filter-title {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 8px;
}

.filter-list li {
  margin-bottom: 10px;
}

.filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: var(--transition);
  text-align: left;
  width: 100%;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-secondary);
  font-weight: 600;
  padding-left: 5px;
}

/* Contact Page */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl) 0;
}

.contact-form {
  display: grid;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

/* Footer */
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xl) 0;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.footer-section h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-secondary);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

  /* Mobile navigation */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 900;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  /* Products page responsive */
  .products-page-layout {
    flex-direction: column;
  }

  .filters {
    width: 100%;
    margin-bottom: 20px;
  }

  /* Hero responsive */
  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Products grid - 1 column on mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  /* Container padding adjustments */
  .container {
    padding: 0 16px;
  }

  /* Touch-friendly buttons */
  .btn {
    min-height: 44px;
    font-size: 16px;
  }

  /* Section spacing */
  .section-title {
    font-size: 1.5rem;
  }
}

/* 
   -----------------------------------
   GLASS NAVBAR STYLES (NEW)
   For index.html consistency
   -----------------------------------
*/

:root {
  --glass: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.45);
  /* --radius: 24px;  Already defined as --border-radius but using specific var for glass if needed, though they might conflict. Leaving for now. */
}

/* GLASS EFFECT CLASS */
.glass {
  background: var(--glass) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 20px 50px rgba(0, 0, 0, 0.12);
}

/* NEW NAVBAR STRUCTURE */
nav.glass {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  padding: 16px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  flex-direction: row;
  /* reset potential flex column from old styles if any */
}

/* Forcing .nav-links inside glass nav to behave properly */
nav.glass .nav-right {
  display: flex;
  gap: 26px;
  align-items: center;
}

nav.glass .nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.glass .nav-left a {
  text-decoration: none;
  color: #111;
  font-size: 1.2rem;
}

nav.glass a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
}

nav.glass a:hover {
  color: #555;
  text-decoration: none;
}

/* SEARCH BAR IN NAV */
/* Overriding old .search-bar if needed, or using .nav-left .search */
.nav-left .search {
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  outline: none;
  width: 200px;
  display: block;
  /* Ensure visibility */
}

/* Login Button Specifics */
.login-btn {
  padding: 8px 16px;
  border: 1px solid #111;
  border-radius: 20px;
  transition: all 0.3s;
}

.login-btn:hover {
  background: #111;
  color: white !important;
  text-decoration: none;
}

/* Page Spacing Helper */
.page-top-padding {
  padding-top: 140px;
}

/* HAMBURGER MENU BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text, #111);
  transition: all 0.3s ease;
  display: block;
}

/* Responsive Tweaks for Glass Nav */
@media (max-width: 768px) {
  nav.glass {
    width: 95%;
    padding: 12px 16px;
  }

  .nav-left .search {
    display: none;
    /* Hide search on mobile nav to save space */
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide nav links on mobile by default */
  .nav-right {
    position: fixed;
    top: 80px;
    right: -100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    border-radius: 20px;
    width: 300px;
    max-width: 85vw;
  }

  .nav-right.active {
    right: 10px;
  }

  .nav-right a {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-left a {
    font-size: 1.1rem;
  }

  /* Touch-friendly buttons */
  .login-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* 
   -----------------------------------
   PRODUCT DETAIL WIREFRAME REDESIGN
   -----------------------------------
*/

.pd-main-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

/* LEFT: Gallery */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-main-image {
  width: 100%;
  height: 500px;
  /* Large square-ish aspect based on wireframe */
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumbnails {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pd-thumb {
  width: 80px;
  height: 80px;
  background: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #ddd;
  overflow: hidden;
  opacity: 0.7;
  transition: 0.3s;
}

.pd-thumb:hover,
.pd-thumb.active {
  opacity: 1;
  border-color: #333;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT: Info */
.pd-info-col {
  padding-top: 10px;
}

.pd-title-wire {
  font-size: 32px;
  font-weight: 300;
  /* Thin font as per wireframe */
  margin-bottom: 10px;
  color: #333;
}

.pd-reviews-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #888;
  font-size: 14px;
}

.pd-stars {
  color: #aaa;
  /* Grayish stars in wireframe */
}

.pd-stars.filled {
  color: #333;
}

.pd-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}

.pd-price-wire {
  font-size: 28px;
  font-weight: 300;
}

/* Select Box */
.pd-select-model {
  padding: 10px;
  border: 1px solid #ddd;
  color: #666;
  width: 200px;
  background: white;
}

.pd-desc-wire {
  color: #777;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 15px;
}

.pd-add-cart-btn {
  background: #555;
  /* Wireframe dark grey */
  color: white;
  padding: 15px 40px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.pd-add-cart-btn:hover {
  background: #333;
}

/* SECTIONS: Similar & Reviews */
.pd-section-header {
  text-align: center;
  font-size: 28px;
  font-weight: 300;
  margin: 60px 0 40px;
  color: #888;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 items per row as per wireframe */
  gap: 30px;
  margin-bottom: 80px;
}

.similar-card {
  border: 1px solid #eee;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: 0.3s;
}

.similar-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.similar-img {
  width: 80px;
  height: 80px;
  background: #f9f9f9;
  object-fit: cover;
}

.reviews-section {
  border-top: 1px solid #eee;
  padding-top: 60px;
}

.review-card {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #888;
}

.review-content h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.review-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.review-text {
  color: #777;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {

  /* Product detail page responsive */
  .pd-main-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    overflow-x: hidden;
  }

  .pd-main-image {
    height: 300px;
    width: 100%;
  }

  .pd-thumbnails {
    gap: 10px;
    justify-content: center;
  }

  .pd-thumb {
    width: 60px;
    height: 60px;
  }

  .pd-title-wire {
    font-size: 24px;
  }

  .pd-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pd-select-model {
    width: 100%;
  }

  .pd-add-cart-btn {
    width: 100%;
  }

  .similar-grid {
    grid-template-columns: 1fr;
  }

  .similar-card {
    flex-direction: column;
    text-align: center;
  }

  .similar-img {
    width: 100%;
    height: 150px;
  }
}

/* 
   -----------------------------------
   CART WIREFRAME REDESIGN
   -----------------------------------
*/

.cart-title-wire {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-title-wire span {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.cart-split-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT: Items List */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 
   -----------------------------------
   ABOUT PAGE REDESIGN
   -----------------------------------
*/

.about-page-wrapper {
  overflow-x: hidden;
  /* Prevent horizontal scroll from overlapping elements */
}

/* Common Section */
.about-section {
  padding: 100px 0;
  position: relative;
}

/* 1. ABOUT US (Intro) & 2. WHO WE ARE (Reverse) */
.about-grid-overlap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.about-grid-overlap.reverse .about-img-col {
  order: 1;
}

.about-grid-overlap.reverse .about-text-col {
  order: 2;
}

.about-img-col {
  position: relative;
  z-index: 1;
}

.about-img-col img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text-col {
  position: relative;
  z-index: 2;
  padding: 60px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  margin-left: -100px;
  /* The Overlap Magic */
  max-width: 600px;
}

.reverse .about-text-col {
  margin-left: 0;
  margin-right: -100px;
  /* The Overlap Magic (Reverse) */
}

.about-heading {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #222;
  letter-spacing: -0.5px;
}

.about-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
}

/* 3. WHAT WE DO (Icon Grid) */
.what-we-do-section {
  text-align: center;
  padding: 120px 0;
  background-color: #fdfdfd;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #444;
  margin-bottom: 10px;
}

.icon-box h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.icon-box p {
  font-size: 0.95rem;
  color: #888;
  max-width: 250px;
  line-height: 1.6;
}

/* 4. PLAN A VISIT */
.visit-section {
  background: #fafafa;
  padding: 120px 0;
}

.visit-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  border: 1px solid #333;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: 0.3s;
}

.visit-btn:hover {
  background: #333;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid-overlap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-col,
  .reverse .about-text-col {
    margin: -40px 20px 0 20px;
    padding: 40px;
  }

  .about-grid-overlap.reverse .about-img-col {
    order: 0;
  }

  .about-grid-overlap.reverse .about-text-col {
    order: 0;
  }

  .icon-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



.cart-item-details {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  background: #f9f9f9;
}

.cart-item-text h4 {
  font-size: 14px;
  color: #888;
  /* 'Shirt' label style in wireframe */
  font-weight: 400;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.cart-item-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.cart-qty-control {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qty-wire-btn {
  color: #333;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
}

.qty-wire-val {
  border: 1px solid #ddd;
  padding: 5px 12px;
  font-size: 14px;
  color: #333;
}

.cart-item-price {
  font-weight: 600;
  font-size: 16px;
  width: 80px;
  text-align: right;
}

.cart-remove-icon {
  color: #999;
  cursor: pointer;
  font-size: 18px;
  margin-left: 20px;
}

.cart-remove-icon:hover {
  color: #333;
}

/* RIGHT: Summary */
.cart-summary-panel {
  background: #f9f9f9;
  /* Light gray background from wireframe */
  padding: 40px;
  border-radius: 4px;
}

.summary-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}

.summary-label {
  font-size: 12px;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.summary-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: white;
  margin-bottom: 30px;
  color: #888;
  outline: none;
}

.summary-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: white;
  margin-bottom: 40px;
  /* Space before Total */
}

.summary-total-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 30px;
}

.checkout-btn-black {
  background: #000;
  color: white;
  width: 100%;
  padding: 15px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.checkout-btn-black:hover {
  background: #333;
}

/* Back Link */
.back-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #666;
  margin-top: 40px;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 900px) {

  /* Cart page responsive */
  .cart-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-title-wire {
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-price {
    text-align: left;
  }

  .cart-summary-panel {
    padding: 20px;
  }
}

/* Tablet breakpoint (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-main-layout {
    gap: 40px;
  }

  .about-grid-overlap {
    gap: 30px;
  }
}