  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Merriweather:wght@700;900&display=swap');
    :root {
      --bg: #FFFAF3;
      --primary: #423B90;
      --primary-dark: #2f286f;
      --primary-soft: #f1eeff;
      --text: #27242f;
      --muted: #6a6478;
      --card: #ffffff;
      --border: #e8decd;
      --shadow: 0 14px 34px rgba(66, 59, 144, 0.10);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }

    h1, h2, h3, h4, h5,
    .brand-title,
    .product-title,
    .section-title,
    .feature-tile h3,
    .cross-body h3,
    .policy-card h3,
    .info-panel h3 {
      font-family: 'Merriweather', serif;
      font-weight: 700;
    }

    body {
      margin: 0;
      font-family: 'Poppins', Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

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

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 22px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .brand-banner {
      background: linear-gradient(135deg, var(--primary) 0%, #544bb3 100%);
      color: #fff;
      padding: 26px 30px;
      border-radius: 28px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 20px;
      align-items: center;
      margin-bottom: 22px;
    }

    .brand-title {
      font-size: 34px;
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: 1px;
      max-width: 350px;
      
    }
    .brand-title img{
      background: #FFF;
      padding: 10px;
      border-radius:25px;
    }

    .brand-copy {
      font-size: 15px;
      opacity: 0.95;
      max-width: 680px;
    }

    .brand-badges {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .brand-badge {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 10px 14px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .hero {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 22px;
      margin-bottom: 22px;
    }

    .gallery {
      padding: 22px;
    }

    .main-image {
      aspect-ratio: 1 / 1;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .thumbs {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    .thumb {
      border: 1px solid var(--border);
      border-radius: 14px;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #fff;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .thumb:hover,
    .thumb.active {
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(66,59,144,0.12);
      transform: translateY(-1px);
    }

    .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content {
      padding: 28px;
    }

    .pill {
      display: inline-block;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary);
      border: 1px solid #ddd4ff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 14px;
    }

    .product-title {
      font-size: 28px;
      line-height: 42px;
      margin: 0 0 12px;
      color: var(--primary);
    }

    .hero-text {
      color: var(--muted);
      font-size: 16px;
      margin: 0 0 18px;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 18px;
    }

    .benefit {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px;
    }

    .benefit strong {
      display: block;
      color: var(--primary);
      margin-bottom: 4px;
      font-size: 15px;
    }

    .benefit span {
      color: #555064;
      font-size: 14px;
    }

    .feature-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 22px;
    }

    .feature-tile {
      background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
      border: 1px solid #e4dbff;
      border-radius: 18px;
      padding: 18px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .icon {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary);
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 800;
    }

    .feature-tile h3 {
      margin: 0 0 6px;
      color: var(--primary);
      font-size: 17px;
    }

    .feature-tile p {
      margin: 0;
      color: #5d586a;
      font-size: 14px;
    }

    .section {
      padding: 28px;
      margin-bottom: 22px;
    }

    .section-title {
      font-size: 28px;
      margin: 0 0 16px;
      color: var(--primary);
    }

    .split {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 22px;
      align-items: start;
    }

    .info-panel {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px;
      background: #fff;
    }

    .info-panel h3 {
      margin: 0 0 12px;
      color: var(--primary);
      font-size: 19px;
    }

    .info-panel p,
    .info-panel li {
      color: #4d4959;
      font-size: 15px;
    }

    .info-panel ul {
      margin: 0;
      padding-left: 18px;
    }

    .spec-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid var(--border);
    }

    .spec-table tr:nth-child(odd) {
      background: #fff;
    }

    .spec-table tr:nth-child(even) {
      background: #fcfaf6;
    }

    .spec-table td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
    }

    .spec-table tr:last-child td {
      border-bottom: none;
    }

    .spec-key {
      width: 38%;
      font-weight: 700;
      color: var(--primary);
    }

    .policy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .policy-card {
      background: linear-gradient(180deg, #fff 0%, #fffaf3 100%);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px;
    }

    .policy-card h3 {
      margin: 0 0 10px;
      color: var(--primary);
      font-size: 20px;
    }

    .policy-card p,
    .policy-card li {
      color: #504c5d;
      font-size: 15px;
    }

    .policy-card ul {
      margin: 0;
      padding-left: 18px;
    }

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

    .cross-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: #fff;
      overflow: hidden;
      transition: 0.2s ease;
    }

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

    .cross-img {
      aspect-ratio: 1 / 1;
      background: #fff;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
    }

    .cross-body {
      padding: 16px;
    }

    .cross-body h3 {
      margin: 0 0 8px;
      color: var(--primary);
      font-size: 17px;
      line-height: 1.25;
    }

    .cross-body p {
      margin: 0 0 12px;
      color: #5d586a;
      font-size: 14px;
    }

    .btn {
      display: inline-block;
      background: var(--primary);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 11px 14px;
      border-radius: 12px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 22px;
    }

    .trust-boxes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .trust-box {
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 16px;
      padding: 16px;
    }

    .trust-box strong {
      display: block;
      color: var(--primary);
      margin-bottom: 5px;
      font-size: 16px;
    }

    .footer-note {
      text-align: center;
      color: #756f85;
      font-size: 13px;
      padding: 4px 0 20px;
    }

    @media (max-width: 1080px) {
      .brand-banner,
      .hero,
      .split,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .feature-strip,
      .policy-grid,
      .cross-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      .wrap {
        padding: 14px;
      }

      .brand-banner,
      .hero-content,
      .gallery,
      .section {
        padding: 18px;
      }

      .brand-title,
      .product-title {
        font-size: 28px;
      }

      .brand-badges,
      .benefit-grid,
      .feature-strip,
      .policy-grid,
      .cross-grid,
      .trust-boxes,
      .thumbs {
        grid-template-columns: 1fr;
      }
    }
    
    /** DASHBOARD **/
    

.container{
padding:20px;
}

.card{
background:var(--card);
border-radius:8px;
padding:20px;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.toolbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.search{
padding:10px;
border:1px solid var(--border);
border-radius:6px;
width:280px;
}

.add-btn{
background:var(--primary);
color:white;
border:none;
padding:10px 16px;
border-radius:6px;
cursor:pointer;
font-weight:600;
}

table{
width:100%;
border-collapse:collapse;
}

th{
text-align:left;
background:#f6f3ee;
padding:14px 10px;
font-size:14px;
}

td{
padding:12px 10px;
border-top:1px solid var(--border);
font-size:14px;
}

tr:hover{
background:#faf8f3;
}

.product-img{
width:50px;
height:50px;
object-fit:contain;
border:1px solid var(--border);
border-radius:4px;
background:white;
padding:2px;
}

.status{
padding:6px 10px;
border-radius:20px;
font-size:12px;
font-weight:600;
display:inline-block;
}

.status.live{
background:#e8f7ec;
color:#1f7a3f;
}

.status.pending{
background:#fff4e5;
color:#a15c00;
}

.status.error{
background:#fdeaea;
color:#b42318;
}

.action-btn{
padding:6px 10px;
border-radius:4px;
font-size:12px;
text-decoration:none;
margin-right:5px;
display:inline-block;
}

.view{
background:#eef2ff;
color:#423B90;
}

.edit{
background:#423B90;
color:white;
}

@media(max-width:900px){

table{
font-size:12px;
}

.search{
width:160px;
}

}
    
    