/** Shopify CDN: Minification failed

Line 308:0 All "@import" rules must come first

**/
/* ============================================
   AURALYSANDRA PREMIUM PRODUCT PAGE STYLES
   ============================================ */

/* Premium Layout Container */
.product {
    max-width: 1400px !important;
    margin: 0 auto;
    padding: 40px 24px 80px !important;
}

/* Product Title - Premium Typography */
.product__title h1,
.product__title h2,
.product__title .h1 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {

    .product__title h1,
    .product__title h2,
    .product__title .h1 {
        font-size: 3rem;
    }
}

/* Vendor/Brand Label */
.product__text.caption-with-letter-spacing {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A962;
    margin-bottom: 12px;
}

/* Price Styling */
.price-item--regular,
.price-item--sale {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.price-item--sale {
    color: #C9A962;
}

.price-item--compare {
    font-size: 1.1rem;
    color: #999;
}

/* Product Description */
.product__description,
.product-form__description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 24px 0;
    max-width: 600px;
}

/* Quantity Selector - Premium Style */
.quantity {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.quantity__button {
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity__button:hover {
    background: #f5f5f5;
}

.quantity__input {
    border: none;
    text-align: center;
    width: 60px;
    font-size: 16px;
    font-weight: 500;
}

/* Add to Cart Button - Premium Gold */
.product-form__submit,
.shopify-payment-button button,
.product-form__buttons button[type="submit"] {
    background: linear-gradient(135deg, #C9A962 0%, #B8965C 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 18px 32px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(201, 169, 98, 0.25) !important;
}

.product-form__submit:hover,
.shopify-payment-button button:hover {
    background: linear-gradient(135deg, #D4B872 0%, #C9A962 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35) !important;
}

/* Sold Out Button */
.product-form__submit[disabled] {
    background: #ccc !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

/* Buy Now Button - Outline Style */
.shopify-payment-button__button--unbranded {
    background: #fff !important;
    color: #1a1a1a !important;
    border: 2px solid #1a1a1a !important;
}

.shopify-payment-button__button--unbranded:hover {
    background: #1a1a1a !important;
    color: #fff !important;
}

/* Product Media Gallery */
.product__media-wrapper {
    position: relative;
}

.product__media {
    border-radius: 16px;
    overflow: hidden;
    background: #fafafa;
}

.product__media img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product__media:hover img {
    transform: scale(1.03);
}

/* Thumbnail Gallery */
.thumbnail-slider {
    margin-top: 16px;
}

.thumbnail-slider button,
.product__media-toggle {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.thumbnail-slider button.is-active,
.product__media-toggle.is-active {
    border-color: #C9A962;
}

/* Product Info Section */
.product__info-container {
    padding-left: 60px;
}

@media (max-width: 991px) {
    .product__info-container {
        padding-left: 0;
        padding-top: 32px;
    }
}

/* Accordion / Collapsible sections */
.accordion {
    border: none !important;
    margin-top: 32px;
}

.accordion__content {
    border-top: 1px solid #f0f0f0;
    padding: 20px 0;
}

.accordion__title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion__title:hover {
    color: #C9A962;
}

/* Variant Picker - Premium Style */
.product-form__input--pill {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px;
}

.product-form__input--pill label {
    cursor: pointer;
}

.product-form__input--pill input+label {
    padding: 12px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
}

.product-form__input--pill input:checked+label {
    border-color: #C9A962;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    color: #C9A962;
}

.product-form__input--pill input+label:hover {
    border-color: #C9A962;
}

/* Inventory Status */
.product__inventory {
    font-size: 13px;
    font-weight: 500;
    color: #4CAF50;
    margin: 12px 0;
}

/* Rating Stars */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 16px;
}

.rating-star {
    color: #C9A962;
}

/* Share Buttons */
.product__share-links {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

/* Mobile Sticky Add to Cart */
@media (max-width: 767px) {
    .product-form__buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .product {
        padding-bottom: 120px !important;
    }
}

/* Import Google Fonts for Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

/* Smooth Loading Animation */
.product__info-container,
.product__media-wrapper {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Media Animation Delay */
.product__media-wrapper {
    animation-delay: 0.1s;
}

.product__info-container {
    animation-delay: 0.3s;
}