@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: #f2f2f2;
  color: #1a1a1a;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout-default {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px;
  background: #ffffff;
}

.layout-sidebar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
}

@media (max-width: 768px) {
  .layout-default {
    padding: 24px 12px;
  }
}
.topbar {
  background: #f2f2f2;
  border-bottom: 1px solid #ddd;
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
}
.logo:hover {
  opacity: 0.7;
  color: #0f9d58;
}

.top-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.top-nav a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.top-nav a:hover {
  color: #0f9d58;
}

.search-box {
  display: none;
  margin: 0 8px;
  position: relative;
}
@media (min-width: 768px) {
  .search-box {
    display: block;
    margin: 0 8px;
    max-width: 280px;
  }
}
@media (min-width: 1024px) {
  .search-box {
    display: block;
    margin: 0 16px;
    max-width: none;
  }
}

.search-box .search-form {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}

.search-box .search-input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding-right: 50px;
  min-width: 100px;
}
@media (min-width: 1024px) {
  .search-box .search-input {
    padding-right: 65px;
  }
}
.search-box .search-input:focus {
  outline: none;
  border-color: #0f9d58;
  box-shadow: 0 0 0 2px rgba(15, 157, 88, 0.1);
}
.search-box .search-input::placeholder {
  color: #999;
}

.search-box .search-btn {
  padding: 0 10px;
  background: #333;
  color: white;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .search-box .search-btn {
    width: 55px;
    padding: 0 12px;
  }
}
.search-box .search-btn:hover {
  background: #000;
}

/* mobile-only elements are OFF by default */
.nav-toggle {
  display: none;
}

.nav-icons {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .nav-icons {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
}
.mobile-menu.active {
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.mobile-search-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-top: 40px;
  width: 100%;
}

.mobile-search-box .search-form {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
}

.mobile-search-box .search-input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  padding-right: 60px;
  width: 100%;
}
.mobile-search-box .search-input:focus {
  outline: none;
  border-color: #0f9d58;
}
.mobile-search-box .search-input::placeholder {
  color: #999;
}

.mobile-search-box .search-btn {
  padding: 0 10px;
  background: #0f9d58;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-search-box .search-btn:hover {
  background: #0d8a48;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-nav a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
}
.mobile-menu-nav a:hover {
  color: #0f9d58;
}

.sidebar {
  padding-top: 6px;
}

.sidebar a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: #4a4a4a;
}

.sidebar a.active {
  font-weight: 600;
  color: #1a1a1a;
}

.sidebar a.active_category {
  text-decoration: underline;
  font-weight: 600;
}

.sidebar a:hover {
  color: #1a1a1a;
}

.content {
  min-width: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 44px;
  align-items: start;
}

.card {
  display: block;
}

.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #e6e6e6;
}

.card-title {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.footer {
  background: #111;
  color: #fff;
  padding: 56px 0;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.category-select {
  display: none;
  margin-bottom: 24px;
}

.category-select select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #fff;
}

.page-picture {
  display: block;
  max-width: none;
  padding: 0;
}

.page-picture .content {
  max-width: none;
}

/* image */
.picture-layout {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0px;
  align-items: start;
}

.picture-media img {
  width: 100%;
  height: auto;
  display: block;
  background: #e6e6e6;
}

/* info */
.picture-category {
  margin: 0px auto 8px;
}

.picture-category a {
  font-size: 13px;
  color: #0a7c5a;
  text-decoration: none;
}

.picture-category a:hover {
  text-decoration: underline;
}

.picture-info {
  padding-left: 32px;
  display: flex;
  flex-direction: column;
}

.picture-title {
  margin: 0px auto 32px auto;
  padding: 0 0px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: #111;
}

.picture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 24px auto;
  justify-content: center;
}

.tag-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #e8f5f1;
  color: #0a7c5a;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid #b8ddd2;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.tag-badge:hover {
  background: #0a7c5a;
  color: #fff;
  border-color: #0a7c5a;
  transform: translateY(-1px);
}

.picture-price-section {
  margin-bottom: 24px;
}

.price-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  margin-bottom: 6px;
  font-weight: 500;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  color: #0a7c5a;
  margin-bottom: 16px;
}

.sale-price-large {
  background: #f8f8f8;
  border: 1px solid #d0d0d0;
  border-radius: 6px 6px 0 0;
  padding: 16px 16px 12px;
  margin-bottom: 0;
  text-align: center;
  font-size: 42px;
  color: #0a7c5a;
}

.original-price {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.7;
}

.sale-price-box {
  background: #f8f8f8;
  border: 1px solid #d0d0d0;
  border-top: 1px dashed #b0b0b0;
  border-radius: 0 0 6px 6px;
  padding: 10px 16px 14px;
  margin-bottom: 12px;
  text-align: center;
}

.savings-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #e67e22;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 2px;
}

.regular-price {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.savings-info {
  font-size: 13px;
  color: #0a7c5a;
  font-weight: 600;
}

/* actions */
.picture-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-primary {
  background: #0a7c5a;
  color: #ffffff;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #085d42;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 124, 90, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 124, 90, 0.3);
}

.btn-large {
  padding: 18px 24px;
  font-size: 18px;
}

.secure-checkout {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

.btn-secondary {
  background: #ffffff;
  color: #0a7c5a;
  border: 1px solid #0a7c5a;
  padding: 14px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #0a7c5a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 124, 90, 0.3);
}
.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 124, 90, 0.2);
}

/* technical details */
.technical-details-heading {
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 12px;
  color: #111;
}

/* wishlist */
.picture-wishlist {
  margin-bottom: 32px;
  font-size: 13px;
}

.picture-wishlist a:hover {
  text-decoration: underline;
}

/* description */
.picture-description {
  padding-top: 24px;
}

.picture-description h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.picture-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* meta list */
.picture-meta {
  list-style: disc;
  padding-left: 18px;
  font-size: 13px;
  color: #555;
  margin-bottom: 24px;
}
.picture-meta strong {
  font-weight: 600;
}

.picture-meta li {
  margin-bottom: 6px;
}

/* note */
.picture-note {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
.picture-note strong {
  font-weight: 600;
}

/* share */
.picture-share {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.picture-share a:hover {
  text-decoration: underline;
}

/* related */
.related {
  margin: 80px auto 0;
  max-width: 916px;
}

.related h2 {
  font-size: 24px;
  margin-bottom: 32px;
}

/* tablet */
@media (max-width: 1024px) {
  .picture-layout {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
/* mobile */
@media (max-width: 640px) {
  .picture-layout {
    padding: 0;
    gap: 0px;
  }
  .picture-price {
    font-size: 16px;
  }
  .picture-price-section {
    margin-bottom: 12px;
  }
  .picture-description {
    padding-top: 12px;
  }
  .picture-tags {
    margin: 0 auto 12px auto;
  }
  .sale-price-large {
    font-size: 36px;
    line-height: 1em;
  }
  .original-price {
    display: inline-block;
    padding-right: 12px;
  }
}
@media (max-width: 1024px) {
  .picture-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .picture-info {
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .picture-title {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .topbar-inner {
    height: 64px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 40px 1fr 60px;
    align-items: center;
  }
  .logo {
    text-align: center;
    font-size: 18px;
  }
  .top-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: 0;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-icons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font-size: 18px;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 24px;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: 0;
    font-size: 28px;
    margin-bottom: 32px;
    cursor: pointer;
  }
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 20px;
  }
}
.payment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}
.payment-modal.active {
  display: block;
}

.payment-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.payment-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: 5vh auto;
  padding: 40px;
}
@media (max-width: 768px) {
  .payment-modal-content {
    width: 95%;
    padding: 24px;
    margin: 2vh auto;
  }
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  transition: color 0.2s;
}
.payment-modal-close:hover {
  color: #333;
}

.payment-product-header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.payment-product-info-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-product-title-compact {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}

.payment-product-price-compact {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.payment-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.payment-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.payment-step.active {
  opacity: 1;
}
.payment-step.completed {
  opacity: 1;
}
.payment-step .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s;
}
.payment-step.active .step-number {
  background: #2563eb;
  color: white;
}
.payment-step.completed .step-number {
  background: #0f9d58;
  color: white;
}
.payment-step.completed .step-number::after {
  content: "✓";
  font-size: 16px;
}
.payment-step.completed .step-number span {
  display: none;
}
.payment-step .step-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
@media (max-width: 480px) {
  .payment-step .step-label {
    display: none;
  }
}

.payment-step-container {
  display: none;
}
.payment-step-container.active {
  display: block;
}

.payment-continue-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  background: #0f9d58;
  color: white;
}
.payment-continue-btn:hover {
  background: #0c7d46;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 157, 88, 0.3);
}
.payment-continue-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(15, 157, 88, 0.2);
}

.payment-messages {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  display: none;
}
.payment-messages.success {
  display: block;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.payment-messages.error {
  display: block;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.payment-customer-info {
  margin-bottom: 32px;
}

.payment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .payment-form-row {
    grid-template-columns: 1fr;
  }
}

.payment-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
}
.payment-form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.payment-form-field input:focus {
  outline: none;
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}
.payment-form-field input:invalid {
  box-shadow: none;
}
.payment-form-field small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}
.payment-form-field.has-error input {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.payment-field-error {
  display: none;
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
}

.payment-terms-field {
  margin: 20px 0;
}
.payment-terms-field .payment-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.payment-terms-field .payment-checkbox-label input[type=checkbox] {
  margin-top: 3px;
  width: auto;
  cursor: pointer;
}
.payment-terms-field .payment-checkbox-label span {
  flex: 1;
}
.payment-terms-field .payment-checkbox-label span a {
  color: #c41e3a;
  text-decoration: underline;
}
.payment-terms-field .payment-checkbox-label span a:hover {
  color: #a01629;
}
.payment-terms-field.has-error .payment-checkbox-label {
  color: #dc3545;
}

.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid #e0e0e0;
}

.payment-tab {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.payment-tab:hover {
  color: #222;
}
.payment-tab.active {
  color: #c41e3a;
}
.payment-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #c41e3a;
}

.payment-panel {
  display: none;
}
.payment-panel.active {
  display: block;
}

.stripe-card-element {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stripe-card-element:focus-within {
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

#stripe-card-errors {
  font-size: 14px;
  color: #dc3545;
  margin-bottom: 16px;
  min-height: 20px;
}

#card-element {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  margin-bottom: 12px;
}

#card-errors {
  font-size: 14px;
  color: #dc3545;
  margin-bottom: 16px;
  min-height: 20px;
}

#paypal-button-container {
  margin-top: 16px;
  position: relative;
  z-index: 5;
}

.payment-step-container[data-step-content="2"] {
  position: relative;
  z-index: 4;
}

.payment-submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: #0f9d58;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.payment-submit-btn:hover:not(:disabled) {
  background: #0c7d46;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 157, 88, 0.4);
}
.payment-submit-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(15, 157, 88, 0.3);
}
.payment-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.payment-btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.payment-processing {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 10;
}
.payment-processing .payment-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f0f0f0;
  border-top-color: #c41e3a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.cookie-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 9998;
  backdrop-filter: blur(2px);
  display: none;
}

.cookie-consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  background: #111827;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 16px;
  display: none;
}
.cookie-consent .cookie-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-consent .cookie-text {
  max-width: 720px;
}
.cookie-consent .cookie-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-consent .cookie-text p {
  margin: 0 0 6px;
  color: #e5e7eb;
}
.cookie-consent .cookie-text .cookie-link {
  color: #93c5fd;
  text-decoration: underline;
}
.cookie-consent .cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-consent .btn {
  min-width: 200px;
  border: none;
  border-radius: 8px;
  padding: 24px 14px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 6px auto;
}
.cookie-consent .btn-primary {
  background: #0a7a3e;
  color: #fff;
}
.cookie-consent .btn-primary:hover {
  background: #096933;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 157, 88, 0.3);
}
.cookie-consent .btn-primary:active {
  transform: translateY(0);
}
.cookie-consent .btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #374151;
}
.cookie-consent .btn-outline:hover {
  background: #374151;
  border-color: #4b5563;
  transform: translateY(-1px);
}
.cookie-consent .btn-outline:active {
  transform: translateY(0);
}
.cookie-consent .cookie-settings {
  margin-top: 12px;
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 12px 16px;
}
.cookie-consent .cookie-settings .cookie-settings-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.cookie-consent .cookie-settings label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cookie-consent {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .cookie-consent .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-consent .cookie-text strong {
    font-size: 15px;
  }
  .cookie-consent .cookie-text p {
    font-size: 14px;
  }
  .cookie-consent .cookie-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent .btn {
    width: 100%;
  }
  .cookie-consent .cookie-settings .cookie-settings-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .cookie-consent .cookie-settings .cookie-settings-actions {
    width: 100%;
  }
  .cookie-consent .cookie-settings .cookie-settings-actions .btn {
    width: 100%;
  }
}

.page-search {
  min-height: calc(100vh - 300px);
  padding: 60px 24px;
}

.search-container {
  max-width: 900px;
  margin: 0 auto;
}

.search-header {
  text-align: center;
  margin-bottom: 60px;
}

