
footer[data-v-29924f2a] {
  margin-top: 60px;
  padding: 40px 20px;
  border-top: 1px solid #eee;
}
.footer-content[data-v-29924f2a] {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-links[data-v-29924f2a] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h4[data-v-29924f2a] {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 16px;
  color: #000;
}
.footer-section ul[data-v-29924f2a] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li[data-v-29924f2a] {
  margin-bottom: 12px;
}
.footer-section a[data-v-29924f2a] {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}
.footer-section2[data-v-29924f2a] {
  display: flex;
  justify-content: space-between;
}
.newsletter[data-v-29924f2a] {
  margin-bottom: 40px;
}
.newsletter h4[data-v-29924f2a] {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 16px;
  color: #000;
}
.email-input[data-v-29924f2a] {
  display: flex;
  max-width: 400px;
  border: 1px solid #ddd;
}
.email-input input[data-v-29924f2a] {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 14px;
}
.email-input input[data-v-29924f2a]:focus {
  outline: none;
}
.email-input button[data-v-29924f2a] {
  padding: 12px 16px;
  background: none;
  border: none;
  border-left: 1px solid #ddd;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}
.footer-bottom[data-v-29924f2a] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.language-currency[data-v-29924f2a] {
  display: flex;
  gap: 12px;
}
.language-currency select[data-v-29924f2a] {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  background: white;
}
.social-links[data-v-29924f2a] {
  display: flex;
  gap: 24px;
  align-items: center;
}
.social-links a[data-v-29924f2a] {
  color: #000;
  text-decoration: none;
}
.payment-methods[data-v-29924f2a] {
  display: flex;
  gap: 8px;
  align-items: center;
}
.payment-methods img[data-v-29924f2a] {
  height: 24px;
}
@media screen and (max-width: 768px) {
.footer-links[data-v-29924f2a] {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.footer-section2[data-v-29924f2a] {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.newsletter[data-v-29924f2a] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 48px;
}
.email-input[data-v-29924f2a] {
    margin: 0 auto;
}
.footer-bottom[data-v-29924f2a] {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding-top: 32px;
}
.language-currency[data-v-29924f2a] {
    width: 100%;
    justify-content: center;
    gap: 16px;
}
.language-currency select[data-v-29924f2a] {
    width: calc(50% - 8px);
    max-width: 160px;
}
.social-links[data-v-29924f2a] {
    width: 100%;
    justify-content: center;
    margin-bottom: 32px;
}
.payment-methods[data-v-29924f2a] {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.payment-methods img[data-v-29924f2a] {
    height: 20px;
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;
.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: white;
  border-bottom: 1px solid #eee;
}
.menu-button {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.logo img {
  height: 24px;
}
.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-actions button,
.header-actions a {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  position: relative;
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #4834d4;
  color: white;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
.menu-button {
    display: block;
}
.main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 24px;
    transition: left 0.3s ease;
    z-index: 100;
}
.main-nav.is-open {
    left: 0;
}
.main-nav a {
    font-size: 18px;
    padding: 12px 0;
}
}

.product-images[data-v-b0745a78] {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 691px;
}
.main-image[data-v-b0745a78] {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.main-image img[data-v-b0745a78] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-counter[data-v-b0745a78] {
  display: none;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
}
.thumbnail-images[data-v-b0745a78] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.thumbnail-images img[data-v-b0745a78] {
  width: 345.5px;
  height: 345px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.thumbnail-images img.active[data-v-b0745a78],
.thumbnail-images img[data-v-b0745a78]:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
.product-images[data-v-b0745a78] {
    gap: 0;
}
.main-image[data-v-b0745a78] {
    padding-top: 100%;
}
.image-counter[data-v-b0745a78] {
    display: block;
}
.thumbnail-images[data-v-b0745a78] {
    display: none;
}
}

.related-products[data-v-4cbdae35] {
  margin: 40px 0;
}
.related-products h2[data-v-4cbdae35] {
  font-size: 16px;
  margin-bottom: 16px;
  padding: 0 20px;
  color: #000;
}
.products-grid[data-v-4cbdae35] {
  display: flex;
  gap: 16px;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.products-grid[data-v-4cbdae35]::-webkit-scrollbar {
  display: none;
}
.product-card[data-v-4cbdae35] {
  position: relative;
  flex: 0 0 auto;
  width: calc(50% - 8px);
  scroll-snap-align: start;
}
.product-image[data-v-4cbdae35] {
  position: relative;
  width: 100%;
  margin-bottom: 12px;
}
.product-image img[data-v-4cbdae35] {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card h3[data-v-4cbdae35] {
  font-size: 14px;
  margin: 0 0 4px;
  color: #000;
  font-weight: normal;
}
.price-container[data-v-4cbdae35] {
  display: flex;
  gap: 8px;
  align-items: center;
}
.current-price[data-v-4cbdae35] {
  font-size: 14px;
  margin: 0;
  color: #000;
}
.original-price[data-v-4cbdae35] {
  font-size: 14px;
  margin: 0;
  color: #999;
  text-decoration: line-through;
}
.sale[data-v-4cbdae35] {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #4834d4;
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
.product-card[data-v-4cbdae35] {
    width: calc(25% - 12px);
}
.products-grid[data-v-4cbdae35] {
    gap: 20px;
}
.related-products h2[data-v-4cbdae35] {
    font-size: 18px;
}
}

.product-page[data-v-783b159c] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 0;
}
.product-container[data-v-783b159c] {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 400px);
  gap: 40px;
  margin-bottom: 40px;
}
.product-details[data-v-783b159c] {
  padding: 0;
  height: min-content;
  position: sticky;
  top: 0;
}
.product-details h1[data-v-783b159c] {
  font-size: 18px;
  margin: 32px 0 16px;
  font-weight: normal;
}
.price[data-v-783b159c] {
  font-size: 20px;
  margin-bottom: 20px;
}
.size-selector[data-v-783b159c] {
  margin-bottom: 16px;
}
.size-selector label[data-v-783b159c] {
  display: block;
  margin-bottom: 8px;
}
.size-selector select[data-v-783b159c] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
}
.size-guide[data-v-783b159c] {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  color: #4834d4;
  border: 1px solid #4834d4;
  border-radius: 100px;
  margin: 16px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
}
.quantity[data-v-783b159c] {
  margin: 16px 0;
}
.quantity label[data-v-783b159c] {
  display: block;
  margin-bottom: 8px;
}
.quantity-controls[data-v-783b159c] {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  max-width: 150px;
}
.quantity-btn[data-v-783b159c] {
  padding: 5px 15px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 18px;
}
.quantity input[data-v-783b159c] {
  border: none;
  text-align: center;
  width: 40px;
  font-size: 14px;
}
.buy-button[data-v-783b159c] {
  width: 100%;
  padding: 16px;
  background-color: #4834d4;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 32px;
  font-weight: normal;
}
.product-features[data-v-783b159c] {
  margin-top: 0;
}
.product-features h3[data-v-783b159c] {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: normal;
  color: #000;
}
.product-features ul[data-v-783b159c] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-features li[data-v-783b159c] {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
  position: relative;
  padding-left: 12px;
}
.product-features li[data-v-783b159c]::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #666;
}
.product-info details[data-v-783b159c] {
  border-top: 1px solid #eee;
  padding: 16px 0;
}
.product-info details[data-v-783b159c]:last-child {
  border-bottom: 1px solid #eee;
}
.info-header[data-v-783b159c] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.info-header span[data-v-783b159c]:not(.material-icons) {
  flex: 1;
  margin-left: 12px;
  font-size: 14px;
  color: #333;
}
.info-header .material-icons[data-v-783b159c] {
  color: #666;
  font-size: 20px;
}
.info-header .arrow[data-v-783b159c] {
  transition: transform 0.3s ease;
}
details[open] .info-header .arrow[data-v-783b159c] {
  transform: rotate(180deg);
}
.product-info summary[data-v-783b159c] {
  list-style: none;
}
.product-info summary[data-v-783b159c]::-webkit-details-marker {
  display: none;
}
.product-info p[data-v-783b159c] {
  margin: 16px 0 0 32px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.share-options[data-v-783b159c] {
  margin: 16px 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.share-button[data-v-783b159c] {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
}
.share-button[data-v-783b159c]:hover {
  color: #4834d4;
}
.share-button .material-icons[data-v-783b159c] {
  font-size: 20px;
}
.shipping-banner[data-v-783b159c] {
  background: black;
  color: white;
  padding: 16px;
  text-align: center;
  margin: 24px 0;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
.product-container[data-v-783b159c] {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
}
.product-details[data-v-783b159c] {
    padding: 16px;
    position: relative;
}
.product-details h1[data-v-783b159c] {
    font-size: 20px;
}
.size-selector[data-v-783b159c],
  .size-guide[data-v-783b159c],
  .quantity[data-v-783b159c],
  .buy-button[data-v-783b159c] {
    margin-bottom: 12px;
}
.product-features[data-v-783b159c] {
    margin-top: 16px;
}
.shipping-banner[data-v-783b159c] {
    margin: 16px 0;
    padding: 12px;
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;