@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&family=Droid+Serif:wght@400;700&family=Open+Sans+Condensed:wght@300;700&display=swap');

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 62.5%; }

body {
  font-family: 'PT Sans Narrow', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1.4rem;
  line-height: 1.65;
  color: #555;
  background: #fff;
  margin: 0; padding: 0;
}

a { color: #6ab0b0; text-decoration: none; transition: color .2s; }
a:hover { color: #4a9090; }

img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1.4rem; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 1.25;
  margin: 0 0 1rem;
}

/* ============================================================
   2. 16-COLUMN GRID
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.container::after { content: ''; display: table; clear: both; }

/* All column types */
[class*=" columns"],
[class^="columns"] {
  float: left;
  margin-left: 2%;
}

.one.columns    { width: 4.25%; }
.two.columns    { width: 10.5%; }
.three.columns  { width: 17%; }
.four.columns   { width: 23.25%; }
.five.columns   { width: 29.5%; }
.six.columns    { width: 35.75%; }
.seven.columns  { width: 42%; }
.eight.columns  { width: 48.25%; }
.nine.columns   { width: 54.5%; }
.ten.columns    { width: 60.75%; }
.eleven.columns { width: 67%; }
.twelve.columns { width: 73.25%; }
.thirteen.columns{ width: 79.5%; }
.fourteen.columns{ width: 85.75%; }
.fifteen.columns{ width: 92%; }
.sixteen.columns{ width: 100%; margin-left: 0; }

.alpha { margin-left: 0; }
.omega { /* last column, no special margin needed */ }

.clearfix::after,
.clearfix::before { content: ''; display: table; }
.clearfix::after  { clear: both; }

/* ============================================================
   3. TOP BAR
   ============================================================ */
.top_bar {
  background: #3c3c3c;
  padding: .8rem 0;
  font-size: 1.2rem;
}

/* Search */
.top_bar_search { display: flex; align-items: center; }
.search { display: flex; align-items: center; position: relative; }
.search_box {
  width: 100%;
  padding: .55rem 1.2rem .55rem 3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #ddd;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.25rem;
  outline: none;
  transition: background .2s, border-color .2s;
}
.search_box::placeholder { color: rgba(255,255,255,.45); }
.search_box:focus {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}
/* Magnifier icon via CSS */
.search::before {
  content: '🔍';
  position: absolute;
  left: .8rem;
  font-size: 1.1rem;
  opacity: .5;
  pointer-events: none;
}

/* Top-right utility links */
.top_bar .twelve.columns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top_bar .twelve.columns ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.top_bar .twelve.columns ul li { display: inline-block; }
.top_bar .twelve.columns ul li a {
  display: block;
  padding: 0 1.4rem;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  border-right: 1px solid rgba(255,255,255,.12);
}
.top_bar .twelve.columns ul li:last-child a { border-right: none; }
.top_bar .twelve.columns ul li a:hover { color: #fff; }
.top_bar .twelve.columns ul li a.cart { color: rgba(255,255,255,.85); }

/* ============================================================
   4. LOGO
   ============================================================ */
.content { padding-top: 2rem; }

.logo {
  text-align: center;
  padding: 2.5rem 0 1.8rem;
}
.logo a { display: inline-block; }
.logo img {
  max-height: 8rem;
  width: auto;
  margin: 0 auto;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
#nav {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 100;
  background: #fff;
}

#menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
}

#menu > li { position: relative; }

#menu > li > a {
  display: block;
  padding: 1.3rem 2rem;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
  border-right: 1px solid #e8e8e8;
}
#menu > li:first-child > a { border-left: 1px solid #e8e8e8; }

#menu > li > a:hover,
#menu > li > a.active { color: #6ab0b0; }

/* Active underline */
#menu > li > a.active {
  border-bottom: 2px solid #6ab0b0;
}

/* Dropdown arrow */
.arrow {
  font-size: 1rem;
  color: #bbb;
  margin-left: .3rem;
  vertical-align: middle;
  line-height: 1;
}

/* Dropdown sub-menu */
#menu > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 20rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 2px solid #6ab0b0;
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
  z-index: 200;
  padding: .5rem 0;
  list-style: none;
}
#menu > li:hover > ul { display: block; }

#menu > li > ul > li > a {
  display: block;
  padding: .9rem 1.8rem;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  color: #555;
  text-decoration: none;
  transition: background .15s, color .15s;
  border-bottom: 1px solid #f5f5f5;
}
#menu > li > ul > li:last-child > a { border-bottom: none; }
#menu > li > ul > li > a:hover { background: #f9f9f9; color: #6ab0b0; }

/* ============================================================
   6. HERO SLIDER
   ============================================================ */
.section { margin-bottom: 2rem; }

.flexslider {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #eee;
}

.flexslider .slides { list-style: none; margin: 0; padding: 0; }

.flexslider .slides li { position: relative; }

.flexslider .slides li a { display: block; }
.flexslider .slides li img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   7. PRODUCT GRID (generic, used on collection pages)
   ============================================================ */
.product-grid { display: flex; flex-wrap: wrap; margin: 0 -1.5rem; }
.product-item {
  width: calc(25% - 3rem);
  margin: 0 1.5rem 3rem;
}
.product-item img {
  width: 100%;
  border: 1px solid #eee;
  transition: opacity .2s;
}
.product-item:hover img { opacity: .85; }
.product-item h4 {
  font-size: 1.35rem;
  color: #3c3c3c;
  margin: .8rem 0 .3rem;
}
.product-item .price {
  font-family: 'Droid Serif', Georgia, serif;
  font-size: 1.3rem;
  color: #6ab0b0;
  font-weight: 700;
}
.product-item .compare-price {
  font-size: 1.2rem;
  color: #bbb;
  text-decoration: line-through;
  margin-left: .5rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: .25rem .7rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: .5rem;
}
.badge-sale { background: #e87a8a; color: #fff; }
.badge-new  { background: #6ab0b0; color: #fff; }

/* Add to cart button */
.btn-cart {
  display: block;
  width: 100%;
  padding: .9rem;
  margin-top: 1rem;
  background: #6ab0b0;
  border: none; color: #fff;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background .2s;
}
.btn-cart:hover { background: #4a9090; color: #fff; }

/* ============================================================
   8. BUTTONS (generic)
   ============================================================ */
.btn,
input[type="submit"],
button[type="submit"],
.submit {
  display: inline-block;
  padding: .8rem 2rem;
  background: #3c3c3c;
  border: none; color: #fff;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.btn:hover,
input[type="submit"]:hover,
.submit:hover { background: #555; color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid #3c3c3c;
  color: #3c3c3c;
}
.btn-outline:hover { background: #3c3c3c; color: #fff; }

/* ============================================================
   9. FOOTER
   ============================================================ */
.footer {
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
  padding: 4rem 0 2.5rem;
  margin-top: 4rem;
  clear: both;
}

/* Footer headings */
.footer h6 {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #3c3c3c;
  margin-bottom: 1.5rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid #ddd;
}
.footer h6.social { margin-top: 2.5rem; }

/* Footer nav links */
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .7rem; }
.footer ul li a {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.35rem;
  color: #6ab0b0;
  text-decoration: none;
  transition: color .2s;
}
.footer ul li a:hover { color: #4a9090; }
.footer ul li:not(:has(a)) {
  font-size: 1.35rem;
  color: #999;
}

/* Newsletter form */
.contact-form {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.contact-form input[type="email"],
.contact-form .required.email {
  flex: 1;
  min-width: 16rem;
  padding: .75rem 1.2rem;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.3rem;
  color: #555;
  outline: none;
  transition: border-color .2s;
}
.contact-form input[type="email"]:focus { border-color: #6ab0b0; }

.contact-form input[type="submit"],
.contact-form .submit,
#mc-embedded-subscribe {
  padding: .75rem 1.8rem;
  background: #6ab0b0;
  border: none; color: #fff;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.contact-form input[type="submit"]:hover,
#mc-embedded-subscribe:hover { background: #4a9090; }

/* Social icons */
.footer .six.columns img {
  display: inline-block;
  width: 3.6rem; height: 3.6rem;
  margin-right: .6rem;
  opacity: .65;
  transition: opacity .2s;
  vertical-align: middle;
  cursor: pointer;
}
.footer .six.columns img:hover { opacity: 1; }

/* Payment methods */
.payment_methods { min-height: 3rem; }

/* Copyright */
.credits.center {
  text-align: center;
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  clear: both;
}

/* ============================================================
   10. PAGE-LEVEL CONTENT (collections, about, etc.)
   ============================================================ */

/* Collection header */
.collection-header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.collection-header h1 {
  font-size: 2.8rem;
  color: #3c3c3c;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 300;
  letter-spacing: .05em;
}
.collection-header p {
  font-family: 'Droid Serif', Georgia, serif;
  font-size: 1.45rem;
  color: #888;
  max-width: 60rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 1.25rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: #6ab0b0; }
.breadcrumb span { margin: 0 .5rem; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin: 3rem 0;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem; height: 3.4rem;
  padding: 0 .8rem;
  border: 1px solid #ddd;
  font-size: 1.3rem;
  color: #555;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.pagination a:hover,
.pagination .current {
  background: #6ab0b0;
  border-color: #6ab0b0;
  color: #fff;
}

/* ============================================================
   11. PRODUCT PAGE
   ============================================================ */
.product-image-main {
  width: 100%;
  border: 1px solid #eee;
  margin-bottom: 1rem;
}
.product-thumbs { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.product-thumbs img {
  width: 7rem; height: 7rem;
  object-fit: cover;
  border: 1px solid #eee;
  cursor: pointer;
  transition: border-color .2s;
}
.product-thumbs img:hover,
.product-thumbs img.active { border-color: #6ab0b0; }

.product-title {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: #3c3c3c;
  margin-bottom: .5rem;
}
.product-price {
  font-family: 'Droid Serif', Georgia, serif;
  font-size: 2rem;
  color: #6ab0b0;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-description {
  font-family: 'Droid Serif', Georgia, serif;
  font-size: 1.45rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Variant selector */
.variant-select {
  margin-bottom: 1.5rem;
}
.variant-select label {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  color: #555;
}
.variant-select select {
  width: 100%;
  padding: .8rem 1.2rem;
  border: 1px solid #ddd;
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.4rem;
  color: #555;
  background: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23999' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.variant-select select:focus { border-color: #6ab0b0; }

/* Qty + Add to cart row */
.add-to-cart-row { display: flex; gap: 1rem; align-items: flex-start; }
.qty-input {
  width: 6rem;
  padding: .85rem;
  border: 1px solid #ddd;
  font-size: 1.4rem;
  text-align: center;
  outline: none;
}
.qty-input:focus { border-color: #6ab0b0; }

/* ============================================================
   12. CART PAGE
   ============================================================ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888;
  padding: 1rem 0;
  border-bottom: 2px solid #eee;
  text-align: left;
}
.cart-table td {
  padding: 1.5rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 1.4rem;
  vertical-align: middle;
}
.cart-table td img { width: 7rem; border: 1px solid #eee; }
.cart-table .cart-total { font-weight: 700; color: #3c3c3c; }

.cart-summary {
  margin-top: 2rem;
  text-align: right;
}
.cart-summary .subtotal {
  font-family: 'Droid Serif', Georgia, serif;
  font-size: 2rem;
  color: #6ab0b0;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ============================================================
   13. FORMS (contact, etc.)
   ============================================================ */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: .5rem;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: .9rem 1.2rem;
  border: 1px solid #ddd;
  font-family: 'Droid Serif', Georgia, serif;
  font-size: 1.35rem;
  color: #444;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #6ab0b0; }
.form-group textarea { min-height: 12rem; resize: vertical; }

/* ============================================================
   14. MESSAGES / NOTICES
   ============================================================ */
.notice, .flash {
  padding: 1.2rem 1.8rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  border-left: 4px solid;
}
.notice-success { background: #f0f9f6; border-color: #6ab0b0; color: #2b7a79; }
.notice-error   { background: #fff5f5; border-color: #e87a8a; color: #c0392b; }
.notice-info    { background: #f5f9ff; border-color: #a0c4e8; color: #2a6090; }

/* ============================================================
   15. RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .five.columns  { width: 100%; float: none; margin-left: 0; margin-bottom: 2rem; }
  .six.columns   { width: 100%; float: none; margin-left: 0; margin-bottom: 2rem; }
  .four.columns  { width: 100%; float: none; margin-left: 0; }
  .twelve.columns { width: 100%; float: none; margin-left: 0; }
  .product-item { width: calc(33.333% - 3rem); }
}

@media (max-width: 768px) {
  /* Nav: collapse to hamburger concept */
  #nav { overflow-x: auto; }
  #menu { justify-content: flex-start; }
  #menu > li > a { padding: 1.1rem 1.4rem; font-size: 1.15rem; }
  #menu > li > ul { display: none !important; } /* dropdowns hidden on mobile */

  .top_bar .container { flex-wrap: wrap; }
  .top_bar .four.columns { width: 100%; float: none; margin-bottom: .5rem; }
  .top_bar .twelve.columns { width: 100%; float: none; }

  .logo img { max-height: 6rem; }

  .product-item { width: calc(50% - 3rem); }

  .contact-form { flex-direction: column; }
  .contact-form input[type="email"] { min-width: 0; }
}

@media (max-width: 480px) {
  #menu > li > a { padding: .9rem 1rem; font-size: 1.1rem; }
  .product-item { width: 100%; margin: 0 0 2rem; }
  .logo img { max-height: 4.5rem; }
  .footer h6 { font-size: 1.1rem; }
}

/* ============================================================
   END OF STYLESHEET
   ============================================================ */