/*// =============================================================================
// Ella Custom CSS - Customize The Style For Layout
// =============================================================================

/* custom rugs */
.custom-size-button {
    background: #d4a574;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin: 15px 0;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.custom-size-button:hover {
    background: #c19660;
}

.custom-size-calculator {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.calculator-header {
    background: #f0f0f0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.calculator-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.close-calculator {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-calculator:hover {
    color: #333;
}

.calculator-content-compact {
    padding: 20px;
}

.dimensions-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.shape-selector-compact {
    flex: 0 0 120px;
}

.shape-selector-compact label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.shape-selector-compact select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    height: 34px;
}

.dimensions-inputs-compact {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 200px;
}

.input-group-compact {
    flex: 1;
    min-width: 80px;
}

.input-group-compact label {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.input-group-compact input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
    height: 34px;
}

.input-group-compact input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 3px rgba(212, 165, 116, 0.3);
}

.shape-preview-compact {
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 80px;
}

.results-row {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    flex-wrap: wrap;
}

.area-display-compact,
.price-display-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 120px;
}

.area-display-compact .label,
.price-display-compact .label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

#area-display {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

#calculated-price-display {
    font-size: 14px;
    font-weight: bold;
    color: #d4a574;
}

.calculate-button-compact {
    background: #d4a574;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    height: 34px;
    flex-shrink: 0;
}

.calculate-button-compact:hover {
    background: #c19660;
}

.calculator-note-compact {
    background: #e7f3ff;
    padding: 10px 15px;
    font-size: 11px;
    color: #0066cc;
    border-top: 1px solid #ddd;
    margin: 0;
}

/* Responsive Design for Compact Layout */
@media (max-width: 768px) {
  .product-accordion-content table.MsoNormalTable{
 width: unset !important; 
}
    .dimensions-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shape-selector-compact {
        flex: none;
    }
    
    .dimensions-inputs-compact {
        min-width: auto;
    }
    
    .shape-preview-compact {
        flex: none;
        height: 60px;
    }
    
    .results-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .area-display-compact,
    .price-display-compact {
        min-width: auto;
        justify-content: center;
    }
    
    .calculator-content-compact {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .dimensions-inputs-compact {
        flex-direction: column;
        gap: 8px;
    }
    
    .calculator-header {
        padding: 12px 15px;
    }
    
    .calculator-header h3 {
        font-size: 14px;
    }
    
    .custom-size-button {
        max-width: none;
    }
}
#shape-frame svg{
    width:100;
    height:80;
}
a.slide-button.button.no-des{
    font-size: 24px !important;
}
/* shipping and return tab table */
table.MsoNormalTable{
 width: unset !important; 
}
// =============================================================================
//
// IMPORTANT DISCLAIMER
// Shopify is notifying shop owners about the need to convert scss files to css files.
// Please use only CSS to style the layout.
//
// =============================================================================*/
