/** Shopify CDN: Minification failed

Line 614:0 Unexpected "}"

**/
/* ==========================================
   PRODUCT PAGE - AIMÉ LEON DORE STYLE
   ========================================== */

.product-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 7rem 3rem 4rem;
}

/* ==========================================
   LEFT COLUMN - Product Info + Accordion
   ========================================== */
.product-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: center;
}

.product-title {
    font-family: 'Aether', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: #000;
}

.product-price {
    font-family: 'Aether', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: #000;
}

/* Accordion */
.product-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-top: 1px solid #000;
}

.accordion-item:last-child {
    border-bottom: 1px solid #000;
}

.accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-family: 'Aether', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    transition: opacity 0.2s ease;
}

.accordion-btn:hover {
    opacity: 0.6;
}

.accordion-arrow {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    font-family: 'Aether', sans-serif;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0.35rem;
    color: #000;
}

/* Size Table */
.size-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.size-tab {
    padding: 0.75rem 2rem;
    font-family: 'Aether', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #999;
    background: transparent;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-tab.active {
    color: #000;
    border-color: #000;
}

.size-tab:hover {
    opacity: 0.7;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-family: 'Aether', sans-serif;
}

.size-table thead th {
    text-align: left;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    border-bottom: 1px solid #e5e5e5;
    color: #000;
}

.size-table tbody td {
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid #e5e5e5;
    color: #000;
}

.size-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hide columns based on active unit */
.size-table[data-unit="cm"] .in-unit,
.size-table[data-unit="cm"] .intl-unit {
    display: none;
}

.size-table[data-unit="in"] .cm-unit,
.size-table[data-unit="in"] .intl-unit {
    display: none;
}

.size-table[data-unit="intl"] .cm-unit,
.size-table[data-unit="intl"] .in-unit {
    display: none;
}

.how-to-measure {
    margin-top: 1.5rem;
}

.how-to-measure-link {
    font-family: 'Aether', sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.how-to-measure-link:hover {
    opacity: 0.6;
}

/* Measure Modal */
.measure-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.measure-modal-content {
    background-color: #fff;
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.close-modal:hover {
    opacity: 0.6;
}

.measure-modal-body {
    margin-top: 2rem;
    font-family: 'Aether', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #000;
}

/* ==========================================
   CENTER COLUMN - Product Image
   ========================================== */
.product-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image-container {
    width: 100%;
    max-width: 500px;
}

.product-image-main {
    position: relative;
    width: 100%;
    background: #fff;
    margin-bottom: 1rem;
    cursor: zoom-in;
}

.product-image-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Navigation Arrows */
.image-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #000;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: #000;
    transition: all 0.2s ease;
    z-index: 10;
}

.image-nav-arrow:hover {
    background: #000;
    color: #fff;
}

.prev-arrow {
    left: 1rem;
}

.next-arrow {
    right: 1rem;
}

.image-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.image-nav-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

/* Thumbnails */
.product-thumbnails-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.25rem 0;
}

.product-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: #f5f5f5;
}

.thumbnail-item:hover {
    border-color: #999;
}

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

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fade Gradients */
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.fade-left.visible,
.fade-right.visible {
    opacity: 1;
}

/* Image Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.image-zoom-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-zoom-modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.close-zoom-modal {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    z-index: 10001;
}

.close-zoom-modal:hover {
    opacity: 0.6;
}

/* ==========================================
   RIGHT COLUMN - Size Selection + Cart
   ========================================== */
.product-right {
    display: flex;
    flex-direction: column;
    align-self: center;
}

.size-color-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.color-label {
    font-family: 'Aether', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5rem;
}

/* Size Dropdown */
.size-selector {
    margin-bottom: 1rem;
}

.size-dropdown {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Aether', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.size-dropdown:hover {
    opacity: 0.7;
}

.size-dropdown:focus {
    outline: none;
    border-color: #000;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    font-family: 'Aether', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #333;
}

.add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Large Tablet */
@media (max-width: 1400px) {
    .product-container {
        gap: 2.5rem;
        padding: 6.5rem 2.5rem 3rem;
    }

    .product-image-container {
        max-width: 450px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .product-container {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 2rem;
        padding: 6rem 2rem 3rem;
    }

    .product-image-container {
        max-width: 400px;
    }
}

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

    .product-price {
        font-size: 0.8125rem;
    }

    .accordion-btn {
        font-size: 0.75rem;
    }

    .accordion-content p {
        font-size: 0.6875rem;
    }

    .color-label,
    .size-dropdown,
    .add-to-cart-btn {
        font-size: 0.75rem;
    }
}

/* Medium Tablet */
@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5.5rem 2rem 2rem;
    }

    .product-image-container {
        max-width: 100%;
    }

    .product-left {
        align-self: flex-start;
    }

    .product-right {
        align-self: flex-start;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5rem 1.5rem 2rem;
    }

    .product-left {
        order: 2;
    }

    .product-center {
        order: 1;
    }

    .product-right {
        order: 3;
    }

    .product-title {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }

    .product-price {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .accordion-btn {
        font-size: 0.8125rem;
        padding: 0.875rem 0;
    }

    .accordion-content p {
        font-size: 0.75rem;
    }

    .product-image-container {
        max-width: 100%;
    }

    .image-nav-arrow {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .prev-arrow {
        left: 0.5rem;
    }

    .next-arrow {
        right: 0.5rem;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .color-label {
        font-size: 0.8125rem;
    }

    .size-dropdown {
        font-size: 0.8125rem;
        padding: 0.875rem 1rem;
    }

    .add-to-cart-btn {
        font-size: 0.8125rem;
        padding: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .product-container {
        padding: 4.5rem 1rem 2rem;
    }

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

    .product-price {
        font-size: 0.8125rem;
    }

    .accordion-btn {
        font-size: 0.75rem;
    }

    .accordion-content p {
        font-size: 0.6875rem;
    }

    .size-dropdown,
    .add-to-cart-btn {
        font-size: 0.75rem;
    }
}
