/*
Theme Name: devdukaan
Theme URI: https://devdukaan.com/
Description: Child theme for Genesis
Author: Your Name
Template: genesis
Version: 1.0
*/

/* Add your custom CSS below */


.diwali-hero {
	max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    background: transparent;
    color: #fff;
    overflow: hidden;
}

.diwali-hero-left {
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diwali-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 7px 16px;
    margin-bottom: 22px;
    border: 1px solid #80633a;
    border-radius: 30px;
    color: #e9bd69;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 12px;
}

.diwali-badge > div {
    width: 7px;
    height: 7px;
    background: #e9bd69;
    border-radius: 50%;
    flex-shrink: 0;
}

.diwali-hero-left h1 {
    margin: 0 0 20px;
    font-weight: 400;
    color: #fff;
}

.diwali-hero-left h1 strong {
    color: #e9bd69;
    font-weight: 400;
}

.diwali-hero-left p {
    max-width: 650px;
    margin: 0 0 32px;
    color: #c7b9b9;
}

.diwali-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 38px;
}

.diwali-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.diwali-btn.primary {
    background: #e9bd69;
    color: #1a0a0a;
}

.diwali-btn.secondary {
    border: 1px solid #554242;
    color: #fff;
}

.diwali-btn:hover {
    transform: translateY(-2px);
}

.diwali-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: #b9aaaa;
}

.diwali-trust > div {
    margin: 0;
}

.diwali-hero-right {
    position: relative;
    min-height: 550px;
    background-image: url("YOUR-DIWALI-IMAGE.jpg");
    background-size: cover;
    background-position: center;
}

.diwali-hero-right:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 10, 10, 0.35),
        transparent 45%
    );
    pointer-events: none;
}

.diwali-special-box {
    position: absolute;
    right: 35px;
    bottom: 30px;
    z-index: 2;
    width: 400px;
    min-height: 105px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    color: #160808;
    border-radius: 18px;
    box-sizing: border-box;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.diwali-special-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fffaf0;
    border-radius: 10px;
}

.diwali-special-content {
    flex: 1;
}

.diwali-special-content > div:first-child {
    display: block;
    margin-bottom: 3px;
    color: #a48a70;
    letter-spacing: 1.5px;
	font-size: 16px;
}

.diwali-special-content p {
    margin: 0 0 7px;
    color: #171010;
    font-weight: 500;
	font-size: 16px;
}

.diwali-price {
    display: flex;
    align-items: center;
    gap: 7px;
}

.diwali-price strong {
    color: #171010;
}

.diwali-price del {
    color: #8c8585;
}

.diwali-price b {
    padding: 3px 7px;
    border-radius: 10px;
    background: #510d1b;
    color: #fff;
}


/* Tablet */
@media (max-width: 1024px) {
    .diwali-hero-left {
        padding: 50px 30px;
    }

    .diwali-special-box {
        right: 20px;
        bottom: 20px;
        width: 300px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .diwali-hero {
        grid-template-columns: 1fr;
    }

    .diwali-hero-left {
        padding: 45px 20px;
    }

    .diwali-hero-right {
        min-height: 420px;
    }

    .diwali-special-box {
        right: 15px;
        bottom: 20px;
        left: 15px;
        width: auto;
    }

    .diwali-buttons {
        flex-wrap: wrap;
    }

    .diwali-trust {
        gap: 12px;
    }
}