<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.breadcrumb-path {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-path a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-path a:hover {
    color: #000;
}

.breadcrumb-path .separator {
    color: #999;
    font-size: 0.8rem;
}

.breadcrumb-path .current {
    color: #000;
    font-weight: 500;
}


.main-image {
    position: relative;
    cursor: zoom-in;
}

.zoom-lens {
    position: absolute;
    border: 1px solid #d4d4d4;
    width: 100px;
    height: 100px;
    display: none;
}

.zoom-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000000000;
}

.zoom-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}


.more-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.all-photos-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    padding: 2rem;
    overflow-y: auto;
}

.all-photos-container img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 1rem;
    cursor: pointer;
    border-radius: 8px;
}

.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.product-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    border-radius: 12px;
    position: relative;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.modal-content.active {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.2s ease;
    z-index: 1;
}

.modal-close:hover {
    background: #eee;
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    flex: 1;
    min-height: 0;
}

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

.main-image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    object-fit: cover;
    border-radius: 12px;
}

.thumbnail.active {
    border-color: #000;
}

.product-details {
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-title {
    font-family: 'Jost', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: #222;
    line-height: 1.2;
}

.product-brand {
    font-size: 1.2rem;
    color: #666;
    margin-top: -0.5rem;
}

.product-code {
    font-size: 0.9rem;
    color: #888;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
}

.original-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
}

.size-section {
    margin: 1rem 0;
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.size-chart {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.size-chart:hover {
    color: #004999;
}

.size-options {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.size-btn:hover {
    border-color: #000;
    background: #f8f8f8;
}

.size-btn.active {
    border-color: #000;
    background: #000;
    color: white;
}

.add-to-cart {
    flex: 1;
    background: #000;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.favorite-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cart-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    margin-top: -1.5rem;
}

.shipping-info i {
    font-size: 1.1rem;
    color: #333;
}

.color-options {
    display: flex;
}

.color-btn {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 2px;
    cursor: pointer;
    overflow: hidden;
}

.color-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.color-btn.active {
    border-color: #000;
}

.favorite-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.add-to-cart:hover {
    background: #222;
    transform: translateY(-2px);
}

@media (min-width: 1400px) {
    .modal-content {
        max-width: 1200px;
        /* height: 95vh; */
    }

    .main-image {
        height: 500px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .modal-content {
        max-width: 1000px;
        /* height: 90vh; */
    }

    .main-image {
        height: 450px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .modal-content {
        max-width: 90%;
        height: 95vh;
        padding: 1.5rem;
    }

    .modal-grid {
        gap: 2rem;
    }

    .main-image {
        height: 400px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .product-modal {
        padding: 0;
    }

    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
        padding: 1rem;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .product-modal {
        padding: 0;
    }

    .modal-content {
        width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
        padding: 1rem;
        margin: 0;
        overflow-y: auto;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        overflow: visible;
    }

    .main-image {
        height: 300px;
    }

    .product-details {
        padding: 0;
    }

    .thumbnail-container {
        display: flex;
        gap: 0.5rem;
        padding: 0.5rem 0;
        overflow-x: auto;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .size-options {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem 0;
    }

    .size-btn {
        min-width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .color-options {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem 0;
    }

    .color-btn {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .cart-section {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 1rem;
        margin: 1rem -1rem -1rem -1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .add-to-cart {
        height: 48px;
    }

    .favorite-btn {
        width: 48px;
        height: 48px;
    }

    .shipping-info {
        margin-top: 0.5rem;
        font-size: 0.9rem;
    }

    .breadcrumb-path {
        display: none;
    }

    .thumbnail-container,
    .size-options,
    .color-options {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .thumbnail-container::-webkit-scrollbar,
    .size-options::-webkit-scrollbar,
    .color-options::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 575px) {
    .modal-content {
        padding: 1rem;
    }

    .main-image {
        height: 300px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
    }

    .size-btn {
        min-width: 40px;
        height: 40px;
    }
}

@media (max-width: 375px) {
    .modal-content {
        padding: 0.75rem;
    }

    .main-image {
        height: 250px;
    }

    .product-title {
        font-size: 1.25rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .cart-section {
        padding: 0.75rem;
    }

    .add-to-cart {
        height: 44px;
        font-size: 0.9rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .modal-content {
        height: 100vh;
        padding: 1rem;
    }

    .modal-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .main-image {
        height: 200px;
    }

    .product-title {
        font-size: 1.25rem;
    }
}
</pre></body></html>