.awna-section {
    width: 100%;
    overflow: hidden;
}

.awna-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .awna-container {
        padding: 0 8px;
    }
}

.awna-header {
    text-align: center;
    margin-bottom: 48px;
}

.awna-title {
    font-family: var(--awb-heading-font, 'Playfair Display'), serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--awb-text, #1C1C1C);
    margin: 0 0 16px 0;
}

.awna-subtitle {
    font-family: var(--awb-body-font, 'DM Sans'), sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #756E72;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.awna-grid {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.awna-cols-2 { grid-template-columns: repeat(2, 1fr); }
.awna-cols-3 { grid-template-columns: repeat(3, 1fr); }
.awna-cols-4 { grid-template-columns: repeat(4, 1fr); }

.awna-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    padding: 16px;
    border: 1px solid rgba(227, 189, 195, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    min-width: 0;
}

.awna-card:hover {
    box-shadow: 0 10px 40px -10px rgba(216, 27, 96, 0.08);
}

.awna-img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f0eded;
    display: flex;
    align-items: center;
    justify-content: center;
}

.awna-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.awna-card:hover .awna-img {
    transform: scale(1.05);
}

.awna-badge-new {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #D81B60;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    line-height: 1;
}

.awna-badge-sale {
    position: absolute;
    top: 34px;
    left: 8px;
    background: #ba1a1a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    line-height: 1;
}

.awna-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    color: #8e6f74;
    padding: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.awna-wishlist:hover {
    color: var(--awb-primary, #D81B60);
    background: transparent !important;
}

.awna-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.awna-brand {
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #756E72;
    margin-bottom: 4px;
    line-height: 1;
}

.awna-product-name {
    font-family: var(--awb-body-font, 'DM Sans'), sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--awb-text, #1C1C1C);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.awna-product-name a {
    color: inherit;
    text-decoration: none;
}

.awna-product-name a:hover {
    color: var(--awb-primary, #D81B60);
}

.awna-rating {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 8px;
}

.awna-review-count {
    font-size: 11px;
    color: #756E72;
    margin-left: 4px;
    line-height: 1;
}

.awna-pricing {
    margin-bottom: 12px;
    margin-top: auto;
}

.awna-pricing .price {
    font-size: 18px;
    font-weight: 700;
    color: #b0004a;
    line-height: 1;
    margin: 0;
}

.awna-pricing .price del {
    font-size: 13px;
    color: #756E72;
    text-decoration: line-through;
    margin-right: 6px;
}

.awna-pricing .price ins {
    text-decoration: none;
}

.awna-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: auto;
}

.awna-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border: 0.5px solid var(--awb-primary, #D81B60);
    border-radius: 4px;
}

.awna-qty-btn {
    width: 22px;
    height: 22px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    color: var(--awb-primary, #D81B60) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    padding: 0;
    flex-shrink: 0;
}

.awna-qty-btn:hover {
    background: rgba(216, 27, 96, 0.08) !important;
    color: var(--awb-primary-hover, #C2185B) !important;
}

.awna-qty-input {
    width: 26px;
    height: 22px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--awb-primary, #D81B60);
    border-right: 1px solid var(--awb-primary, #D81B60);
    font-family: var(--awb-body-font, 'DM Sans'), sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--awb-text, #1C1C1C);
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
    outline: none;
    padding: 0;
    flex-shrink: 0;
}

.awna-qty-input::-webkit-inner-spin-button,
.awna-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.awna-add-btn {
    background: var(--awb-primary, #D81B60) !important;
    color: #ffffff !important;
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 20px;
    border-radius: 9999px;
    text-align: center;
    text-decoration: none;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: background 0.3s ease;
    line-height: 1;
    white-space: nowrap;
    width: 100%;
}

.awna-add-btn:hover {
    background: var(--awb-primary-hover, #C2185B) !important;
    color: #ffffff !important;
}

@media screen and (max-width: 1024px) {
    .awna-cols-2,
    .awna-cols-3,
    .awna-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .awna-add-btn {
        font-size: 11px;
        padding: 10px 16px;
        letter-spacing: 0.5px;
    }

    .awna-qty-btn {
        width: 18px;
        height: 20px;
        font-size: 11px !important;
    }

    .awna-qty-input {
        width: 22px;
        height: 20px;
        font-size: 11px;
    }
}

@media screen and (max-width: 768px) {
    .awna-header {
        margin-bottom: 32px;
    }

    .awna-title {
        font-size: 32px;
    }

    .awna-add-btn {
        font-size: 11px;
        padding: 10px 14px;
        letter-spacing: 0.5px;
    }

    .awna-qty-btn {
        width: 14px;
        height: 18px;
        font-size: 9px !important;
    }

    .awna-qty-input {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}

@media screen and (max-width: 480px) {
    .awna-qty-btn {
        width: 20px;
        height: 24px;
        font-size: 12px !important;
    }

    .awna-qty-input {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .awna-add-btn {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .awna-card {
        padding: 12px;
    }
}

.awna-show-more-wrap {
    text-align: center;
    margin-top: 48px;
}

.awna-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--awb-primary, #D81B60);
    font-family: Montserrat, var(--awb-ui-font, Inter), sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 40px;
    border: 1.5px solid var(--awb-primary, #D81B60);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    min-width: 200px;
    text-decoration: none;
}

.awna-show-more:hover {
    background: var(--awb-primary, #D81B60);
    color: #ffffff;
}
