body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    text-align: center;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.center-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-bottom: 20px;
}

.folder-list {
    list-style: none;
    padding: 0;
}

.folder-list li {
    margin: 10px 0;
}

.folder-list a {
    text-decoration: none;
    color: #333;
    background-color: #eee;
    padding: 10px;
    display: block;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.folder-list a:hover {
    background-color: #ddd;
}

.carousel-track {
    /* display: flex; */
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 5px;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 100%;
    transition: transform 0.3s ease;
    margin-bottom: 25px;
}

.product-cardx:hover {
    transform: translateY(-5px);
}

.product-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
}

.product-images {
    /* display: flex; */
    justify-content: space-between;
    padding: 0px;
    background: #f8f9fa;
}

.product-images h3 {
    background: rgba(31, 152, 207, 0.2);
    margin: 0px;
    padding: 0px;
    font-size: 1.1em;
    text-align: center;
    min-width: 100%;
}

.product-image {
    width: 100%;
    height: 290px;
    background: #e9ecef;
    color: #6c757d;
}

.carousel {
  background: #FAFAFA;
}

.carousel-cell {
  width: 66%;
  height: 250px;
  margin-right: 10px;
  background: #333;
}

.carousel-cell-image {
  display: block;
  max-height: 100%;
  margin: 0 auto;
  max-width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
          transition: opacity 0.4s;
}

/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}

.product-prices {
    grid-area: prices;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.price-box {
    border: 2px solid #34495e;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background-color: #f0f0f0;
}

.price-box h5 {
    margin: 0 0 5px 0;
}

.price-box .price {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

.characteristics {
    /* background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); */
    background: #f8f9fa;
    /* color: white; */
    padding: 15px;
}

.characteristics h3 {
    background: rgba(31, 152, 207, 0.2);
    margin: -15px -15px 15px -15px;
    padding: 10px 15px;
    font-size: 1.1em;
    text-align: center;
}

.char-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.char-label {
    font-weight: bold;
    color: blue;
}

.char-value {
    color: black;
}

.swiper {
    width: 100%;
    height: 290px;
}
