/* ===== ОСНОВНЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.5;
}

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

/* ===== ЧЁРНАЯ ВЕРХНЯЯ ПОЛОСКА ===== */
.top-bar {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ===== STICKY HEADER ===== */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e1e1e1;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #e1e1e1;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo-wrapper {
    flex: 0 0 auto;
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.header-right .nav-links {
    display: flex;
    gap: 25px;
}

.header-right .nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.header-right .nav-links a:hover {
    color: #f15a24;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: #666;
    font-size: 18px;
    transition: color 0.2s;
}

.header-social a:hover {
    color: #f15a24;
}

/* ===== ОСНОВНОЕ МЕНЮ ===== */
.nav-wrapper {
    background: #ffffff;
    border-bottom: 1px solid #e1e1e1;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 12px 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.6px;
    transition: color 0.2s;
    padding: 8px 0;
    display: inline-block;
}

.nav-item > a:hover {
    color: #f15a24;
}

.nav-item.has-children > a:after {
    content: "▼";
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
}

/* SUBMENU */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 100;
    padding: 12px 0;
}

.nav-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: 0.2s;
}

.sub-menu li a:hover {
    color: #f15a24;
    background: #f8f8f8;
}

/* ===== БЛОК 3 КОЛОНКИ (How It Works) ===== */
.how-it-works {
    margin: 60px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.how-card {
    text-align: center;
    padding: 30px 20px;
    transition: 0.3s;
}

.how-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #f15a24;
    transition: 0.2s;
}

.how-card:hover .how-icon {
    transform: scale(1.1);
}

.how-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.how-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.see-faqs {
    text-align: center;
}

.see-faqs a {
    display: inline-block;
    color: #f15a24;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 2px solid #f15a24;
    padding-bottom: 4px;
    transition: 0.2s;
}

.see-faqs a:hover {
    color: #000;
    border-bottom-color: #000;
}

/* ===== ИНФОРМАЦИОННЫЕ БЛОКИ ===== */
.info-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 60px 0;
}

.info-block.reverse {
    flex-direction: row-reverse;
}

.info-image {
    flex: 1;
}

.info-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.info-content {
    flex: 1;
}

.info-content h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.info-content p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.info-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.info-btn:hover {
    background: #f15a24;
}

/* ===== КАРУСЕЛЬ ===== */
.slider-container {
    position: relative;
    margin: 30px 0 50px;
    background: #f5f5f5;
}

.slider {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    background: #f8f8f8;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-image {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-content {
    flex: 1;
    padding: 50px;
}

.slide-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #111;
}

.slide-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.2s;
}

.btn:hover {
    background: #f15a24;
    transform: translateY(-2px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.slider-btn:hover {
    background: #f15a24;
}

.prev { left: 20px; }
.next { right: 20px; }

.dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: #f15a24;
    transform: scale(1.2);
}

/* ===== ЗАГОЛОВКИ СЕКЦИЙ ===== */
.section-title {
    font-size: 28px;
    font-weight: 500;
    margin: 50px 0 30px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #f15a24;
    margin: 12px auto 0;
}

/* ===== КОЛЛЕКЦИИ ===== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.collection-card {
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: white;
    display: block;
    transition: 0.3s;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.collection-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    transition: 0.3s;
}

.collection-card:hover:before {
    background: rgba(0,0,0,0.5);
}

.collection-card:hover {
    transform: translateY(-6px);
}

.collection-card * {
    position: relative;
    z-index: 1;
}

.collection-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.collection-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.collection-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== БАННЕРЫ ETSY / ZAZZLE ===== */
.platform-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 50px;
}

.platform-card {
    background-size: cover;
    background-position: center;
    padding: 60px 30px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.platform-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    transition: 0.3s;
}

.platform-card:hover:before {
    background: rgba(0,0,0,0.6);
}

.platform-card * {
    position: relative;
    z-index: 1;
}

.platform-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.platform-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    font-size: 14px;
}

.platform-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 10px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: 0.2s;
    border-radius: 4px;
}

.platform-card:hover .platform-btn {
    background: #f15a24;
    color: white;
}

/* ===== ТОВАРЫ ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}

.product-info {
    padding: 18px 16px 22px;
    text-align: center;
}

.product-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-weight: 700;
    color: #f15a24;
    font-size: 18px;
    margin-top: 10px;
}

/* ===== ETSY REVIEWS WIDGET ===== */
.reviews-section {
    margin: 50px 0;
}

/* ===== ФУТЕР ===== */
.footer {
    background: #f4f4f4;
    color: #666;
    padding: 50px 0 30px;
    margin-top: 40px;
    font-size: 14px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #111;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #f15a24;
}

.newsletter-form {
    display: flex;
    margin: 20px 0;
    border: 1px solid #ddd;
    background: #fff;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.newsletter-form button:hover {
    background: #f15a24;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: 0.2s;
}

.social-icons a:hover {
    background: #f15a24;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #888;
}

/* ===== СТРАНИЦА ТОВАРА (дополнительно) ===== */
.product-detail {
    display: flex;
    gap: 60px;
    margin: 50px 0;
}

.product-image {
    flex: 1;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #f15a24;
    margin: 20px 0;
}

.description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tribute-btn {
    display: inline-block;
    background: #000;
    color: white;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.tribute-btn:hover {
    background: #f15a24;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #f15a24;
    text-decoration: none;
}

.back-link:hover {
    color: #000;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 900px) {
    .header-top-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .header-left, .header-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    .header-right {
        flex-direction: column;
        gap: 15px;
    }
    .slide {
        flex-direction: column;
    }
    .slider {
        height: 500px;
    }
    .slide-image {
        width: 100%;
        height: 250px;
    }
    .slide-content {
        padding: 30px;
        text-align: center;
    }
    .slide-content h2 {
        font-size: 28px;
    }
    .how-grid,
    .collections-grid,
    .platform-banners,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .info-block {
        flex-direction: column;
        text-align: center;
    }
    .info-block.reverse {
        flex-direction: column;
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .how-grid,
    .collections-grid,
    .platform-banners,
    .products-grid {
        grid-template-columns: 1fr;
    }
    .nav {
        gap: 20px;
        flex-wrap: wrap;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .section-title {
        font-size: 24px;
    }
    .social-icons {
        justify-content: center;
    }
}