.search-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.search-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.search-form-wrapper {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-input-wrapper {
  display: flex;
  gap: 8px;
}

.search-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input:focus {
  outline: none;
  border-color: #0f9d58;
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.1);
}
.search-input::placeholder {
  color: #999;
}

.search-button,
.search-btn {
  padding: 14px 24px;
  background: #0f9d58;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.search-button:hover,
.search-btn:hover {
  background: #0c7d46;
  transform: translateY(-1px);
}
.search-button:active,
.search-btn:active {
  transform: translateY(0);
}

.search-filters {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  user-select: none;
}
.filter-checkbox input {
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.filter-checkbox:hover {
  color: #0f9d58;
}

.search-results {
  margin-top: 40px;
}

.results-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.results-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.results-count {
  font-size: 14px;
  color: #999;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.result-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.result-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.result-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.result-card h3 {
  font-size: 16px;
  padding: 16px;
  margin: 0;
  color: #1a1a1a;
  font-weight: 600;
}
.result-card .result-price {
  font-size: 18px;
  font-weight: bold;
  color: #0f9d58;
  padding: 0 16px 16px;
  margin: 0;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-icon {
  font-size: 72px;
  margin-bottom: 24px;
  display: block;
}

.empty-state h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.empty-state p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}
.empty-state p a {
  color: #0f9d58;
  text-decoration: none;
}
.empty-state p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-search {
    padding: 40px 16px;
  }
  .search-header h1 {
    font-size: 28px;
  }
  .search-form-wrapper {
    padding: 24px;
  }
  .search-input-wrapper {
    flex-direction: column;
  }
  .search-filters {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
  .empty-icon {
    font-size: 48px;
  }
  .empty-state h2 {
    font-size: 20px;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-size: 14px;
  color: #666;
}

.breadcrumb-link {
  color: #0a7c5a;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-link:hover {
  color: #085d42;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #999;
  user-select: none;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 13px;
    padding: 12px 0;
  }
}
.blog {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.blog__header {
  margin-bottom: 48px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.blog__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  margin: 0 auto;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.blog__title {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.blog__lede {
  margin: 0;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.blog__grid {
  display: grid;
  gap: 24px;
}

.blog-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4caf50 0%, #2e7d32 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #d0d0d0;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card__location {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #2e7d32;
}

.blog-card__title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card__title a:hover {
  color: #2e7d32;
}

.blog-card__meta {
  margin: 0 0 14px 0;
  color: #595959;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-card__description {
  margin: 0 0 20px 0;
  color: #333;
  line-height: 1.7;
  font-size: 15px;
}

.blog-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blog__empty {
  text-align: center;
  padding: 24px;
  border: 1px dashed #c7c7c7;
  border-radius: 12px;
  color: #6a6a6a;
}

.blog-post {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.blog-post__location {
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #2e7d32;
}

.blog-post__title {
  margin: 0 0 8px 0;
  font-size: 36px;
}

.blog-post__meta {
  margin: 0 0 18px 0;
  color: #4a4a4a;
}

.blog-post__body h1,
.blog-post__body h2,
.blog-post__body h3,
.blog-post__body h4,
.blog-post__body h5,
.blog-post__body h6 {
  font-weight: 600;
  margin: 1.5em 0 0.7em 0;
  line-height: 1.2;
}
.blog-post__body h2 {
  font-size: 1.5em;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.2em;
  margin-top: 2em;
}
.blog-post__body p {
  font-size: 1.08em;
  line-height: 1.7;
  margin: 1em 0;
  color: #222;
}
.blog-post__body strong {
  font-weight: bold;
  color: #1a1a1a;
}
.blog-post__body .blog-post__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
  text-align: center;
}
.blog-post__body .blog-post__images img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: block;
  margin: auto;
}
.blog-post__body .blog-post__images a {
  display: block;
  text-align: center;
  margin-bottom: 0.5em;
}
.blog-post__body figure {
  text-align: center;
}
.blog-post__body figcaption {
  display: block;
  text-align: center;
  font-style: italic;
  font-size: 0.95em;
  color: #666;
  margin-top: 0.5em;
}
.blog-post__body figcaption a,
.blog-post__body figcaption span {
  display: inline-block !important;
  margin: 0 4px;
}
.blog-post__body figcaption a {
  color: inherit;
  text-decoration: none;
}
.blog-post__body figcaption a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: #2e7d32;
  color: #fff;
  border-color: #2e7d32;
}

.btn--primary:hover {
  background: #256628;
}

.btn--ghost {
  background: #fff;
  color: #2e7d32;
  border-color: #2e7d32;
}

.btn--ghost:hover {
  background: #f3fbf4;
}

@media (max-width: 768px) {
  .blog,
  .blog-post {
    padding: 32px 0 56px;
  }
  .blog__title {
    font-size: 26px;
  }
  .blog-post__title {
    font-size: 28px;
  }
  .blog-post__body p {
    font-size: 1em;
  }
}
/* contact layout */
.contact {
  padding: 60px 20px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-info p {
  color: #555;
  line-height: 1.6;
}

/* author section */
.author {
  background: #0e0e0e;
  color: #fff;
  padding: 60px 20px;
}

.author-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}

.author-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.author-content h3 {
  margin-bottom: 12px;
}

.author-content p {
  color: #ccc;
  line-height: 1.6;
  max-width: 700px;
}

.follow-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #3b4cc0;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.follow-btn:hover {
  background: #2f3fa6;
}

/* responsive */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .author-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-photo {
    margin-bottom: 20px;
  }
}
/* form fields */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.contact-form .field.has-error input,
.contact-form .field.has-error textarea {
  border-color: #dc3545;
}

.field-error {
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
}

.contact-form label {
  font-size: 14px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 14px;
  background: transparent;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f7c5c;
}

.contact-form .submit-btn {
  margin-top: 20px;
  align-self: flex-start;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  background: #4f7c5c;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-form .submit-btn:hover:not(:disabled) {
  background: #3d5e47;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 124, 92, 0.3);
}
.contact-form .submit-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(79, 124, 92, 0.2);
}
.contact-form .submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-messages {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  display: none;
}

