.home-info-section {
  align-items: center !important;
  padding: 3rem 0 0 !important;
}

.info-container {
  margin-bottom: 40px !important;
}


/* ===========================
   WRAPPER & PAGE TITLES
   =========================== */
   .main-title{
    text-align: center !important;
    color: #8B5CF6;
   }
.wrap {
  width: 1336px;
  margin: 40px auto;
  padding: 0 18px;
}

.page-title , .main-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.page-sub {
  margin: 0 0 28px;
  color: #475569;
  font-size: 15px;
}

/* ===========================
     MAIN SHADES GRID (LIST PAGE)
     =========================== */
.shades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.shade-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid #f3f4f6;
}

.shade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.shade-visual {
  height: 300px;
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.card-body {
  padding: 10px 14px !important;
  display: grid;
  place-items: center;
  background: #fff;
}

.card-title {
  font-size: 19px;
  font-weight: 700;
}

/* ===========================
     SHADE DETAILS PAGE
     =========================== */
.info-container {
  background-color: #fff;
}

.shade-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.shade-section {
  margin-bottom: 20px;
  background: #f9f9f9;
  border-bottom: 1px solid #dfd4d4;
  padding: 1.2rem 0;
}

.shades-info-container .shade-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ===========================
     SHADES GRID (DETAILS PAGE)
     =========================== */
.shades-color-grid {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.shade-color {
  width: 100%;
  height: 140px;
}

.shade-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
}

.shade-info p {
  margin-bottom: 0 !important;
}

.shades-info-container {
  width: 1336px;
}

.shades-info-container h2 {
  margin-bottom: 1.5rem;
}

.shades-info-container .color-section-card {
  margin-bottom: 30px;
}

.shade-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

.shade-text span {
  font-weight: normal;
  color: #555;
}

.copy-btn {
  cursor: pointer;
  color: #444;
  font-size: 16px;
  transition: color 0.3s;
  background-color: transparent !important;
  border: 0 !important;
}

.copy-btn:hover {
  background: transparent !important;
}

/* ===========================
     CONTENT SECTIONS
     =========================== */
.content-article {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 4px solid #ffcc00;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.content-article h2 {
  margin-bottom: .5rem;
  color: #b58900;
}

/* ===========================
     COLLECTIONS
     =========================== */
.bottom-shades-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bottom-shade {
  flex: 1;
  min-width: 120px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  transition: transform 0.2s;
}

.bottom-shade:hover {
  transform: scale(1.05);
}

/* ===========================
     HERO / MAIN INFO SECTION
     =========================== */
.main-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7%;
  padding: 20px 0px !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.info-text {
  max-height: 600px;
  height: 100%;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  text-align: left !important;
}

.info-lead {
  margin-top: 12px;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.6;
}

.info-graphic {
  display: grid;
  grid-template-columns: repeat(2, 200px);
}

.info-graphic img {
  width: 400px;
  border-radius: 8px;
}

/* ===========================
   TOASTIFY MESSAGE
   =========================== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Toast Box */
.toast {
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(100%);
  animation: slideIn 0.4s ease forwards, fadeOut 0.5s ease 2.5s forwards;
}

/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}


/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* 1299px ↓ (Large Desktop) */
@media (max-width: 1299px) {
  .info-container {
    margin: 0 20px;
  }

  .wrap {
    width: 100%;
    padding: 0 24px;
  }

  .main-info {
    padding: 50px 0px;
    gap: 10%;
    display: flex;
  }

  .shades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 992px ↓ (Laptops / Small Desktop) */
@media (max-width: 992px) {
  .main-info {
    flex-direction: row;
    text-align: center;
    padding: 40px 40px;
    gap: 2%;
  }

  .info-title {
    text-align: center;
  }

  .info-graphic {
    margin-top: 30px;
  }

  .info-graphic img {
    width: 400px;
    height: 300px;
  }

  .shades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shades-color-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 768px ↓ (Tablets) */
@media (max-width: 768px) {
  .main-info {
    padding: 30px 20px;
  }

  .info-title {
    font-size: 2rem;
  }

  .info-lead {
    font-size: 0.95rem;
  }

  .shades-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .shade-visual {
    height: 220px;
  }
}

/* 600px ↓ (Small Tablets / Big Phones) */
@media (max-width: 600px) {
  .main-info {
    padding: 20px;
    flex-direction: column;
  }

  .info-graphic {
    grid-template-columns: repeat(2, 2fr);
    gap: 14px;
  }

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

  .shades-color-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .shade-visual {
    height: 180px;
  }
}


/* 480px ↓ (Mobiles) */
@media (max-width: 480px) {
  .info-title {
    font-size: 1.6rem;
  }

  .info-lead {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .shade-visual {
    height: 180px;
  }

  .shade-color {
    height: 120px;
  }

  .shade-info {
    flex-direction: row;
    gap: 6px;
    text-align: left;
    align-items: center;
  }

  .shade-text {
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
  }
}

/* 350px ↓ (Small Mobile) */
@media (max-width: 350px) {
  .info-title {
    font-size: 1.4rem;
  }

  .info-lead {
    font-size: 0.85rem;
  }

  .shades-grid {
    gap: 12px;
  }

  .shades-color-grid {
    grid-template-columns: 1fr;
  }

  .info-graphic img {
    width: 300px;
    height: 200px;
  }
}

/* 320px ↓ (Very Small Screens) */
@media (max-width: 320px) {
  .info-title {
    font-size: 1.2rem;
  }

  .info-lead {
    font-size: 0.8rem;
  }

  .shade-color {
    height: 100px;
  }

  .shade-text {
    font-size: 12px;
  }

  .copy-btn {
    font-size: 14px;
  }
}