/*
Theme Name: Divi Child Conesonic
Theme URI: https://conesonic.com
Description: Child theme for Conesonic custom coded homepage
Author: Conesonic
Template: Divi
Version: 1.0.0
*/
/* =========================
   CONESONIC CUSTOM HOME
========================= */

.cs-home {
  background: #120D05;
  color: #EDE1D0;
  font-family: Arial, sans-serif;
}

.cs-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.cs-label {
  color: #FCB900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cs-hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at top right, rgba(252,185,0,0.16), transparent 35%),
    linear-gradient(180deg, #120D05 0%, #181309 100%);
}

.cs-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.cs-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  color: #EDE1D0;
  font-weight: 900;
  margin: 0 0 24px;
}

.cs-hero-text {
  max-width: 620px;
  color: #D4C4AB;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0;
}

.cs-btn-primary {
  background: #FCB900;
  color: #261900;
  border: 1px solid #FCB900;
}

.cs-btn-secondary {
  background: transparent;
  color: #EDE1D0;
  border: 1px solid #504532;
}

.cs-image-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px solid #3B3429;
  background: #201B11;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9D8F78;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

.cs-trustbar {
  border-top: 1px solid #3B3429;
  border-bottom: 1px solid #3B3429;
  background: #181309;
  padding: 28px 0;
}

.cs-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cs-trust-grid div {
  border-left: 1px solid #3B3429;
  padding-left: 18px;
}

.cs-trust-grid span {
  color: #D8B56A;
  font-size: 12px;
  font-weight: 800;
}

.cs-trust-grid strong {
  display: block;
  color: #EDE1D0;
  text-transform: uppercase;
  margin: 8px 0;
}

.cs-trust-grid p {
  color: #D4C4AB;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cs-products {
  padding: 88px 0;
  background: #120D05;
}

.cs-section-header {
  max-width: 720px;
  margin-bottom: 36px;
}

.cs-section-header h2,
.cs-story h2,
.cs-custom-cta h2 {
  color: #EDE1D0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.cs-section-header p,
.cs-story p,
.cs-custom-cta p {
  color: #D4C4AB;
  font-size: 18px;
  line-height: 1.6;
}

.cs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cs-product-card {
  background: #201B11;
  border: 1px solid #3B3429;
}

.cs-product-image {
  display: block;
  background: #181309;
  border-bottom: 1px solid #3B3429;
}

.cs-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-product-info {
  padding: 18px;
}

.cs-product-meta {
  color: #D8B56A;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.cs-product-info h3 {
  font-size: 20px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.cs-product-info h3 a {
  color: #EDE1D0;
  text-decoration: none;
}

.cs-product-price {
  color: #FCB900;
  font-weight: 800;
  margin-bottom: 18px;
}

.cs-product-link {
  color: #EDE1D0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid #FCB900;
}

.cs-story {
  padding: 88px 0;
  background: #181309;
  border-top: 1px solid #3B3429;
  border-bottom: 1px solid #3B3429;
}

.cs-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cs-custom-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at bottom left, rgba(252,185,0,0.14), transparent 35%),
    #120D05;
  text-align: center;
}

.cs-custom-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

@media (max-width: 980px) {
  .cs-hero-grid,
  .cs-story-grid {
    grid-template-columns: 1fr;
  }

  .cs-product-grid,
  .cs-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-hero {
    padding: 72px 0;
  }
}

@media (max-width: 640px) {
  .cs-container {
    width: min(100% - 28px, 1180px);
  }

  .cs-product-grid,
  .cs-trust-grid {
    grid-template-columns: 1fr;
  }

  .cs-btn {
    width: 100%;
  }

  .cs-hero {
    min-height: auto;
    padding: 64px 0;
  }
}
body {
  outline: 10px solid red !important;
}