* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
}

.promo-banner {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.promo-code {
    color: #5eb3c7;
    font-weight: bold;
}

.navbar {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.nav-container::after {
    content: "";
    display: table;
    clear: both;
}

.logo {
    float: left;
    margin-right: 50px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    float: left;
    margin-top: 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-right: 35px;
    display: inline-block;
}

.nav-menu a:hover {
    color: #5eb3c7;
}

.nav-menu a.active {
    color: #1a1a1a;
    font-weight: 600;
}

.nav-actions {
    float: right;
    margin-top: 8px;
}

.app-btn {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-right: 15px;
    vertical-align: middle;
}

.app-btn:hover {
    background-color: #333;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    font-size: 20px;
    vertical-align: middle;
    margin-left: 8px;
    color: #333;
}

.icon-btn:hover {
    opacity: 0.7;
}

.hero-gifting {
    background-color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-gifting-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.hero-gifting-content::after {
    content: "";
    display: table;
    clear: both;
}

.hero-gifting-image {
    width: 100%;
    text-align: center;
}

.hero-gifting-image > img:first-child {
    width: 100%;
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.description {
    background-color: #fff;
    padding: 60px 40px;
}

.description-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.description-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.gift-categories {
    background-color: #f8f5f1;
    padding: 80px 40px;
    position: relative;
}

.gift-categories-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.gift-categories-content::after {
    content: "";
    display: table;
    clear: both;
}

.gift-category {
    float: left;
    width: 22%;
    margin-right: 4%;
    text-align: center;
}

.gift-category:last-child {
    margin-right: 0;
}

.gift-category-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e8d5c4;
    position: relative;
}

.gift-category:nth-child(1) .gift-category-circle {
    background-color: #d9b3c1;
}

.gift-category:nth-child(2) .gift-category-circle {
    background-color: #c9a88a;
}

.gift-category:nth-child(3) .gift-category-circle {
    background-color: #d4b896;
}

.gift-category:nth-child(4) .gift-category-circle {
    background-color: #2c3e50;
}

.gift-category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gift-category h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    margin-top: 15px;
}

.bird-decoration {
    position: absolute;
    left: 5%;
    bottom: 15%;
    width: 180px;
    opacity: 0.8;
}

.leaf-decoration {
    position: absolute;
    right: 8%;
    top: 20%;
    width: 120px;
    opacity: 0.8;
}

.celebratory-section {
    background-color: #fff;
    padding: 80px 40px;
    position: relative;
}

.celebratory-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.celebratory-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.leaf-small {
    width: 80px;
    margin: 10px auto 20px;
    display: block;
}

.celebratory-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.products-section {
    background-color: #fff;
    padding: 40px;
    position: relative;
}

.products-content {
    max-width: 1400px;
    margin: 0 auto;
}

.products-content::after {
    content: "";
    display: table;
    clear: both;
}

.product-card {
    float: left;
    width: 23%;
    margin-right: 2%;
    position: relative;
    background-color: #f5f0eb;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.product-card.large {
    width: 50%;
    padding: 0;
}

.product-card:last-child {
    margin-right: 0;
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.sold-out-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #e74c3c;
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.price {
    margin: 15px 0 10px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
    margin-right: 10px;
}

.new-price {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin: 10px 0 15px;
}

.buy-btn {
    background-color: #9cc9d4;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    width: 85%;
    float: left;
}

.buy-btn:hover {
    background-color: #8ab8c3;
}

.buy-btn.sold-out {
    background-color: #b8c9d0;
    cursor: not-allowed;
}

.plus-btn {
    background-color: transparent;
    border: 2px solid #9cc9d4;
    color: #9cc9d4;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    float: right;
    margin-top: 2px;
}

.plus-btn:hover {
    background-color: #9cc9d4;
    color: #fff;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #9cc9d4;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #5eb3c7;
}

.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 60px;
}

.arrow-btn {
    background-color: transparent;
    border: 2px solid #ccc;
    color: #999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

.arrow-btn:hover {
    border-color: #9cc9d4;
    color: #9cc9d4;
}

.wedding-section {
    background-color: #c9a88a;
    padding: 0;
    margin-top: 60px;
}

.wedding-banner {
    max-width: 100%;
    position: relative;
}

.wedding-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.wedding-products {
    background-color: #fff;
    padding: 40px;
}

.wedding-products-content {
    max-width: 1400px;
    margin: 0 auto;
}

.wedding-products-content::after {
    content: "";
    display: table;
    clear: both;
}

.wedding-products .product-card {
    width: 23%;
    margin-right: 2.66%;
}

.wedding-products .product-card:last-child {
    margin-right: 0;
}

.corporate-section {
    background-color: #fff;
    padding: 80px 40px 40px;
}

.corporate-header {
    text-align: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto 20px;
}

.peacock-decoration {
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
}

.corporate-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    display: inline-block;
}

.butterfly-decoration {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
}

.corporate-description {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.corporate-description p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.leaf-right-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
}

.corporate-products {
    background-color: #fff;
    padding: 40px;
}

.corporate-products-content {
    max-width: 1400px;
    margin: 0 auto;
}

.corporate-products-content::after {
    content: "";
    display: table;
    clear: both;
}

.corporate-products .product-card.large {
    width: 50%;
}

.corporate-products .product-card {
    width: 23%;
    margin-right: 2%;
}

.corporate-products .product-card:last-child {
    margin-right: 0;
}

.festive-section {
    background-color: #fff;
    padding: 80px 40px 40px;
}

.festive-header {
    text-align: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto 20px;
}

.tulip-left {
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
}

.festive-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    display: inline-block;
}

.tulip-right {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
}

.festive-description {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.festive-description p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.festive-products {
    background-color: #fff;
    padding: 40px;
    position: relative;
}

.festive-products-content {
    max-width: 1400px;
    margin: 0 auto;
}

.festive-products-content::after {
    content: "";
    display: table;
    clear: both;
}

.festive-products .product-card {
    width: 23%;
    margin-right: 2%;
    float: left;
}

.festive-products .product-card.large {
    width: 50%;
    margin-right: 0;
}

.slider-controls {
    max-width: 1400px;
    margin: 30px auto 0;
    position: relative;
}

.slider-controls::after {
    content: "";
    display: table;
    clear: both;
}

.slider-arrows-left {
    float: left;
}

.slider-arrows-left .arrow-btn {
    background-color: transparent;
    border: 2px solid #ccc;
    color: #999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
}

.slider-arrows-left .arrow-btn:hover {
    border-color: #9cc9d4;
    color: #9cc9d4;
}

.slider-controls .slider-dots {
    float: right;
    margin-top: 10px;
}

.contact-section {
    background-color: #f8f5f1;
    padding: 80px 40px;
}

.contact-header {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
}

.lotus-left {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
}

.contact-text h2 {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.lotus-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
}

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: #9cc9d4;
    padding: 60px;
    border-radius: 8px;
    position: relative;
}

.form-row {
    margin-bottom: 25px;
}

.form-row::after {
    content: "";
    display: table;
    clear: both;
}

.form-row label {
    float: left;
    width: 200px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding-top: 12px;
    letter-spacing: 0.5px;
}

.form-row input {
    float: left;
    width: calc(100% - 200px);
    padding: 12px 20px;
    border: none;
    background-color: #b8dce6;
    border-radius: 4px;
    font-size: 14px;
}

.form-row input:focus {
    outline: none;
    background-color: #c5e4ed;
}

.form-submit {
    text-align: right;
    margin-top: 30px;
}

.submit-btn {
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    padding: 14px 50px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #f0f0f0;
}

.flower-bottom {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.contact-info {
    background-color: #f8f5f1;
    padding: 40px;
    text-align: center;
}

.contact-info-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-content h4 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.footer {
    background-color: #b8dce6;
    padding: 60px 40px;
    position: relative;
    top: 75px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content::after {
    content: "";
    display: table;
    clear: both;
}

.footer-left {
    float: left;
    width: 20%;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links a {
    font-size: 11px;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-social-title {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 30px 0 10px;
    letter-spacing: 0.5px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
}

.footer-newsletter {
    float: left;
    width: 25%;
    padding: 0 20px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.subscribe-btn {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 20px;
}

.subscribe-btn:hover {
    background-color: #333;
}

.newsletter-text {
    font-size: 10px;
    color: #1a1a1a;
    line-height: 1.6;
}

.footer-column {
    float: left;
    width: 15%;
    padding: 0 15px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    font-size: 12px;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.deer-decoration {
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 250px;
}

@media (max-width: 1024px) {
    .hero-gifting-image > img:first-child {
        height: 400px;
    }

    .gift-category {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 30px;
    }

    .gift-category:nth-child(2n) {
        margin-right: 0;
    }

    .product-card.large {
        width: 100%;
        margin-bottom: 20px;
    }

    .product-card {
        width: 48%;
        margin-right: 4%;
    }

    .product-card:nth-child(2n) {
        margin-right: 0;
    }

    .wedding-products .product-card {
        width: 48%;
        margin-right: 4%;
    }

    .wedding-products .product-card:nth-child(2n) {
        margin-right: 0;
    }

    .corporate-products .product-card.large {
        width: 100%;
        margin-bottom: 20px;
    }

    .corporate-products .product-card {
        width: 48%;
        margin-right: 4%;
    }

    .corporate-products .product-card:nth-child(2n) {
        margin-right: 0;
    }

    .corporate-header h2 {
        font-size: 36px;
    }

    .peacock-decoration,
    .butterfly-decoration {
        display: none;
    }

    .festive-products .product-card {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 20px;
    }

    .festive-products .product-card:nth-child(2n) {
        margin-right: 0;
    }

    .festive-products .product-card.large {
        width: 100%;
        margin-right: 0;
    }

    .festive-header h2 {
        font-size: 36px;
    }

    .tulip-left,
    .tulip-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .logo {
        float: none;
        margin: 0 auto;
        text-align: center;
    }

    .nav-actions {
        float: none;
        margin: 15px auto 0;
        width: fit-content;
    }

    .hero-gifting-image > img:first-child {
        height: 300px;
    }

    .description-content p {
        font-size: 16px;
    }

    .gift-category {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .celebratory-content h2 {
        font-size: 32px;
    }

    .celebratory-content p {
        font-size: 16px;
    }

    .product-card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .wedding-products .product-card {
        width: 100%;
        margin-right: 0;
    }

    .corporate-products .product-card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .corporate-header h2 {
        font-size: 32px;
    }

    .corporate-description p {
        font-size: 16px;
    }

    .festive-products .product-card {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .festive-header h2 {
        font-size: 32px;
    }

    .festive-description p {
        font-size: 16px;
    }

    .slider-arrows-left {
        float: none;
        margin: 0 auto 20px;
        text-align: center;
    }

    .slider-controls .slider-dots {
        float: none;
        text-align: center;
    }

    .lotus-left,
    .lotus-right {
        display: none;
    }

    .contact-text h2 {
        font-size: 32px;
    }

    .contact-text p {
        font-size: 16px;
    }

    .form-heading h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .form-row label {
        float: none;
        width: 100%;
        margin-bottom: 8px;
    }

    .form-row input {
        float: none;
        width: 100%;
    }

    .form-submit {
        text-align: center;
    }

    .contact-info-content h3 {
        font-size: 20px;
    }

    .contact-info-content h4 {
        font-size: 18px;
    }

    .footer-left,
    .footer-newsletter,
    .footer-column {
        float: none;
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .deer-decoration {
        position: static;
        width: 150px;
        margin: 30px auto 0;
        display: block;
    }
}