/* =============================
   GLOBAL BASE
============================= */

body {
  margin: 0;
  font-family: "Raleway", system-ui, sans-serif;
  background: #111;
  color: #eee;
  line-height: 1.6;
}

h1 {
  text-align: center;
  font-family: "Rozha One", serif;
  letter-spacing: 0.15em;
  margin: 4rem 0 2rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-family: "Rozha One", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

section {
  padding: 4rem 6vw;
}

.gallery-section {
  max-width: 1400px;
  margin: 0 auto 6rem;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.portfolio {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.Portfolio-Images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.displayed-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}

.portfolio button.prev,
.portfolio button.next {
  background: none;
  border: none;
  color: #eee;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.portfolio button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.thumbnails {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumbnails::-webkit-scrollbar {
  height: 6px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.thumb {
  height: 70px;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.thumb:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.thumb.active {
  opacity: 1;
  outline: 2px solid #fff;
}



.find-photos h2 {
font-family: "Limelight", sans-serif;
  font-weight: 400;
  color:#fbb831; 
  text-align: center;
  padding: 0px;
  margin-left: 0px;
}

.find-photos p {
   font-family: "Cutive Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  color: #ccc;
  text-align: center;
}

#look-for {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  letter-spacing: 0.15em;
  transition: background 0.3s ease, color 0.3s ease;
}

#look-for:hover {
  background: #fff;
  color: #111;
}



#prices {
  max-width: 900px;
  margin: 0 auto 6rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Cutive Mono", monospace;
}

th, td {
  padding: 1rem;
  border-bottom: 1px solid #333;

}

th {
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fbb831; 
  font-size: 16pt;
}

td:last-child {
  text-align: right;
}

thead th {
  border-bottom: 2px solid #555;
}

tbody th {
  background: #1a1a1a;
  text-transform: uppercase;
}

tbody p {
  font-size: 0.75rem;
  color: #aaa;
  margin: 0.25rem 0 0;
}
/* =============================
   SHOP TWO-COLUMN LAYOUT
============================= */

.shop-layout {
  max-width: 1600px;
  margin: 0 auto 6rem;
  padding: 0 10vw;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 2fr);
  gap: 2rem;
  align-items: start;
}

/* LEFT COLUMN */
.shop-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* RIGHT COLUMN */
.shop-right {
  position: sticky;
  top: 3rem;
}

.designshop-layout{
  max-width: 1000px;
  margin: 0 auto 6rem;
}

/* =============================
   FIND PHOTOS BLOCK
============================= */

.find-photos {
  max-width: 900px;
  margin-bottom: 10px;
}

.find-photos img {
  width: 100%;
  margin-bottom: 1.5rem;
}

/* =============================
   GALLERY TUNING
============================= */

.gallery-section {
  margin-bottom: 1rem;
}

.portfolio {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.displayed-img {
  max-height: 55vh;
}

/* Thumbnails tighter + cleaner */
.thumbnails {
  justify-content: center;
  gap: 0.5rem;
}

/* =============================
   PRICE TABLE POLISH
============================= */

#prices {
  background: #0e0e0e;
  padding: 2.5rem;
  border: 1px solid #222;
  border-radius: 6px;
}

#prices table {
  font-size: 0.95rem;
}

/* =============================
   RESPONSIVE
============================= */

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

  .shop-right {
    position: relative;
    top: auto;
  }
}


