:root{--page-title-display:none;}/* Start custom CSS */:root {
    --wood-dark: #3e2723;
    --wood-mid: #6d4c41;
    --wood-light: #a1887f;
    --wood-pale: #d7ccc8;
    --amber: #c78c3c;
    --amber-light: #e6b56c;
    --cream: #faf6f1;
    --white: #ffffff;
    --text-dark: #2c1810;
    --text-body: #4e342e;
    --text-light: #795548;
    --green: #2e7d32;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-body);
    background: var(--cream);
    line-height: 1.8;
  }
  h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    color: var(--text-dark);
    letter-spacing: 0.5px;
  }

  /* Logo Header */
  .logo-header {
    background: var(--white);
    text-align: center;
    padding: 50px 20px 40px;
  }
  .logo-header img {
    max-width: 420px;
    width: 90%;
    height: auto;
  }
  .logo-header .tagline {
    font-size: 1.2em;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
  }
  .logo-header .location {
    font-size: 0.9em;
    color: var(--amber);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* Sections */
  .section {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 25px;
  }
  .section h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
  }
  .section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--amber);
    margin: 12px auto 30px;
  }
  .section h3 {
    font-size: 1.4em;
    color: var(--wood-mid);
    margin: 25px 0 12px;
  }
  .section p {
    margin-bottom: 15px;
    font-size: 1.05em;
  }
  .lead {
    font-size: 1.2em;
    color: var(--text-dark);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-style: italic;
    color: var(--text-light);
  }

  /* About */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .about-text p { margin-bottom: 15px; }
  .about-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(62,39,35,0.1);
    border-top: 4px solid var(--amber);
  }
  .about-card .icon {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  .about-card h4 {
    color: var(--wood-dark);
    margin-bottom: 8px;
  }
  .about-card p {
    font-size: 0.95em;
    color: var(--text-light);
  }
  @media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
  }

  /* Product */
  .product-section {
    background: var(--white);
  }
  .product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
  }
  .feature-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--wood-pale);
    border-radius: 10px;
    background: var(--cream);
    transition: transform 0.2s;
  }
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(62,39,35,0.12);
  }
  .feature-card .icon {
    font-size: 2.2em;
    margin-bottom: 12px;
  }
  .feature-card h4 {
    color: var(--wood-dark);
    margin-bottom: 8px;
    font-size: 1.15em;
  }
  .feature-card p {
    font-size: 0.92em;
    color: var(--text-light);
  }
  @media (max-width: 768px) {
    .product-features { grid-template-columns: 1fr; }
  }

  /* Grading */
  .grade-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(62,39,35,0.08);
  }
  .grade-table th {
    background: var(--wood-dark);
    color: var(--white);
    padding: 14px 16px;
    text-align: left;
    font-size: 0.95em;
    letter-spacing: 0.5px;
  }
  .grade-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--wood-pale);
    font-size: 0.95em;
  }
  .grade-table tr:last-child td { border-bottom: none; }
  .grade-table tr:hover td { background: var(--cream); }
  .grade-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: bold;
  }
  .gb-prime { background: #ffd700; color: #3e2723; }
  .gb-select { background: #e3f2fd; color: #1565c0; }
  .gb-standard { background: #e8f5e9; color: #2e7d32; }
  .gb-graded { background: #fff3e0; color: #e65100; }
  .gb-common { background: #f5f5f5; color: #616161; }

  /* Specs */
  .spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
  }
  .spec-item {
    background: var(--white);
    border-left: 4px solid var(--amber);
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
  }
  .spec-item .label {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
  }
  .spec-item .value {
    font-size: 1.1em;
    color: var(--text-dark);
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr; }
  }

  /* Markets */
  .market-section {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-mid));
    color: var(--white);
  }
  .market-section h2 { color: var(--white); }
  .market-section h2::after { background: var(--amber-light); }
  .market-section .lead { color: var(--wood-pale); }
  .market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
  }
  .market-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 25px 18px;
    text-align: center;
  }
  .market-card .flag { font-size: 2em; margin-bottom: 8px; }
  .market-card .country {
    font-size: 1em;
    color: var(--white);
    font-weight: bold;
    margin-bottom: 4px;
  }
  .market-card .detail {
    font-size: 0.82em;
    color: var(--wood-pale);
  }
  @media (max-width: 768px) {
    .market-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* Why Us */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
  }
  .why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }
  .why-item .check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3em;
    font-weight: bold;
  }
  .why-item h4 {
    color: var(--wood-dark);
    margin-bottom: 4px;
    font-size: 1.1em;
  }
  .why-item p {
    font-size: 0.92em;
    color: var(--text-light);
    margin: 0;
  }
  @media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
  }

  /* Contact */
  .contact-section {
    background: var(--wood-dark);
    color: var(--white);
    text-align: center;
    padding: 60px 25px;
  }
  .contact-section h2 { color: var(--white); }
  .contact-section h2::after { background: var(--amber); }
  .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .contact-item {
    text-align: center;
  }
  .contact-item .icon { font-size: 1.8em; margin-bottom: 8px; }
  .contact-item .label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wood-pale);
    margin-bottom: 4px;
  }
  .contact-item .value {
    font-size: 1.05em;
    color: var(--white);
  }

  /* CTA */
  .cta {
    background: var(--amber);
    color: var(--white);
    text-align: center;
    padding: 40px 25px;
  }
  .cta h3 {
    color: var(--white);
    font-size: 1.6em;
    margin-bottom: 8px;
  }
  .cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05em;
  }

  /* Footer */
  footer {
    background: var(--text-dark);
    color: var(--wood-pale);
    text-align: center;
    padding: 25px;
    font-size: 0.85em;
  }

  /* Thickness bars */
  .thickness-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
  }
  .thickness-bar .range {
    width: 100px;
    font-size: 0.9em;
    color: var(--text-dark);
    font-weight: bold;
  }
  .thickness-bar .bar {
    flex: 1;
    height: 22px;
    background: var(--wood-pale);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .thickness-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wood-light), var(--amber));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: white;
    font-size: 0.8em;
    font-weight: bold;
  }/* End custom CSS */