* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-family: "Montserrat", sans-serif;
    font-family: "Gravitas One", serif;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #;
    color: #000;
    background-image: url("images/w2bg.jpg");
    font-family: "Montserrat", sans-serif;

}

/*=========== HEADER =============== */
.navbar {
    max-width: 100%;
    min-height: 60px;
    background: rgb(7, 30, 35);
}

.header {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    text-transform: capitalize;
    font-family: "Gravitas One", serif;
}

.logo span {
    color: gold;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    font-size: 15px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    color: #fff;
}

nav a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.header .social i {
    margin: 0 6px;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
}

.menubtn,
.closebtn {
    font-size: 28px;
    margin: 0 20px;
    color: #fff;
    display: none;
    cursor: pointer;
}

/* Close button hidden by default */
.closebtn {
    display: none;
}

/*-------------Nav CSS Media Queries------*/
@media only screen and (max-width: 780px) {
    nav {
        display: none;
    }

    .social {
        display: none;
    }

    .footer-links {
        display: none;
    }

    nav a {
        display: block;
        margin: 15px;
    }

    .menubtn {
        display: block;
    }

    #main-menu {
        width: 100%;
        background: rgb(11, 46, 54);
        position: absolute;
        top: 65px;
        right: 0;
        text-align: center;
    }
}

/*=========== HEADER END =============== */
/*=============1-HERO-SECTION===============*/

.hero {
    width: 100%;
    background: #000;
}

.hero a {
    text-decoration: none;
}

.hero .section-content {
    min-height: 100svh;
    min-height: 100vh;
    max-width: 1100px;
    margin-inline: auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    gap: 40px;

}

.hero .ad-details .title {
    font-size: 30px;
    color: aquamarine;
    font-family: "Gravitas One", serif;
}

.hero .ad-details .subtitle {
    margin-top: 8px;
    max-width: 45ch;
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;

}

.hero .ad-details .description {
    margin: 24px 0 40px;
    max-width: 55ch;
    font-size: 17px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;

}

.hero .ad-details .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero .ad-details .button {
    padding: 12px 28px;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #000;
    background: #fff;
    text-transform: capitalize;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;

}

/* Hover only where supported */
@media (hover: hover) {
    .hero .ad-details .button:hover {
        color: aqua;
        border-color: orangered;
        background: transparent;
    }

    .hero .ad-details .contact-us:hover {
        color: orange;
        border-color: #fff;
        background: transparent;
    }
}

.hero .ad-image-wrapper {
    max-width: 500px;
}

.hero .ad-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/*-------------Nav  CSS Media Queries------*/

/* Mobile */
@media (max-width: 768px) {
    .hero .section-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 32px 20px;
    }

    .hero .ad-details .subtitle,
    .hero .ad-details .description {
        max-width: 100%;
    }

    .hero .ad-image-wrapper {
        max-width: 320px;
    }

    .hero .ad-details .button {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
}



/*=============2-MAIN-SECTION===============*/
.main {
    background: #262626;
    text-align: center;
    padding-bottom: 40px;
}

.main .page-title {
    font-size: 32px;
    color: #fff;
    font-family: "Gravitas One", serif;
    padding: 30px 16px;
}

.collections {
    width: 100%;
    display: flex;
    justify-content: center;
}

.collections .slider-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    overflow: hidden;
}

.collections .card-list {
    display: flex;
}

.collections .card-item {
    color: #fff;
    user-select: none;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);

}

.collections .user-image {
    width: 100%;
    height: auto;
    border-radius: 10%;
    object-fit: cover;
    border: 2px solid #fff;
    padding: 4px;
    margin-bottom: 28px;
}

.collections .user-name {
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 12px;
}

/* Description */
.collections .user-description {
    font-size: 1.05rem;
    font-family: "Montserrat", sans-serif;
    color: #e3e3e3;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
}

