/** Shopify CDN: Minification failed

Line 332:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.about-section {
  padding: 8rem 0;
  background: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  max-width: 600px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.about-description {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon {
  font-size: 2rem;
  margin-top: 0.5rem;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.about-hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 1.2rem;
  font-weight: 300;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .feature {
    gap: 1rem;
  }
  
  .feature h3 {
    font-size: 1.2rem;
  }
  
  .feature p {
    font-size: 0.95rem;
  }
}
.collection-preview {
  padding: 8rem 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.collection-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-item.featured {
  grid-column: span 1;
  grid-row: span 1;
}

.item-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 1rem;
  font-weight: 300;
}

.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-item:hover .item-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #2c2c2c;
}

.overlay-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c2c2c;
  font-weight: 400;
}

.overlay-content p {
  color: #666666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #2c2c2c;
}

.collection-cta {
  text-align: center;
}

.view-all-button {
  display: inline-block;
  padding: 18px 40px;
  background: #2c2c2c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 400;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #2c2c2c;
}

.view-all-button:hover {
  background: transparent;
  color: #2c2c2c;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .collection-preview {
    padding: 5rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .item-image {
    height: 300px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Collection Page Styles - Updated */
.collection-page {
  padding: 120px 0 80px 0;
  background: #f5f5f5;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Collection Header */
.collection-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.collection-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.collection-description {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  font-weight: 300;
}

.collection-count {
  font-size: 1rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

/* Products Grid */
.collection-products {
  margin-bottom: 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Product Cards */
.product-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.4s ease;
  position: relative;
  border: none;
  backdrop-filter: blur(0px);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image-wrapper {
  position: relative;
  height: 0;
  padding-bottom: 100%; /* Creates 1:1 aspect ratio for square */
  overflow: visible;
  background: #f5f5f5;
  border-radius: 0;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  border-radius: 0;
  opacity: 1;
  mix-blend-mode: normal;
  filter: contrast(1.02) brightness(1.01);
}

.product-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #f2f2f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 1rem;
  font-weight: 300;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.9);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.overlay-content .view-product {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 30px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.overlay-content .view-product:hover {
  background: #ffffff;
  color: #2c2c2c;
}

/* Product Info */
.product-info {
  padding: 1rem 1rem 0.8rem 1rem;
  text-align: center;
  background: transparent;
  border-radius: 0;
}

.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.product-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.price-regular {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c2c2c;
}

.price-sale {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #e74c3c;
}

.price-compare {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #999999;
  text-decoration: line-through;
  font-weight: 400;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.pagination {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pagination a,
.pagination span {
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  color: #2c2c2c;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.pagination a:hover {
  background: #2c2c2c;
  color: #ffffff;
  border-color: #2c2c2c;
}

.pagination .current {
  background: #2c2c2c;
  color: #ffffff;
  border-color: #2c2c2c;
}

/* Empty Collection */
.empty-collection {
  text-align: center;
  padding: 4rem 0;
}

.empty-collection h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.empty-collection p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 300;
}

.return-home {
  display: inline-block;
  padding: 18px 35px;
  background: #2c2c2c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 400;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.return-home:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .collection-page {
    padding: 100px 0 60px 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .collection-header {
    margin-bottom: 3rem;
  }
  
  .collection-title {
    font-size: 2.5rem;
  }
  
  .collection-description {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .product-image-wrapper {
    /* Maintains square aspect ratio on mobile */
  }
  
  .product-info {
    padding: 1rem 1rem 0.8rem 1rem;
  }
  
  .product-title {
    font-size: 1.2rem;
  }
  
  .overlay-content .view-product {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .collection-title {
    font-size: 2rem;
  }
  
  .product-price {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.contact-section {
  padding: 8rem 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-form {
  background: #fafafa;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-element {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c2c2c;
  box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  padding: 18px 40px;
  background: #2c2c2c;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
}

.submit-button:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fafafa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

.info-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.info-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.info-content p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 5rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
  }
  
  .submit-button {
    padding: 15px 30px;
    font-size: 0.9rem;
  }
  
  .info-item {
    padding: 1rem;
    gap: 1rem;
  }
  
  .info-content h3 {
    font-size: 1.1rem;
  }
  
  .info-content p {
    font-size: 0.9rem;
  }
}
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.footer {
  background: #2c2c2c;
  color: #ffffff;
  padding: 3rem 0 2rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-links {
    gap: 2rem;
    justify-content: center;
  }
  
  .footer-logo .logo-text {
    font-size: 1.5rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
}
.header {
  background: #ffffff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo .logo-link {
  text-decoration: none;
  color: #2c2c2c;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #2c2c2c;
  letter-spacing: 2px;
}

.header-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #666666;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2c2c2c;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.cart-link {
  text-decoration: none;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  background: #2c2c2c;
  color: #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    gap: 2rem;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
}
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 400;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: #2c2c2c;
  color: #ffffff;
  border: 1px solid #2c2c2c;
}

.cta-button.primary:hover {
  background: transparent;
  color: #2c2c2c;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: #2c2c2c;
  border: 1px solid #2c2c2c;
}

.cta-button.secondary:hover {
  background: #2c2c2c;
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.simple-rect-frame {
  width: 500px;
  height: 600px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.simple-rect-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.frame-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.frame-image:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .simple-rect-frame {
    width: 350px;
    height: 450px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}
/* Product Page Styles */
.product-page {
  padding: 120px 0 80px 0;
  background: #ffffff;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}

/* Product Images Section */
.product-images-section {
  position: sticky;
  top: 140px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.main-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.main-image:hover::before {
  opacity: 1;
}

.featured-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s ease;
}

.thumbnail-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: relative;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #2c2c2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 44, 44, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thumbnail:hover::after {
  opacity: 1;
}

.thumbnail.active::after {
  background: rgba(44, 44, 44, 0.1);
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 1.2rem;
  font-weight: 300;
}

/* Product Info Section */
.product-info-section {
  max-width: 500px;
}

.product-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-type,
.product-vendor {
  font-size: 0.9rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.price-regular {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #2c2c2c;
}

.price-sale {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #e74c3c;
}

.price-compare {
  font-size: 1.2rem;
  color: #999999;
  text-decoration: line-through;
}

.price-badge {
  background: #e74c3c;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-description {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Product Form */
.product-form {
  margin-bottom: 3rem;
}

.variant-selector,
.quantity-selector {
  margin-bottom: 2rem;
}

.variant-selector label,
.quantity-selector label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.variant-select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.variant-select:focus {
  outline: none;
  border-color: #2c2c2c;
  box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.quantity-btn {
  background: #f8f8f8;
  border: none;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2c2c2c;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity-input {
  border: none;
  padding: 15px 20px;
  font-size: 1rem;
  text-align: center;
  width: 80px;
  background: #ffffff;
  font-family: inherit;
}

.quantity-input:focus {
  outline: none;
}

.add-to-cart-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.add-to-cart-btn {
  background: #2c2c2c;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: inherit;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Shopify Payment Button */
.shopify-payment-button {
  margin-top: 1rem;
}

.shopify-payment-button__button {
  width: 100% !important;
  height: 50px !important;
  border-radius: 8px !important;
  border: 2px solid #2c2c2c !important;
  background: transparent !important;
  color: #2c2c2c !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

.shopify-payment-button__button:hover {
  background: #2c2c2c !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(44, 44, 44, 0.2) !important;
}

.shopify-payment-button__button--unbranded {
  background: transparent !important;
  color: #2c2c2c !important;
  border: 2px solid #2c2c2c !important;
}

.shopify-payment-button__button--unbranded:hover {
  background: #2c2c2c !important;
  color: #ffffff !important;
}

/* Override any Shopify payment button specific styles */
.shopify-payment-button__more-options {
  display: none !important;
}

/* Additional Buy Now button styling */
[data-shopify="payment-button"] button,
.shopify-payment-button button {
  width: 100% !important;
  height: 50px !important;
  border-radius: 8px !important;
  border: 2px solid #2c2c2c !important;
  background: transparent !important;
  color: #2c2c2c !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

[data-shopify="payment-button"] button:hover,
.shopify-payment-button button:hover {
  background: #2c2c2c !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(44, 44, 44, 0.2) !important;
}

/* Product Features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid #f0f0f0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  font-size: 1rem;
  color: #666666;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .product-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-images-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 100px 0 60px 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .product-title {
    font-size: 2.2rem;
  }
  
  .price-regular,
  .price-sale {
    font-size: 1.6rem;
  }
  
  .product-description {
    font-size: 1rem;
  }
  
  .thumbnail-images {
    gap: 0.5rem;
  }
  
  .thumbnail {
    width: 60px;
    height: 60px;
  }
  
  .quantity-controls {
    width: 100%;
  }
  
  .quantity-input {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.8rem;
  }
  
  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .add-to-cart-btn {
    padding: 15px 30px;
    font-size: 0.9rem;
  }
}
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }