/*
 * ScentoraCeylon - Luxury Single Product Styles
 * Dark Teal Theme - Modern Elegant Design
 */

/* ========================================
   HIDE DEFAULT THEME HEADER/FOOTER ON PRODUCT PAGES
   (But allow Elementor headers/footers)
   ======================================== */
.single-product .site-header:not([data-elementor-type]),
.single-product header.wp-block-template-part {
    display: none !important;
}

.single-product .site-footer:not([data-elementor-type]),
.single-product footer.wp-block-template-part {
    display: none !important;
}

/* ========================================
   MAIN WRAPPER
   ======================================== */
.scentora-product-wrapper {
    background: #03494B !important;
    padding: 0 !important;
    padding-top: 120 !important;
    margin: 0 !important;
    font-family: 'Lato', sans-serif !important;
}

/* ========================================
   PRODUCT CONTAINER
   ======================================== */
.scentora-product-container {
    display: grid !important;
    grid-template-columns: 55% 45% !important;
    min-height: 100vh !important;
    max-width: 100% !important;
    margin: 0 !important;
    gap: 0 !important;
}

/* ========================================
   LEFT SIDE - IMAGE SECTION
   ======================================== */
.scentora-image-section {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 140px 1fr !important;
    gap: 20px !important;
    padding: 60px 40px !important;
    background: #03494B !important;
}

/* Thumbnail Gallery */
.scentora-thumbnails {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.scentora-thumb {
    width: 100px !important;
    height: 100px !important;
    border: 2px solid transparent !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.scentora-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.scentora-thumb:hover {
    border-color: #DDCEB5 !important;
    transform: scale(1.05) !important;
}

.scentora-thumb.active {
    border-color: #DDCEB5 !important;
    background: rgba(221, 206, 181, 0.1) !important;
}

/* Main Product Image */
.scentora-main-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    padding: 40px !important;
}

.scentora-product-img {
    max-width: 100% !important;
    max-height: 70vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3)) !important;
}

.scentora-no-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(221, 206, 181, 0.5) !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

/* ========================================
   RIGHT SIDE - PRODUCT DETAILS
   ======================================== */
.scentora-details-section {
    background: #03494B !important;
    padding: 80px 60px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Collection Label */
.scentora-collection {
    margin-bottom: 20px !important;
}

.scentora-collection-label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    color: #DDCEB5 !important;
    font-weight: 600 !important;
    font-family: 'Lato', sans-serif !important;
}

/* Product Title */
.scentora-product-title {
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    color: #ffffff !important;
    font-family: 'Aboreto', serif !important;
}

/* Product Price */
.scentora-price {
    font-size: 32px !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    font-family: 'Lato', sans-serif !important;
}

.scentora-price .woocommerce-Price-amount {
    font-size: 32px !important;
    color: #ffffff !important;
}

/* Product Description */
.scentora-description {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 50px !important;
    max-width: 500px !important;
    font-family: 'Lato', sans-serif !important;
}

.scentora-description p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 15px !important;
}

/* ========================================
   QUANTITY AND ADD TO CART
   ======================================== */
.scentora-cart-section {
    margin-top: 40px !important;
}

.scentora-quantity-cart {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
}

/* Quantity Selector */
.scentora-quantity {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    border: 1px solid rgba(221, 206, 181, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.qty-btn {
    width: 50px !important;
    height: 50px !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Lato', sans-serif !important;
}

.qty-btn:hover {
    background: rgba(221, 206, 181, 0.1) !important;
    color: #DDCEB5 !important;
}

.qty-input {
    width: 80px !important;
    height: 50px !important;
    text-align: center !important;
    border: none !important;
    border-left: 1px solid rgba(221, 206, 181, 0.3) !important;
    border-right: 1px solid rgba(221, 206, 181, 0.3) !important;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Lato', sans-serif !important;
}

.qty-input:focus {
    outline: none !important;
}

/* Add to Cart Button */
.scentora-add-to-cart,
.single_add_to_cart_button {
    flex: 1 !important;
    background: #DDCEB5 !important;
    color: #03494B !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-family: 'Lato', sans-serif !important;
    min-height: 50px !important;
}

.scentora-add-to-cart:hover,
.single_add_to_cart_button:hover {
    background: #c9b89f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(221, 206, 181, 0.3) !important;
}

.scentora-add-to-cart.loading,
.scentora-add-to-cart.added {
    opacity: 0.8 !important;
}

/* ========================================
   VARIABLE PRODUCTS
   ======================================== */
.variations_form .variations {
    margin-bottom: 30px !important;
}

.variations_form .variations select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(221, 206, 181, 0.3) !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    width: 100% !important;
    font-size: 14px !important;
    font-family: 'Lato', sans-serif !important;
}

.variations_form .variations label {
    color: #DDCEB5 !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    display: block !important;
}

.variations_form .woocommerce-variation-add-to-cart {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
}

.variations_form .quantity {
    display: flex !important;
}

.variations_form .quantity input {
    width: 80px !important;
    height: 50px !important;
    text-align: center !important;
    border: 1px solid rgba(221, 206, 181, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Lato', sans-serif !important;
}

/* ========================================
   HIDE DEFAULT WOOCOMMERCE ELEMENTS
   ======================================== */
.scentora-product-wrapper .woocommerce-breadcrumb {
    display: none !important;
}

.scentora-product-wrapper .product_meta {
    display: none !important;
}

.scentora-product-wrapper .woocommerce-tabs {
    display: none !important;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .scentora-product-container {
        grid-template-columns: 1fr !important;
    }

    .scentora-image-section {
        grid-template-columns: 100px 1fr !important;
        padding: 40px 20px !important;
    }

    .scentora-details-section {
        padding: 40px 30px !important;
    }

    .scentora-product-title {
        font-size: 42px !important;
    }

    .scentora-price {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .scentora-image-section {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .scentora-thumbnails {
        flex-direction: row !important;
        overflow-x: auto !important;
    }

    .scentora-thumb {
        flex-shrink: 0 !important;
    }

    .scentora-details-section {
        padding: 30px 20px !important;
    }

    .scentora-product-title {
        font-size: 32px !important;
    }

    .scentora-price {
        font-size: 24px !important;
    }

    .scentora-quantity-cart {
        flex-direction: column !important;
        width: 100% !important;
    }

    .scentora-quantity {
        width: 100% !important;
        justify-content: center !important;
    }

    .scentora-add-to-cart,
    .single_add_to_cart_button {
        width: 100% !important;
    }
}