html,
body {
  margin: 0;
  padding: 0;
}

/* ----- Color variables (from logo palette) ----- */
:root {
  /* neutrals */
  --color-bg: #fdf7f0;         /* soft off-white background */
  --color-surface: #ffffff;    /* pure white panels/cards */
  --color-border: #e0d5c8;     /* subtle border / divider */
  --color-text-main: #3b3028;  /* dark brown text (outlines) */
  --color-text-muted: #7a6a5b; /* muted text */

  /* accents from characters */
  --color-accent-coral: #f28b82;  /* dress */
  --color-accent-blue: #4f86a8;   /* shirt */
  --color-accent-navy: #23415a;   /* jeans / strong emphasis */

  /* utility colors */
  --color-shadow: rgba(0, 0, 0, 0.06);
  --radius-large: 18px;
  --radius-medium: 10px;
  --radius-pill: 999px;
}

/* ----- Global reset-ish ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
}

header {
    width: 960px;
    margin: auto;
    .logo {
        width: 160px;
    }
    h1 {
        display: inline-block;
        top: -80px;
       font-variant: small-caps;    
       small {
        font-size: 16px;
       }
    }
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

/* ----- Header / Logo area ----- */

header {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-wrapper {
    width: 960px;
    margin: auto;
}
.shop {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  gap: 2rem;
  margin-top: 16px;
}

/* Left: logo, titles, tags, desc */
.shop .left {
  flex: 1 1 50%;
  min-width: 280px;
}

.shoplogo {
  float: left;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 1rem;
}

.title-en,
.title-jp {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.title-jp {
  font-weight: 400;
  color: #666;
}

.clear {
  clear: both;
  margin-bottom: 1rem;
}

/* Pills */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background-color: #f28b82;
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Short description */
.shortdescription {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* Right: courses + links */
.shop .right {
  flex: 1 1 40%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.courses {
  margin-bottom: 1rem;
}

.course-jp,
.course-en {
  background: #fbf4eb;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.course-jp strong,
.course-en strong {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.time,
.price {
  display: inline-block;
  margin-right: 1rem;
  font-weight: 500;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.links a {
  color: #4f86a8;
  text-decoration: none;
  font-size: 0.9rem;
}

.links a:hover {
  text-decoration: underline;
}

.info {
  background: #fbf4eb;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}