body { font-family: 'Segoe UI', Arial, sans-serif; background: #faf9f7; margin: 0; }

.header {
    width: 100%;
    background: #5F92FF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-shadow: 0 2px 8px #0001;
    gap: 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
.header-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 24px;
    cursor: pointer;
    padding: 0 8px;
    height: 60px;
    transition: background 0.15s, color 0.15s;
}
.header-btn.logo {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
}
.header-btn:not(.logo):hover {
    background: #fff2;
    color: #222;
}
.container {
    display: flex;
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 2px 16px #0001;
    border-radius: 12px;
    overflow: hidden;
}
.left {
    flex: 1.1;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    position: relative;
}
.main-img {
    max-width: 100%;
    width: 420px;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0002;
}
.thumbs {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.thumbs img {
    max-width: min(210px, calc(50% - 16px));
    margin: 0 8px;
    border-radius: 6px;
    border: 2px solid #eee;
}
.right {
    flex: 1.1;
    padding: 40px 40px 40px 32px;
}

.whatsapp-button img:hover {
    background: rgba(94, 94, 90, 0.86);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button img {
    border-radius: 12px;
    width: 220px;
}

.whatsapp-button {
    border-radius: 12px;
    overflow: hidden;
}

.product-title {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.price {
    font-size: 1.5rem;
    color: #222;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.4;
}

.price.out-of-stock {
    color: #d32f2f;
    font-weight: 600;
}
.options-container {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-group-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 12px 0 6px 0;
    color: #333;
}

#product-id {
    margin-top: 6px;
    padding: 4px 8px;
}

[class*="-length"], [class*="-size"], [class*="-color"], 
[class*="-style"], [class*="-part"], [class*="-hairline"] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
}
.option-btn {
    padding: 10px 18px;
    margin: 0;
    border-radius: 6px;
    border: 2px solid #444;
    background: #fff;
    color: #222;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer !important;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
}

.option-btn:hover:not(.selected):not(:disabled) {
    border-color: #5F92FF;
    background: #f8f9ff;
    transform: translateY(-1px);
}

.option-btn.selected {
    background: #5F92FF;
    color: #fff;
    border-color: #5F92FF;
    box-shadow: 0 2px 4px rgba(95, 146, 255, 0.4);
    transform: translateY(-1px);
}

.option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    border-color: #ccc;
}
/* Removed disabled styles */
.buy-box {
    position: absolute;
    left: 40px;
    bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0002;
    padding: 18px 28px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}
.return-box {
    position: absolute;
    left: 260px;
    bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0002;
    padding: 18px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
}
.variants-list {
    margin-top: 18px;
}
.thumbs video {
    max-width: 210px;
    margin: 0 8px;
    border-radius: 6px;
    border: 2px solid #eee;
    background: #fff;
}

.thumbs video:hover {
    border-color: #5F92FF;
    box-shadow: 0 2px 8px rgba(95, 146, 255, 0.3);
}

h1 { color: #5F92FF; }
p { font-size: 1.2rem; line-height: 1.7; }
.shop-container {
    max-width: 1476px;
    margin: 80px auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px #0001;
    width: 260px;
    padding: 18px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    text-decoration: none;
    color: #222;
}
.product-card:hover {
    box-shadow: 0 4px 24px #5F92FF33;
}
.product-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px #0002;
}
.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

/* About page styles */
.about-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 80px auto 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px #0001;
    padding: 0 24px 24px 24px;
}

.about-text {
    flex: 1;
}

#about-text {
    margin-top: 0;
    margin-bottom: 0;
}

.about-image {
    display: block;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0002;
    margin: 24px auto 0;
}

.how-to-buy-list li {
    margin-bottom: 1.5em;
}

.how-to-buy-list {
    margin: 80px auto 0;
}

.about-image {
    margin: 0 0 0 32px;
}

/* Mobile only */
@media (max-width: 900px),
only screen and (hover: none) and (pointer: coarse),
only screen and (orientation: portrait) {
    /* Core layout changes */
    .container {
        flex-direction: column;
        margin: 80px auto 20px;
        border-radius: 8px;
    }

    .left, .right {
        padding: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Text sizing */
    .product-title {
        font-size: 1.6rem;
    }

    .price {
        font-size: 1.3rem;
    }

    /* Header adjustments */
    .header {
        height: 48px;
        padding: 0;
        gap: 8px;
    }

    .header-btn {
        font-size: 0.95rem;
        margin-right: 8px;
        height: 48px;
        min-height: 44px;
        padding: 12px 20px;
    }

    .header-btn.logo {
        font-size: 1.3rem;
    }

    /* Image handling */
    .main-img {
        width: 85%;
        max-width: 2048px;
    }

    .thumbs {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 16px 0;
    }

    .thumbs img,
    .thumbs video {
        width: 80%;
        max-width: 2048px;
        margin: 0;
        height: auto;
    }

    /* Button and interactive elements */
    .option-btn {
        padding: 12px 20px;
        min-height: 44px;
        flex: 1 1 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }

    /* Box positioning */
    .buy-box, .return-box {
        position: static;
        margin: 12px 0;
        width: 100%;
        box-sizing: border-box;
    }

    /* Shop specific changes */
    .shop-container {
        margin: 20px auto;
        padding: 0 12px;
        gap: 16px;
    }

    .product-card {
        width: 100%;
        max-width: 340px;
        transition: none;
    }

    .product-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .how-to-buy-list {
        margin: 0 0 0 22px;
    }

    .about-container {
        margin: 0;
    }

    .whatsapp-button img {
        border-radius: 12px;
        /*min-width: 2000px;*/
        flex: 1 1 calc(80%);
        max-width: calc(80%);
        display: block;
    }

    .whatsapp-button-consult img {
        border-radius: 12px;
        /*min-width: 2000px;*/
        flex: 1 1 calc(50%);
        max-width: calc(50%);
        display: block;
    }
}