body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f7f5ef;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  background: #f0ece4;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: #ddd;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

.brand-name {
  font-weight: bold;
  font-size: 18px;
}

.site-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.hero {
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
              url('../img/hero_01.png') center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
  padding-bottom: 20px;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.shop-section {
  background: #efece4;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.shop-photo img {
  width: 100%;
  border-radius: 20px;
  height: 250px;
  object-fit: cover;
}

.footer {
  text-align: center;
  padding: 40px 0;
  background: #f0ece4;
}

/* Responsive */

@media(max-width: 900px){
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }
}


/* ---------------------------------
   Contact section
---------------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:30px;
  align-items:start;
}
@media (max-width: 820px){
  .contact-grid{ grid-template-columns: 1fr; }
}
.contact-card{
  background:#fff;
  border-radius:16px;
  padding:28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.06);
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid rgba(0,0,0,0.12);
  background:#fff;
  color:#222;
  font-weight:600;
}
.btn.primary{
  background:#222;
  color:#fff;
  border-color:#222;
}
.btn:hover{ filter:brightness(0.98); }

/* ---------------------------------
   Legal / Policy pages (simple)
---------------------------------- */
.page-hero{
  padding:60px 0 20px;
}
.page-title{
  font-size:32px;
  margin:0;
}
.doc{
  padding: 10px 0 70px;
}
.doc .box{
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:16px;
  padding:26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.doc dl{
  margin:0;
  display:grid;
  gap:14px;
}
.doc dl > div{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.doc dl > div:last-child{ border-bottom:none; }
.doc dt{ font-weight:700; color:#222; }
.doc dd{ margin:0; color:#333; line-height:1.7; }
@media (max-width: 700px){
  .doc dl > div{ grid-template-columns: 1fr; }
  .page-title{ font-size:28px; }
}
.footer-links{
  margin-top:10px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer-links a{
  color:#333;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,0.18);
}
.footer-links a:hover{ opacity:0.85; }

/* ===== Payment (from reference) ===== */
.payment-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 14px 18px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.payment-icons img{
  height: 34px;
  width: auto;
  display:block;
}

/* ===== Contact form ===== */
.contact-form-wrap textarea{
  width: 100%;
  box-sizing: border-box;
}

/* ===== Common helpers ===== */
.center { text-align: center; }
.section-lead{
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.9;
}

/* ===== Contact form (fix layout) ===== */
.contact-form-wrap{
  max-width: 920px;
  margin: 0 auto;
}

.contact-form{
  margin-top: 18px;
}

.contact-row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.contact-full{ grid-column: 1 / -1; }

@media (max-width: 900px){
  .contact-row{ grid-template-columns: 1fr; }
}

.contact-form label{
  display:block;
  margin: 10px 0 8px;
  font-weight: 700;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.16);
  background: #fff;
  font: inherit;
}

.contact-form textarea{
  resize: vertical;
  min-height: 220px;
}

.contact-form button{
  cursor: pointer;
}

/* ===== Dark section (match black product images) ===== */
.section-dark{
  background: radial-gradient(1000px 500px at 50% 0%, rgba(255,255,255,0.08), transparent 55%),
              radial-gradient(800px 400px at 20% 20%, rgba(255,215,0,0.06), transparent 60%),
              #0b0b0c;
  color: rgba(255,255,255,0.92);
}
.section-dark .section-title{ color: rgba(255,255,255,0.96); }
.section-dark .section-lead{ color: rgba(255,255,255,0.72); }

/* ===== Product carousel (mobile) / grid (desktop) ===== */
.product-carousel{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

/* Card */
.product-card{
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.product-media{
  aspect-ratio: 16 / 10;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* 切れない */
  padding: 10px;
  box-sizing: border-box;
}

.product-name{
  margin: 12px 14px 6px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.product-desc{
  margin: 0 14px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.product-meta{
  display:flex;
  justify-content:flex-end;
  padding: 0 14px 14px;
}

.product-meta .price{
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

/* Tablet */
@media (max-width: 980px){
  .product-carousel{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile: swipe carousel */
@media (max-width: 640px){
  .product-carousel{
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    grid-template-columns: unset;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 6px;
  }
  .product-card{
    scroll-snap-align: start;
  }

  /* nice scrollbar optional */
  .product-carousel::-webkit-scrollbar{ height: 8px; }
  .product-carousel::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
  }
}

/* ===== Hero tuned to product style ===== */
.hero{
  position: relative;
  overflow: hidden;
  background: #050506;
  color: rgba(255,255,255,0.92);
}

.hero-bg{
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(900px 420px at 60% 10%, rgba(255,215,0,0.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.75)),
    url("img/001-raisui.png");
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(120%);
  transform: scale(1.08);
  opacity: 0.85;
}

.hero .container,
.hero .hero-inner{
  position: relative;
  z-index: 1;
}

/* Hero内の文字が埋もれる場合の保険 */
.hero h1, .hero p{
  text-shadow: 0 8px 24px rgba(0,0,0,0.65);
}

/* ===== Premium-casual theme override (paste at end) ===== */

/* base */
:root{
  --bg: #fbfaf7;                 /* 生成っぽさのない自然なオフホワイト */
  --panel: rgba(255,255,255,0.78);
  --panel-solid: #ffffff;
  --text: #141517;
  --muted: rgba(20,21,23,0.66);
  --line: rgba(20,21,23,0.10);

  --accent: #1f5b57;             /* 深めのティール（安っぽくならない） */
  --accent-weak: rgba(31,91,87,0.14);
  --gold: #caa06a;               /* 控えめゴールド */
  --shadow: 0 18px 55px rgba(12,12,14,0.10);
  --shadow-soft: 0 10px 28px rgba(12,12,14,0.08);

  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 12px;
}

body{
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(31,91,87,0.08), transparent 62%),
    radial-gradient(900px 520px at 82% 0%, rgba(202,160,106,0.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.02), transparent 140px),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.8;
}

.section{ padding: 64px 0; }
@media (max-width: 640px){ .section{ padding: 52px 0; } }

.container{ max-width: 1080px; }

/* header */
.site-header{
  background: rgba(251,250,247,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .site-nav a{
  color: rgba(20,21,23,0.72);
  letter-spacing: 0.02em;
}
.site-header .site-nav a:hover{ color: var(--accent); }

/* typography */
.section-title{
  letter-spacing: 0.02em;
}
.section-lead{
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  line-height: 1.9;
}
.center{ text-align: center; }

/* hero (見た目の格を上げる) */
.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.hero-bg{
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(900px 420px at 55% 8%, rgba(202,160,106,0.14), transparent 60%),
    radial-gradient(900px 520px at 18% 12%, rgba(31,91,87,0.14), transparent 62%),
    linear-gradient(180deg, rgba(251,250,247,0.15), rgba(251,250,247,0.92) 62%),
    url("img/001-raisui.png");
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(115%);
  transform: scale(1.08);
  opacity: 0.92;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(251,250,247,0.20), rgba(251,250,247,0.92)),
    repeating-linear-gradient(135deg, rgba(0,0,0,0.015), rgba(0,0,0,0.015) 2px, transparent 2px, transparent 10px);
  pointer-events:none;
}

.hero .container, .hero .hero-inner{ position: relative; z-index: 1; }

/* card / panels */
.card, .shop-card, .reservation, .contact-form-wrap, .product-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

.card:hover, .shop-card:hover, .product-card:hover{
  box-shadow: var(--shadow);
  transform: translateY(-1px);
  transition: box-shadow .25s ease, transform .25s ease;
}

/* buttons（丸すぎ問題を解消して上品に） */
.btn, button, input[type="submit"]{
  border-radius: var(--r-md);
}

.btn.primary, button.btn.primary, #contactForm button{
  background: linear-gradient(180deg, rgba(31,91,87,0.98), rgba(31,91,87,0.92));
  color: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 26px rgba(31,91,87,0.18);
}
.btn.primary:hover, #contactForm button:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
  transition: transform .18s ease, filter .18s ease;
}

/* form */
.contact-form input,
.contact-form textarea{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: rgba(31,91,87,0.45);
  box-shadow: 0 0 0 4px var(--accent-weak);
}

/* payment */
#payment .payment-icons{
  margin-top: 14px;
}
#payment .payment-icons img{
  height: 34px;
  width: auto;
  display:block;
  filter: saturate(0.95) contrast(1.05);
}

/* collection dark -> 真っ黒を避けて“高級寄りカジュアル”に */
.section-dark{
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,255,255,0.08), transparent 62%),
    radial-gradient(900px 520px at 15% 15%, rgba(31,91,87,0.16), transparent 62%),
    #17181b; /* 柔らかいチャコール */
  color: rgba(255,255,255,0.92);
}
.section-dark .section-lead{ color: rgba(255,255,255,0.72); }
.section-dark .product-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.section-dark .product-media{
  background: rgba(0,0,0,0.32);
}

/* (optional) Gold highlight text */
.gold{ color: var(--gold); }

/* ===== Hero refined ===== */

.hero{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f1012;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(15,16,18,0.55), rgba(15,16,18,0.75)),
    url("img/hero_bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(95%) contrast(105%);
  z-index: 0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 400px at 70% 10%, rgba(202,160,106,0.20), transparent 60%),
    radial-gradient(800px 400px at 10% 30%, rgba(31,91,87,0.20), transparent 60%);
  z-index:1;
}

.hero-inner{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-text h1{
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-text p{
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.hero .btn.primary{
  background: linear-gradient(180deg, #caa06a, #b88a50);
  border: none;
  box-shadow: 0 14px 35px rgba(202,160,106,0.35);
}

/* ===== Contact polish (fix “崩れ” + reduce cheap look) ===== */

#contact .reservation.contact-form-wrap{
  padding: 34px 34px 30px;
}

#contact .contact-form{
  margin-top: 22px;
}

/* 3カラム時の見た目を整える */
#contact .contact-row{
  gap: 18px 22px;
}

#contact .contact-form label{
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  color: rgba(20,21,23,0.78);
}

/* 入力欄の“のっぺり感”を抑える */
#contact .contact-form input,
#contact .contact-form textarea{
  border-radius: 14px;
  border: 1px solid rgba(20,21,23,0.12);
  background: rgba(255,255,255,0.96);
  padding: 12px 14px;
}

/* textareaがデカすぎ問題：高さを適正化 */
#contact .contact-form textarea{
  min-height: 160px;   /* 220 → 160 */
  resize: vertical;
}

/* 送信ボタンの位置（左下に張り付くのを解消） */
#contact .contact-actions{
  justify-content: flex-end;
  margin-top: 18px;
}

