﻿/* No Products Page Styles - Prefixed with .mydawa-no-products */

.mydawa-no-products-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    padding: 40px 20px;
    background: #fff;
}

.mydawa-no-products-container {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.mydawa-no-products-title {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mydawa-no-products-subtitle {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.mydawa-no-products-categories {
    margin-top: 40px;
    margin-bottom: 0;
}

.mydawa-no-products-categories-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
}

    .mydawa-no-products-categories-header::before,
    .mydawa-no-products-categories-header::after {
        content: '';
        flex: 1;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(230, 27, 119, 0.2), transparent);
        max-width: 80px;
    }

.mydawa-no-products-categories-icon {
    font-size: 28px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.15) rotate(10deg);
        opacity: 0.8;
    }
}

.mydawa-no-products-categories-title {
    font-size: 26px;
    color: #1a202c;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, rgb(230, 27, 119) 0%, rgb(200, 20, 100) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mydawa-no-products-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}

.mydawa-no-products-category-btn {
    background: white;
    border: 2px solid #f0f0f0;
    padding: 20px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

    .mydawa-no-products-category-btn:hover {
        border-color: rgb(230, 27, 119);
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(230, 27, 119, 0.15);
        background: #fffbfc;
    }

.mydawa-no-products-category-icon {
    font-size: 40px;
    transition: all 0.3s ease;
}

.mydawa-no-products-category-btn:hover .mydawa-no-products-category-icon {
    transform: scale(1.15);
}

.mydawa-no-products-category-text {
    font-size: 14px;
    font-weight: 600;
    color: rgb(230, 27, 119);
    white-space: nowrap;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .mydawa-no-products-wrapper {
        padding: 30px 15px;
    }

    .mydawa-no-products-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .mydawa-no-products-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .mydawa-no-products-categories-header::before,
    .mydawa-no-products-categories-header::after {
        max-width: 40px;
    }

    .mydawa-no-products-categories-icon {
        font-size: 24px;
    }

    .mydawa-no-products-categories-title {
        font-size: 20px;
    }

    .mydawa-no-products-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mydawa-no-products-category-btn {
        padding: 16px 12px;
    }

    .mydawa-no-products-category-icon {
        font-size: 32px;
    }

    .mydawa-no-products-category-text {
        font-size: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .mydawa-no-products-categories-title {
        font-size: 22px;
    }

    .mydawa-no-products-categories-grid {
        gap: 14px;
    }

    .mydawa-no-products-category-btn {
        padding: 18px 14px;
    }

    .mydawa-no-products-category-icon {
        font-size: 36px;
    }
}

.mydawa-no-products-container {
    max-width: 900px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(230, 27, 74, 0.12), 0 0 1px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
}

.mydawa-no-products-logo {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mydawa-no-products-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(230, 27, 74, 0.1));
}

.mydawa-no-products-icon {
    font-size: 90px;
    margin-bottom: 30px;
    animation: mydawa-float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(230, 27, 74, 0.2));
}

@keyframes mydawa-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.mydawa-no-products-title {
    font-size: 38px;
    color: #1f2937;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mydawa-no-products-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mydawa-no-products-notify-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 242, 244, 0.9) 100%);
    border: 2px solid rgba(230, 27, 74, 0.2);
    padding: 40px 35px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(230, 27, 74, 0.08);
    transition: all 0.3s ease;
}

    .mydawa-no-products-notify-section:hover {
        border-color: rgba(230, 27, 74, 0.4);
        box-shadow: 0 15px 40px rgba(230, 27, 74, 0.12);
    }

.mydawa-no-products-notify-title {
    color: rgb(230, 27, 74);
    font-size: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
}

.mydawa-no-products-notify-text {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.mydawa-no-products-form {
    display: flex;
    gap: 12px;
    max-width: 550px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mydawa-no-products-email-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 22px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

    .mydawa-no-products-email-input:focus {
        outline: none;
        border-color: rgb(230, 27, 74);
        box-shadow: 0 0 0 4px rgba(230, 27, 74, 0.08);
        transform: translateY(-2px);
    }

.mydawa-no-products-notify-btn {
    padding: 16px 35px;
    background: linear-gradient(135deg, rgb(230, 27, 74) 0%, rgb(200, 20, 64) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(230, 27, 74, 0.3);
}

    .mydawa-no-products-notify-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(230, 27, 74, 0.4);
    }

    .mydawa-no-products-notify-btn:active {
        transform: translateY(-1px);
    }

.mydawa-no-products-success-message {
    display: none;
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    color: #065f46;
    padding: 14px 24px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 600;
    border: 1px solid #86efac;
}

    .mydawa-no-products-success-message.show {
        display: block;
        animation: mydawa-slideIn 0.4s ease;
    }

@keyframes mydawa-slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mydawa-no-products-button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.mydawa-no-products-btn {
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.mydawa-no-products-btn-primary {
    background: linear-gradient(135deg, rgb(230, 27, 74) 0%, rgb(200, 20, 64) 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(230, 27, 74, 0.3);
}

    .mydawa-no-products-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(230, 27, 74, 0.4);
    }

.mydawa-no-products-btn-secondary {
    background: white;
    color: rgb(230, 27, 74);
    border: 2px solid rgb(230, 27, 74);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .mydawa-no-products-btn-secondary:hover {
        background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230, 27, 74, 0.15);
    }

.mydawa-no-products-categories {
    margin-bottom: 40px;
}

.mydawa-no-products-categories-title {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.mydawa-no-products-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 100%;
    margin: 0 auto;
}

.mydawa-no-products-category-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 242, 244, 0.5) 100%);
    border: 2px solid rgba(230, 27, 74, 0.1);
    padding: 28px 18px;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

    .mydawa-no-products-category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(230, 27, 74, 0.03) 0%, rgba(230, 27, 74, 0.08) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .mydawa-no-products-category-card:hover::before {
        opacity: 1;
    }

    .mydawa-no-products-category-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgb(230, 27, 74);
        box-shadow: 0 12px 30px rgba(230, 27, 74, 0.2);
    }

.mydawa-no-products-category-icon {
    font-size: 42px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.mydawa-no-products-category-card:hover .mydawa-no-products-category-icon {
    transform: scale(1.15) rotate(5deg);
}

.mydawa-no-products-category-name {
    font-size: 16px;
    font-weight: 700;
    color: rgb(230, 27, 74);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

.mydawa-no-products-category-desc {
    font-size: 13px;
    color: #6b7280;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.mydawa-no-products-suggestions {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 242, 244, 0.6) 100%);
    border-left: 4px solid rgb(230, 27, 74);
    padding: 28px 30px;
    border-radius: 16px;
    text-align: left;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mydawa-no-products-suggestions-title {
    color: rgb(230, 27, 74);
    font-size: 19px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.mydawa-no-products-suggestions ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mydawa-no-products-suggestions li {
    color: #4b5563;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .mydawa-no-products-suggestions li:hover {
        color: rgb(230, 27, 74);
        transform: translateX(5px);
    }

    .mydawa-no-products-suggestions li:before {
        content: "→ ";
        color: rgb(230, 27, 74);
        font-weight: bold;
        margin-right: 10px;
        font-size: 16px;
    }

.mydawa-no-products-help-text {
    margin-top: 30px;
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.8;
    font-weight: 500;
}

@media (max-width: 600px) {
    .mydawa-no-products-container {
        padding: 45px 28px;
    }

    .mydawa-no-products-logo-img {
        height: 40px;
    }

    .mydawa-no-products-icon {
        font-size: 70px;
    }

    .mydawa-no-products-title {
        font-size: 28px;
    }

    .mydawa-no-products-subtitle {
        font-size: 16px;
    }

    .mydawa-no-products-form {
        flex-direction: column;
    }

    .mydawa-no-products-email-input {
        min-width: 100%;
    }

    .mydawa-no-products-notify-btn {
        width: 100%;
        justify-content: center;
    }

    .mydawa-no-products-button-group {
        flex-direction: column;
    }

    .mydawa-no-products-btn {
        width: 100%;
    }

    .mydawa-no-products-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mydawa-no-products-category-card {
        padding: 20px 12px;
    }

    .mydawa-no-products-category-icon {
        font-size: 36px;
    }

    .mydawa-no-products-category-name {
        font-size: 14px;
    }

    .mydawa-no-products-category-desc {
        font-size: 12px;
    }
}

@media (min-width: 601px) and (max-width: 850px) {
    .mydawa-no-products-container {
        padding: 50px 35px;
    }

    .mydawa-no-products-categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .mydawa-no-products-category-card {
        padding: 22px 12px;
    }

    .mydawa-no-products-category-icon {
        font-size: 36px;
    }

    .mydawa-no-products-category-name {
        font-size: 14px;
    }

    .mydawa-no-products-category-desc {
        font-size: 12px;
    }
}
