@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

.aeon-main-wrapper {
    font-family: 'Cormorant Garamond', serif;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px 0;
}

.aeon-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Color Swatches */
.aeon-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    background-color: #ccc; /* Fallback color */
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Backgrounds - Inka slug WooCommerce ke slug se match hona chahiye */
.aeon-swatch[data-color="black"] { background-color: #1a1a1a; }
.aeon-swatch[data-color="beige"] { background-color: #e9e3d6; }
.aeon-swatch[data-color="offwhite"], 
.aeon-swatch[data-color="off-white"] { background-color: #f5f5f0; }

/* Active/Selected Swatch Style */
.aeon-swatch.active {
    border: 1px solid #000;
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px #000;
}

.aeon-label {
    font-size: 8px;
    font-weight: 600;
    color: rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* Size Buttons */
.size-btn {
    width: 60px;
    height: 38px;
    background: transparent;
    border: 1px solid #d3d3d7;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.size-btn:hover {
    background-color: #f7f7f7;
    border-color: #000;
}

/* Size Guide Text */
.aeon-size-guide {
    font-size: 13px;
    letter-spacing: 1px;
    color: #444;
}