.collections .button {
    font-size: 1.1rem;
    font-family: "Montserrat", sans-serif;
    padding: 10px 32px;

    color: #030728;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 6px;

    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

@media (hover: hover) {
    .button:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
}

.swiper-pagination {
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff;
}


.slider-wrapper .swiper-slide-button {
    color: #fff;
    margin-top: -50px;
    transition: 0.3s ease;
}

.slider-wrapper .swiper-slide-button:hover {
    color: #2658ff;
}

@media (max-width: 768px) {
    .slider-wrapper {
        margin: 0 10px 40px;
    }

    .slider-wrapper .swiper-slide-button {
        display: none;
    }
}


/* ========== TOP SELLER SECTION ========== */
.top-seller {
    background: #262626;
    padding: 60px 0;
}

/* Container */
.top-seller .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Card list */
.top-seller .card-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Card */
.top-seller .card-item {
    color: #000;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    text-align: left;
}

/* Hover lift (desktop only) */
@media (hover: hover) {
    .top-seller .card-item:hover {
        transform: translateY(-6px);
    }
}

/* Image */
.top-seller .user-image {
    width: 100%;
    height: auto;
    border-radius: 10%;
    object-fit: cover;
    border: 1px solid #000;
    margin-bottom: 20px;
}

/* Name */
.top-seller .user-name {
    font-size: 17px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Description */
.top-seller .user-price {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    color: #000;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}

.top-seller .user-price del {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    color: #000;
    letter-spacing: 2px;
    font-weight: 400;

}

/* Button */
.top-seller .button {
    width: 100%;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    padding: 10px 40px;
    border-radius: 6px;
    color: #fff;
    background: #066352;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Button hover */
@media (hover: hover) {
    .top-seller .button:hover {
        background: #385751;
        color: #fff;
        border-color: #000;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .top-seller .card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-seller {
        padding: 40px 0;
    }

    .top-seller .container {
        padding: 0 px;
    }


    .top-seller .card-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .top-seller .card-item {
        padding: 4px 2px;
    }

    .top-seller .user-image {

        margin-bottom: 15px;
    }

    .top-seller .button {
        width: 100%;
        font-size: 14px;
        padding: 10px 0;
    }

    .top-seller .user-name {
        font-size: 16px;
    }

    /* Description */
    .top-seller .user-price {
        font-size: 18px;
    }

    .top-seller .user-price del {
        font-size: 14px;

    }
}



/* ================= 3-BlogPage SECTION ================= */
.BlogPage {
    width: 100%;
    padding: 40px 0;
}

.BlogPage .container {
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 16px;
    text-align: center;
}

.BlogPage .container .page-title {
    color: #59717a;
}

/* ================= GRID ================= */
.BlogPage .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px auto;
}

/* ================= POST CARD ================= */
.BlogPage .post-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 10px;
}

/* Image */
.BlogPage .post-card img {
    width: 260px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0px;
    border: 2px solid white;
}

/* Content */
.BlogPage .post-content {
    text-align: left;
}

.BlogPage .post-content h2 {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.3;
    word-break: break-word;
    cursor: pointer;
}

.BlogPage .post-content h2:hover {
    text-decoration: underline solid 1px #000;
    text-underline-offset: 2px;
}

.BlogPage .date {
    font-size: 12px;
    color: royalblue;
    font-weight: 400;
    font-family: "Gravitas One", serif;
}

.BlogPage p {
    margin: 10px 0;
    line-height: 1.5;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
}

/* Button */
.BlogPage .read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 8px 14px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-family: "Gravitas One", serif;
    transition: all 0.3s ease;
}

.BlogPage .read-more:hover {
    background: #000;
    color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 780px) {
    .BlogPage .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .BlogPage .post-content h2 {
        font-size: 18px;
    }

    .BlogPage .post-card {
        flex-direction: column;
    }

    .BlogPage .post-card img {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .BlogPage .post-content p {
        font-size: 12px;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    .BlogPage {
        padding: 30px 0;
    }

    .BlogPage h1 {
        font-size: 26px;
    }

    .BlogPage .read-more {
        font-size: 12px;
        padding: 8px 18px;
    }
}

/* =================4-FOOTER ================= */
.footer {
    text-align: center;
    padding: 80px 45px;
    color: #6b7280;
    background: #000;
    font-family: "Poppins", sans-serif;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    margin: 0px 8px;
    text-decoration: none;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer .social {
    margin: 20px 0;
}

.footer .social i {
    margin: 0 6px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}

/* ================= FOOTER END ================= */
