/* Custom Properties for easy theming */
:root {
  --bg-orange: #d95b19;
  --bg-light: #fdfaf6;
  --bg-card: #f4efe9;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --accent: #e55c10;
  --font-main: 'Inter', sans-serif;
  --border-radius-lg: 30px;
  --border-radius-md: 15px;
  --border-radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-orange);
  color: var(--text-dark);
  /* The orange frame effect */
  padding: 20px; 
  min-height: 100vh;
}

/* Outer Wrapper acting as the white boundary */
.page-wrapper {
  background-color: #fff;
  border-radius: var(--border-radius-lg);
  padding: 10px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Inner canvas */
.main-container {
  background-color: var(--bg-light);
  border-radius: calc(var(--border-radius-lg) - 5px);
  padding: 40px 60px;
}

/* --- HEADER --- */
.header {
  display: flex; /* Flexbox Requirement */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.logo {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.logo .dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-icons {
  display: flex;
  gap: 20px;
  font-size: 24px;
}

/* --- MAIN HERO --- */
.hero {
  display: flex; /* Flexbox Requirement */
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

/* Left Column */
.col-left {
  flex: 1;
  max-width: 350px;
}

/* Using Position Relative as a positioning context */
.title-wrapper {
  position: relative; /* Relative Requirement */
  margin-bottom: 20px;
}

.badge-new {
  /* Using Position Absolute to float the badge above the title */
  position: absolute; /* Absolute Requirement */
  top: -30px;
  left: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.product-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.product-title .accent {
  color: var(--accent);
}

.price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.description-block h3 {
  font-size: 14px;
  margin-bottom: 15px;
}

.description-block p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 40px;
}

.accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #e0d8ce;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.accordion-item:last-child {
  border-bottom: 1px solid #e0d8ce;
}

/* Center Column */
.col-center {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.main-jacket {
  max-width: 100%;
  height: 600px;
  object-fit: cover;
  mix-blend-mode: multiply; /* Helps the image blend into the beige background */
  border-radius: 10px;
}

.product-badges {
  display: flex;
  gap: 16px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.feature-badge i {
  font-size: 18px;
}

/* Right Column */
.col-right {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.selector-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.selector-group h3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.size-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background-color: var(--bg-card);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn.active {
  background-color: var(--accent);
  color: white;
}

.size-guide {
  font-size: 12px;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.color-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}

.color-item img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  background-color: var(--bg-card);
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-secondary, .btn-primary {
  width: 100%;
  padding: 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  border: none;
}

/* --- BOTTOM SECTIONS --- */
.feature-cards {
  display: flex; /* Flexbox Requirement */
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  flex: 1;
  display: flex;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  padding: 15px;
  gap: 15px;
}

.card img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h4 {
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.trust-bar {
  display: flex; /* Flexbox Requirement */
  justify-content: space-between;
  padding: 30px 40px;
  background-color: transparent;
  border: 1px solid #e0d8ce;
  border-radius: var(--border-radius-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-item i {
  font-size: 40px;
  color: var(--text-dark);
}

.trust-item h5 {
  font-size: 12px;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 11px;
  color: var(--text-muted);
}