html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.your-picks-page {
    min-height: 100vh;
    padding-top: 100px;
    font-family: 'Poppins', sans-serif;
}

.picks-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px;
    perspective: 1500px;
}

.picks-flex {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: flex-start;
    transform-style: preserve-3d;
}

.picks-items-container {
    flex: 0 1 700px;
}

.picks-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1512;
    letter-spacing: 0.15em;
    margin-top: 0px;
    
}

.picks-subtitle-bold {
    
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height:1.2;
}

.picks-subtitle-light {
    font-family: 'Bodoni Moda', serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
}

/* Product List */
.picks-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pick-item {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.pick-image {
    width: 180px;
    height: 180px;
    background-color: #f9f9f9;
    flex-shrink: 0;
}

.pick-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pick-details {
    flex: 1;
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pick-name {
    font-family: 'Bodoni Moda', serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    max-width: 250px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.pick-price {
    font-size: 16px;
    font-weight: 500;
}

.pick-options {
    margin-bottom: 15px;
}

.pick-options p {
    font-size: 14px;
    color: #444;
    margin-bottom: 5px;
    margin-top: 5px;
}

.pick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    width: fit-content;
}

.qty-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 8px 0;
    font-size: 14px;
}

.save-wishlist, .remove-cart {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    width: fit-content;
    transition: opacity 0.2s;
    background: none;
    padding: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.save-wishlist:hover, .remove-cart:hover {
    opacity: 0.7;
    color: #d4af37;
    border-color: #d4af37;
}

/* Order Summary Card */
.order-summary-container {
    width: 400px;
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

.summary-card {
    background-color: #000;
    color: #fff;
    padding: 35px 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transform: translateZ(80px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);

    clip-path: polygon(0% 0%, 100% 0%,
            100% 98.4%, 98.5% 99.1%, 97% 98.6%, 95.5% 100.3%, 94% 98.5%, 92.5% 99.6%, 91% 98.8%, 93.5% 99.2%, 88% 98.4%, 86.5% 99.7%, 85% 98.9%, 83.5% 99.3%, 82% 99.6%, 80.5% 99.5%, 79% 95.8%, 77.5% 99.2%, 76% 98.4%, 74.5% 99.7%, 73% 98.9%, 71.5% 99.3%, 70% 98.6%, 68.5% 99.5%, 67% 98.8%, 65.5% 99.2%, 62% 98.4%, 62.5% 99.7%, 61% 99.9%, 59.5% 99.3%, 58% 98.6%, 56.5% 99.5%, 55% 98.8%, 53.5% 99.2%, 52% 97.4%, 50.5% 99.7%, 49% 98.9%, 47.5% 99.3%, 46% 98.6%, 44.5% 99.5%, 43% 98.8%, 41.5% 99.2%, 40% 98.4%, 38.5% 99.7%, 37% 98.9%, 35.5% 99.3%, 34% 98.6%, 32.5% 99.5%, 31% 98.8%, 29.5% 99.2%, 29% 98.4%, 27.5% 99.7%, 24% 98.9%, 23.5% 99.3%, 22% 98.6%, 20.5% 99.5%, 19% 98.8%, 17.5% 99.2%, 16% 98.4%, 14.5% 99.7%, 13% 98.9%, 11.5% 98.3%, 8% 98.6%, 8.5% 99.5%, 7% 98.8%, 5.5% 99.2%, 4% 98.4%, 3.5% 99.7%, 0% 98.4%);
    min-height: 550px;
}

.summary-header {
    text-align: center;
    margin-bottom: 20px;
}

.summary-link {
    color: #fff;
    text-decoration: underline;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.my-aurlet-section {
    text-align: center;
    margin-bottom: 30px;
}

.aurlet-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.aurlet-text {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
}

.join-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 60px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-prompt {
    font-size: 12px;
    color: #fff;
}

.login-prompt a {
    color: #fff;
    text-decoration: underline;
}

.price-details-section .price-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 300;
}

.tax-info {
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 40px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 40px;
}

.total-line span:first-child {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.total-line .price {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
}

.checkout-btn {
    display: block;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 0.1em;
    font-size: 14px;
    transition: transform 0.3s ease;
    border: none;
    width: 100%;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .picks-flex {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .picks-flex {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .order-summary-container {
        width: 100%;
        max-width: 500px;
    }

    .picks-items-container {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .picks-container {
        padding: 20px;
    }

    .picks-title {
        font-size: 24px;
    }

    .picks-subtitle-bold {
        font-size: 16px;
    }

    .pick-item {
        flex-direction: column;
        gap: 20px;
    }

    .pick-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .pick-header {
        flex-direction: column;
        gap: 5px;
    }

    .pick-price {
        font-size: 18px;
        order: -1;
    }

    .pick-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .summary-card {
        padding: 40px 25px;
    }
}