.form-messages.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-messages.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* captcha field */
.captcha-field {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.captcha-field label {
  font-weight: 600;
  color: #333;
}

.captcha-field input {
  max-width: 120px;
}

/* responsive */
@media (max-width: 600px) {
  .contact-form .row {
    grid-template-columns: 1fr;
  }
}
.page-terms .terms {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px;
  line-height: 1.7;
  color: #333;
}
.page-terms .terms .terms-header {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-terms .terms .terms-header h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}
.page-terms .terms .terms-header .last-updated {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
}
.page-terms .terms .license-summary {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.page-terms .terms .license-summary h2 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 600;
}
.page-terms .terms .license-summary .summary-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.page-terms .terms .license-summary .summary-list li {
  position: relative;
  padding-left: 22px;
}
.page-terms .terms .license-summary .summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f9d58;
  font-weight: 700;
}
.page-terms .terms .license-summary .summary-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}
.page-terms .terms h1 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
}
.page-terms .terms p:last-of-type {
  margin-bottom: 0;
}
.page-terms .terms h2 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #111;
}
.page-terms .terms ul {
  padding-left: 20px;
  margin: 12px 0 16px;
}
.page-terms .terms ul li {
  margin: 6px 0;
}
.page-terms .terms section + section,
.page-terms .terms h2 + p,
.page-terms .terms h2 + ul {
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.page-terms .terms a {
  color: #0f9d58;
  text-decoration: none;
}
.page-terms .terms a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .page-terms .terms {
    padding: 20px 16px;
    font-size: 15px;
  }
  .page-terms .terms .terms-header {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .page-terms .terms .terms-header h1 {
    font-size: 18px;
  }
  .page-terms .terms .terms-header .last-updated {
    font-size: 12px;
  }
  .page-terms .terms .license-summary {
    padding: 12px 16px;
  }
  .page-terms .terms .license-summary h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .page-terms .terms .license-summary .summary-list {
    gap: 8px;
  }
  .page-terms .terms .license-summary .summary-list li {
    font-size: 14px;
  }
  .page-terms .terms .license-summary .summary-note {
    font-size: 11px;
    margin-top: 8px;
  }
  .page-terms .terms h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .page-terms .terms h2 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
  }
  .page-terms .terms p, .page-terms .terms li {
    font-size: 14px;
  }
  .page-terms .terms ul {
    padding-left: 16px;
    margin: 10px 0 14px;
  }
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 640px) {
  .layout-sidebar {
    grid-template-columns: 1fr;
    padding: 24px 16px 60px;
    gap: 0;
  }
  .page {
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 24px;
  }
  .sidebar {
    display: none;
  }
  .category-select {
    display: block;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hamburger {
    display: block;
  }
  .top-nav .nav-desktop {
    display: none;
  }
  .top-nav .nav-icon {
    display: inline-block;
  }
  .top-nav .nav-icon:hover {
    text-decoration: underline;
  }
}
.nav-icon {
  display: none;
}