/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ebeade;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Section */
.navbar-section {
    width: 100%;
    height: 174px;
    position: relative;
}

.navbar-container {
    position: relative;
    width: 100%;
    height: 174px;
}

.navbar-gradient {
    width: 100%;
    height: 110px;
    background: linear-gradient(90deg, rgba(120,0,0,1) 0%, rgba(120,0,0,0.8) 59%, rgba(255,255,255,1) 98%);
}

.navbar-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.navbar-logo {
    width: 112px;
    height: 52px;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-title {
     font-family:"Copperplate";
    font-weight: normal;
    color: #edc87e;
    font-size: 32px;
    line-height: normal;
    white-space: nowrap;
    text-align: center;
}

.navbar-subtitle-logo {
    width: 96px;
    height: 14px;
    margin-top: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar-login {
    display: flex;
    align-items: center;
    gap: 16px;
}

.login-button {
     font-family:"Copperplate";
    font-weight: normal;
    color: #8c0000;
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.25s;
}

.login-button:hover {
    opacity: 0.8;
}

.user-icon {
    width: 25px;
    height: 25px;
}

.navbar-bottom-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background-color: #8c0000;
}

.navbar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.price-display {
    display: flex;
    gap: 32px;
}

.price-item {
     font-family:"Copperplate";
    font-weight: normal;
    color: #edc77e;
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
}

.tagline {
     font-family:"Copperplate";
    font-weight: normal;
    color: #edc77e;
    font-size: 20px;
    line-height: normal;
    white-space: nowrap;
}

.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 173px;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 696px;
    background-color: #8c0000;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    max-width: 650px;
}

.hero-title {
     font-family:"Copperplate";
    font-weight: normal;
    color: #f5f3e6;
    font-size: 48px;
    line-height: normal;
    margin-bottom: 16px;
}

.hero-description {
     font-family:"Copperplate";
    font-weight: normal;
    color: #f5f3e6;
    font-size: 20px;
    line-height: normal;
    max-width: 489px;
    margin-bottom: 32px;
}