/* スマホは縦並び＆余白調整 */
@media (max-width: 900px){
  #contact .reservation.contact-form-wrap{
    padding: 26px 18px 22px;
  }
  #contact .contact-row{
    gap: 14px;
  }
  #contact .contact-form textarea{
    min-height: 170px;
  }
}

/* =============================
   Contact Form Refine
============================= */

.contact-card{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(20,21,23,0.08);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.contact-lead{
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.8;
  color: rgba(20,21,23,0.7);
}

.contact-form{
  max-width: 920px;
  margin: 0 auto;
}

.form-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.form-group{
  display: flex;
  flex-direction: column;
}

.form-group.full{
  margin-bottom: 22px;
}

.form-group label{
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(20,21,23,0.75);
}

.contact-form input,
.contact-form textarea{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(20,21,23,0.15);
  background: #fff;
  font-size: 14px;
  transition: all .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: #1f5b57;
  box-shadow: 0 0 0 3px rgba(31,91,87,0.12);
}

.form-actions{
  text-align: right;
}

.form-actions .btn{
  padding: 12px 28px;
  font-size: 14px;
}

/* ===== Mobile ===== */
@media (max-width: 900px){
  .form-grid{
    grid-template-columns: 1fr;
  }

  .contact-card{
    padding: 26px 18px;
  }

  .form-actions{
    text-align: center;
  }
}

/* =============================
   Remove Border Radius (Client Request)
============================= */

/* 全体角丸を無効化 */
.card,
.shop-card,
.product-card,
.contact-card,
.reservation,
.contact-form-wrap,
input,
textarea,
button,
.btn,
.hero,
.hero::before {
  border-radius: 0 !important;
}

/* フォーム入力の雰囲気をフラットに */
.contact-form input,
.contact-form textarea{
  border-radius: 0 !important;
}

/* ボタンも完全フラット */
.btn,
button{
  border-radius: 0 !important;
}

/* カードの角丸も削除 */
.card,
.contact-card,
.shop-photo,
.shop-info{
  border-radius: 0 !important;
}

/* 影を少し弱めて“スクエア高級寄り”に */
.card,
.contact-card{
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =============================
   Square Premium Upgrade
============================= */

/* 線を細く・繊細に見せる */
.card,
.contact-card,
.shop-card,
.product-card,
.shop-photo,
.shop-info{
  border: 1px solid rgba(20,21,23,0.07);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

/* section区切りを上品に */
.section{
  border-top: 1px solid rgba(20,21,23,0.05);
}

/* タイトルを少し高級寄りに */
.section-title{
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ラベル文字も少し余白 */
.contact-form label{
  letter-spacing: 0.04em;
  font-size: 12px;
}

/* 入力欄をよりフラット上質に */
.contact-form input,
.contact-form textarea{
  border: 1px solid rgba(20,21,23,0.12);
  background: rgba(255,255,255,0.96);
  transition: border .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(202,160,106,0.8);
  box-shadow: 0 0 0 2px rgba(202,160,106,0.15);
}

/* =============================
   Premium Button (Gold Line)
============================= */

.btn.primary,
button.btn.primary{
  background: transparent;
  color: #1f5b57;
  border: 1px solid rgba(202,160,106,0.6);
  box-shadow: none;
  letter-spacing: 0.05em;
  transition: all .25s ease;
}

.btn.primary:hover{
  background: rgba(202,160,106,0.08);
  border-color: rgba(202,160,106,0.9);
}

/* フッターもシャープに */
.footer{
  border-top: 1px solid rgba(20,21,23,0.08);
}

/* Heroも丸ゼロ＆線で締める */
.hero{
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* =============================
   Business Overview (Bank-ready)
============================= */

.business-head{
  margin-bottom: 18px;
}

.business-lead{
  margin: 10px 0 0;
  color: rgba(20,21,23,0.70);
  line-height: 1.9;
}

.business-card{
  border: 1px solid rgba(20,21,23,0.08);
  background: rgba(255,255,255,0.78);
  padding: 20px;
}

.business-dl{
  margin: 0;
}

.business-dl .row{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,21,23,0.06);
}

.business-dl .row:last-child{
  border-bottom: none;
}

.business-dl dt{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(20,21,23,0.60);
}

.business-dl dd{
  margin: 0;
  color: rgba(20,21,23,0.86);
  line-height: 1.8;
}

@media (max-width: 900px){
  .business-dl .row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* =============================
   Hero: mobile height tuning
   (index / collection 共通)
   ※ iPhoneのvh問題対策で svh を使う
============================= */

@media (max-width: 768px){

  .hero{
    /* iOS Safari対策：svh（表示可能領域）を使う */
    min-height: 58svh;
    height: auto;

    /* 上はヘッダー分を確保しつつ、下を詰める */
    padding-top: 86px;
    padding-bottom: 18px;

    display: flex;
    align-items: center;
  }

  /* svh 非対応ブラウザ向けフォールバック */
  @supports not (height: 1svh){
    .hero{ min-height: 62vh; }
  }

  /* 余計な下余白が生まれないように */
  .hero .hero-inner{
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .hero h1, .hero-title{
    margin-bottom: 10px !important;
    line-height: 1.15;
  }

  .hero p, .hero-lead{
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }

  .hero .hero-actions,
  .hero .btn-group{
    margin-top: 10px !important;
    gap: 10px !important;
  }
}

/* =============================
   Shop Photos
============================= */

.shop-photo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 10px;
}

.shop-photo-item img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid rgba(20,21,23,0.08);
}

/* mobile */
@media (max-width: 768px){

  .shop-photo-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-photo-item img{
    height: auto;
  }

}