/* Color Palette from Image */
:root {
    --bg-light: #F8F9FB;    /* Background 01 */
    --blue-primary: #5caad8; /* Blue 02 */
    --blue-dark: #3F749C;    /* Dark Blue 03 */
    --text-black: #1a1a1a;
}

.maayon-dribbble-hero {
    padding: 30px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.uagb-block-474c825a{
    background-image:url('https://maayonfashion.com/wp-content/uploads/2024/02/White-and-Grey-Simple-Animated-Formal-Mens-Wear-Promo-Video.jpg') !important;
}
/* The Large Blue Card */
.hero-card {
    background-color: var(--blue-primary);
    width: 100%;
    max-width: 1300px;
    border-radius: 40px; /* High rounding like the iPad screen */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(115, 165, 202, 0.2);
}

.hero-main-content {
    padding: 60px 80px 100px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.new-tag {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin: 15px 0;
    font-weight: 700;
}

.hero-text p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
    color:#ffffff;
}

.btn-explore {
    background: #ffffff;
    color: var(--blue-dark);
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-explore:hover {
    background: var(--blue-dark);
    color: #fff;
}

/* Model Image Styling */
.hero-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.model-img {
    max-height: 450px;
    width: auto;
    object-fit: contain;
}

/* Wavy White Trust Bar */
.hero-trust-bar {
    background: #ffffff;
    padding: 30px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* This creates the 'wave' or notch effect from the image */
    border-radius: 40px 40px 0 0; 
    margin: 0 15px; 
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item .icon { font-size: 24px; }

.trust-text strong {
    display: block;
    font-size: 14px;
    color: var(--text-black);
}

.trust-text span {
    font-size: 12px;
    color: #888;
}

/* Bottom Featured Section */
.featured-capsule {
    width: 100%;
    max-width: 1300px;
    margin-top: 50px;
}

.capsule-header .label {
    font-size: 10px;
    font-weight: 800;
    color: var(--blue-primary);
    letter-spacing: 1px;
}

.capsule-header h3 {
    font-size: 24px;
    margin: 5px 0 20px 0;
    color: var(--text-black);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-card {
    background: #fff;
    border-radius: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s;
}

.mini-card img {
    max-height: 80%;
    width: auto;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-main-content { flex-direction: column; text-align: center; padding: 40px 20px; }
    .hero-trust-bar { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: 1fr; }
    .hero-images { margin-top: 30px; }
}