.hero-button {
    background-color: #f5f3e6;
    color: #8c0000;
    border-radius: 10px;
    border: none;
    padding: 10px 8px;
    min-width: 218px;
    cursor: pointer;
    transition: background-color 0.25s;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-button:hover {
    background-color: rgba(245, 243, 230, 0.9);
}

.button-text {
     font-family:"Copperplate";
    font-weight: normal;
    font-size: 15px;
    line-height: normal;
}

.button-arrow {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: normal;
}

.quality-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quality-icon {
    width: 24px;
    height: 24px;
}

.quality-text {
     font-family:"Copperplate";
    font-weight: normal;
    color: #d09c50;
    font-size: 15px;
    line-height: normal;
    white-space: nowrap;
}

.hero-coins {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coins-container {
    position: relative;
    width: 635px;
    height: 398px;
}

.coin-1 {
    position: absolute;
    width: 244px;
    height: 388px;
    top: 0;
    left: 278px;
    z-index: 20;
}

.coin-2 {
    position: absolute;
    width: 343px;
    height: 342px;
    top: 77px;
    left: 0;
    z-index: 10;
}

.coin-3 {
    position: absolute;
    width: 203px;
    height: 326px;
    top: 94px;
    left: 458px;
    z-index: 30;
}

/* Categories Section */
.categories-section {
    width: 100%;
    position: relative;
    padding: 64px 0;
}


.section-header {
    text-align: center;
    margin-bottom: 64px;
}







.category-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-bg {
    position: absolute;
    width: 230px;
    height: 341px;
    top: 0;
    left: 0;
}









/* Product Highlights Section */
.product-highlights-section {
    position: relative;
    width: 100%;
}

.highlights-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.highlights-bg-1 {
    position: absolute;
    width: 100%;
    height: 586px;
    top: 0;
    left: 0;
    object-fit: cover;
}

.highlights-bg-2 {
    position: absolute;
    width: 100%;
    height: 586px;
    top: 586px;
    left: 0;
    object-fit: cover;
}

.highlights-bg-3 {
    position: absolute;
    width: 100%;
    height: 586px;
    top: 1172px;
    left: 0;
    object-fit: cover;
}

.highlights-content {
    position: relative;
    z-index: 10;
    padding: 0 16px;
}

.highlights-header {
    text-align: center;
    margin-bottom: 64px;
    padding-top: 64px;
}

.highlights-title {
     font-family:"Copperplate";
    font-weight: normal;
    color: #8c0000;
    font-size: 64px;
    line-height: 71px;
    margin-bottom: 16px;
}

.highlights-subtitle {
    font-family: 'Copperplate Gothic Light', Helvetica, sans-serif;
    font-weight: normal;
    color: #8c0000;
    font-size: 24px;
    line-height: 26px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1366px;
    margin: 0 auto;
}

.product-card {
    background-color: rgba(6, 76, 82, 0.1);
    border-radius: 25px;
    padding: 16px;
}

.product-card-bottom {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card:nth-child(4) {
        grid-column: 1;
    }
    
    .product-card:nth-child(5) {
        grid-column: 3;
    }
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 391px;
    background-color: #d9d9d9;
    border-radius: 15px;
    margin-bottom: 16px;
    overflow: hidden;
}

.product-bg {
    position: absolute;
    width: 309px;
    height: 309px;
    top: 43px;
    left: 40px;
}

.product-main {
    position: absolute;
    width: 249px;
    height: 249px;
    top: 75px;
    left: 74px;
}

.product-info {
    padding: 0 16px 16px;
}

.product-title {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 8px;
}

.product-description {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 16px;
}

.product-price {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    font-size: 32px;
    line-height: 39px;
}

.price-main {
    font-size: 32px;
}

.price-note {
    font-size: 10px;
}

/* Stats Section */
.stats-section {
    width: 100%;
    position: relative;
    padding: 64px 0;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 40px;
}

@media (min-width: 1024px) {
    .stats-content {
        flex-direction: row;
        gap: 64px;
    }
}

.stats-text {
    flex: 1;
}

.stats-why {
     font-family:"Copperplate";
    font-weight: normal;
    color: #8c0000;
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 8px;
}

.stats-title {
     font-family:"Copperplate";
    font-weight: normal;
    color: #8c0000;
    font-size: 96px;
    line-height: normal;
    margin-bottom: 16px;
}

.stats-subtitle {
     font-family:"Copperplate";
    font-weight: normal;
    color: rgba(140, 0, 0, 0.58);
    font-size: 15px;
    line-height: normal;
    margin-bottom: 24px;
}

.stats-description {
    max-width: 464px;
    font-family: 'Copperplate Gothic Light', Helvetica, sans-serif;
    font-weight: normal;
    color: #8c0000;
    font-size: 20px;
    line-height: normal;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
     font-family:"Copperplate";
    font-weight: normal;
    color: #8c0000;
    font-size: 96px;
    line-height: normal;
    margin-bottom: 16px;
}

.stat-desc {
    font-family: 'Copperplate Gothic Light', Helvetica, sans-serif;
    font-weight: normal;
    color: #8c0000;
    font-size: 20px;
    line-height: normal;
    max-width: 220px;
}

/* Why NIBR Section */
.why-nibr-section {
    position: relative;
    width: 100%;
    /* height: 726px; */
    background-color: #8c0000;
    background-image: url(../img/appimages/image67.png);
    background-size: 100% 100%;
}

.why-nibr-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 96px 64px;
}

.why-nibr-text {
    display: flex;
    flex-direction: column;
    max-width: 652px;
    gap: 32px;
}

.why-nibr-quote {
     font-family:"Copperplate";
    font-weight: normal;
    color: #ebeade;
    font-size: 40px;
    line-height: normal;
    font-style: normal;
}

.why-nibr-author {
    font-family: 'Gill Sans MT', Helvetica, sans-serif;
    font-weight: bold;
    font-style: italic;
    color: #ebeade;
    font-size: 20px;
    line-height: normal;
}

.why-nibr-description {
    font-family: 'Copperplate Gothic Light', Helvetica, sans-serif;
    font-weight: normal;
    color: #ebeade;
    font-size: 24px;
    line-height: normal;
}

.why-nibr-features {
    font-family: 'Copperplate Gothic Light', Helvetica, sans-serif;
    font-weight: normal;
    color: #ebeade;
    font-size: 24px;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-nibr-image {
    width: 537px;
    height: 537px;
    background-color: #ebeade;
    border-radius: 30px;
    background-image: url(/image-68-4.png);
    background-size: 100% 100%;
    flex-shrink: 0;
}

/* Related Reads Section */


.related-reads-header {
    margin-bottom: 16px;
}

.related-reads-title {
     font-family:"Copperplate";
    font-weight: normal;
    color: #8c0000;
    font-size: 64px;
    line-height: normal;
    margin-bottom: 8px;
}

.related-reads-subtitle {
    font-family: 'Copperplate Gothic Light', Helvetica, sans-serif;
    font-weight: normal;
    color: #8c0000;
    font-size: 24px;
    line-height: normal;
}

.articles-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
}

/* .article-card {
    flex-shrink: 0;
    width: 300px;
    background-color: #dbdcd0;
    border-radius: 25px;
    border: 5px solid rgba(140, 0, 0, 0.46);
    overflow: hidden;
} */

.article-image {
    width: 100%;
    height: 283px;
    object-fit: cover;
}

.article-content {
    padding: 16px;
}

.article-title {
    font-family: 'Gill Sans MT', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    font-size: 20px;
    line-height: normal;
    margin-bottom: 16px;
}

.article-description {
    font-family: 'Gill Sans MT', Helvetica, sans-serif;
    font-weight: normal;
    font-size: 16px;
    line-height: normal;
}

.description-text {
    color: rgba(140, 0, 0, 0.73);
}

.read-more {
    font-family: 'Gill Sans MT', Helvetica, sans-serif;
    font-weight: bold;
    color: #8c0000;
    text-decoration: underline;
    cursor: pointer;
}

/* Footer Section */


.footer-background {
    position: absolute;
    width: 100%;
    /* height: 618px; */
    top: 0;
    left: 0;
    /* background-image: url(/image-69.png); */
    background-size: cover;
    background-position: center;
}

.footer-logo {
    /* position: absolute; */
    width: 180px;
    /* height: 66px; */
    padding-top: 65px;
    padding-left: 65px;
    /* top: 65px;
    left: 65px; */
}

.footer-categories {
    position: absolute;
    top: 95px;
    left: 314px;
    width: 159px;
}

.footer-policies {
    position: absolute;
    top: 95px;
    left: 529px;
    width: 227px;
}

.footer-company {
    position: absolute;
    top: 95px;
    left: 830px;
    width: 199px;
}

.footer-heading {
     font-family:"Copperplate";
    font-weight: normal;
    color: #fed385;
    font-size: 24px;
    line-height: normal;
    white-space: nowrap;
    margin-bottom: 36px;
}

.footer-nav {
    font-family: 'Poppins', Helvetica, sans-serif;
    font-weight: normal;
    color: white;
    font-size: 20px;
    line-height: normal;
}

.footer-nav div {
    margin-bottom: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
    color: #fff;
}

.footer-nav div:hover {
    opacity: 0.8;
}

.footer-copyright {
    position: absolute;
    top: 556px;
    left: 485px;
    font-family: 'Poppins', Helvetica, sans-serif;
    font-weight: normal;
    color: #8c0000;
    font-size: 20px;
    line-height: normal;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-top {
        padding: 0 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .navbar-title {
        font-size: 24px;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 10px;
        /* padding: 0 20px; */
    }
    
    .stats-content {
        padding: 0 20px;
    }
    
    .stats-title {
        font-size: 64px;
    }
    
    .why-nibr-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 32px;
    }
    
    .why-nibr-image {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
   
    
    .footer-categories,
    .footer-policies,
    .footer-company {
        position: static;
        margin: 20px;
    }
    
    .footer-copyright {
        position: static;
        text-align: center;
        margin-top: 40px;
    }
}