
.familyvibes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
}

.familyvibes-header {
    text-align: center;
    margin-bottom: 40px;
}

.familyvibes-header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.familyvibes-header p {
    color: #666;
    font-size: 1.1em;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 40px;
}

.step {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    font-size: 14px;
}

.step.active .step-number {
    background: #ff6b35;
    color: white;
}

/* Upload Section */
.upload-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.upload-box {
    border: 3px solid #ff6b35;
    border-radius: 8px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 60px 80px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.upload-area:hover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.upload-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.upload-text h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.upload-text p {
    color: #666;
    font-size: 0.9em;
}

/* Customize Section */
.customize-section {
    background: #fff;
}

.customize-layout {
    display: flex;
    gap: 20px;
    min-height: 600px;
}

/* Left Sidebar */
.sidebar {
    width: 80px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-item {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px;
    font-size: 12px;
}

.sidebar-item.active {
    background: #ff6b35;
    color: white;
}

.sidebar-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Main Preview */
.main-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.preview-container {
    margin-bottom: 40px;
}

.photo-frame {
    width: 300px;
    height: 400px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: border-color 0.3s;
}

.photo-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Frame Selector */
.frame-selector {
    display: flex;
    gap: 15px;
}

.frame-option {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
    overflow: hidden;
}

.frame-option.selected {
    border-color: #ff6b35;
}

.frame-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.frame-option[data-color="black"] {
    background: #000;
}

.frame-option[data-color="brown"] {
    background: #8B4513;
}

.frame-option[data-color="gold"] {
    background: #FFD700;
}

/* Right Sidebar - Frame Details */
.frame-details {
    width: 250px;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.frame-details h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.3em;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #666;
}

.detail-item select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

.price-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.item-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
}

.add-to-cart {
    width: 100%;
    padding: 15px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .customize-layout {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 15px;
    }
    
    .frame-details {
        width: 100%;
    }
    
    .main-preview {
        padding: 20px;
    }
    
    .photo-frame {
        width: 250px;
        height: 330px;
    }
}

.customize-layout { display: flex; justify-content: space-between; }
    .sidebar { width: 100px; background: #f5f5f5; padding: 10px; display: flex; flex-direction: column; justify-content: space-between; }
    .sidebar-item { text-align: center; margin-bottom: 15px; cursor: pointer; }
    .sidebar-item.active { background: #FFA500; color: white; border-radius: 5px; }
    .upload-btn { margin-top: auto; background: #FFA500; color: white; border-radius: 5px; padding: 5px 0; }
    .main-preview { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .preview-container { width: 300px; height: 400px;display: flex; align-items: center; justify-content: center; }
    .photo-frame img { width: 100px; height: 140px; object-fit: cover; }
    .thumbnail-section { display: flex; align-items: center; margin-top: 20px; }
    .nav-btn { background: #FFA500; border: none; color: white; font-size: 20px; padding: 5px 10px; cursor: pointer; border-radius: 5px; }
    .thumbnail-container { display: flex; overflow-x: auto; max-width: 400px; }
    .thumbnail-container img { width: 100px; height: 140px; object-fit: cover; margin: 0 5px; border: 2px solid transparent; cursor: pointer; }
    .thumbnail-container img.selected { border-color: #FFA500; }
    .frame-details { width: 250px; background: #f5f5f5; padding: 20px; }
    .detail-item { margin-bottom: 15px; }
    .price-section { margin-top: 20px; }
    .add-to-cart { background: #FFA500; color: white; border: none; padding: 10px 15px; cursor: pointer; border-radius: 5px; }
    .upload-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; }
    .upload-popup-content { background: white; padding: 30px; border-radius: 10px; text-align: center; position: relative; }
    .close-btn { position: absolute; top: 10px; right: 15px; font-size: 30px; cursor: pointer; }

    #frameList {
        border: 1px solid #ddd;
        padding: 10px;
        width: 200px;
    }

    .frame-item:hover {
        background-color: #f0f0f0;
    }

    #photoFrame {
        box-sizing: border-box;
        
    }
    /* .photo-frame {
        padding: 15px; 
        display: inline-block;
        border: 10px solid transparent;
        border-radius: 5px;
        transition: border-color 0.3s ease;
    } */



/* Cropper Modal Styles */
.cropper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.cropper-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    max-width: 90vw; 
    /* max-height: 90vh; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cropper-image {
    max-width: 600px;
    max-height: 500px;
    display: block;
    margin: 0 auto;
}

.crop-btn {
    margin-top: 20px;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.crop-btn:hover {
    background: #e55a2e;
}

/* Frame List Styles */
#frameList, #frameSizeList {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.frame-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin: 0;
    border: none;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.frame-item:last-child {
    border-bottom: none;
}

.frame-item:hover {
    background: #f8f9fa;
    transform: translateX(3px);
}

.frame-item.selected {
    background: #ff6b35;
    color: white;
}

.frame-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    border: 2px solid #ddd;
}

.frame-item.selected img {
    border-color: white;
}

.frame-size-item {
    padding: 12px 15px;
    margin: 0;
    border: none;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 14px;
}

.frame-size-item:last-child {
    border-bottom: none;
}

.frame-size-item:hover {
    background: #f8f9fa;
    transform: translateX(3px);
}

.frame-size-item.selected {
    
    color: #000;
    font-weight: 600;
}

/* Sidebar Enhancement */
.sidebar-item:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.sidebar-item.upload-btn:hover {
    background: #e55a2e;
}

/* Close Button Enhancement */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 1;
}

.close-btn:hover {
    color: #ff6b35;
    transform: scale(1.1);
}

/* Frame Wrapper Enhancement */
/* .frame-wrapper {
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.frame-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
} */

/* Responsive Cropper */
@media (max-width: 768px) {
    .cropper-content {
        padding: 20px;
        margin: 20px;
    }
    
    .cropper-image {
        max-width: 100%;
        max-height: 400px;
    }
}

.page-id-10 .site-main .woocommerce .woocommerce-cart-form table.shop_table tbody .product-name a{
    display: none;

}