* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-family: 'Playfair Display', serif;
}


/* header section */

header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1800px;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 380;
    padding: 16px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #ffffff;
    font-weight: 520;
    border-bottom: 2px solid #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* hero section */

.hero {
    height: 80vh;
    background: linear-gradient(rgba(49, 48, 48, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/product/3.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}
/* Main Content */
        .main-content {
            padding: 80px 20px;
            padding-top: 10px;
            max-width: 1400px;
            margin: 0 auto;
        }
/* Products Section */
.products-section {
    padding: 80px 20px;
    background: #ffffff;
}
/* .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-style: normal; 
    text-transform: uppercase;
    font-size: 40px;
} */

.brand-text-image {
  width: 300px; /* adjust to fit your design */
  height: auto;
  display: inline-block;
  vertical-align: middle;
}


.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.products-header h2 {
    font-size: 2.5rem;
    color: #002366;
    margin-bottom: 5px;
    font-weight: 700;
}

.products-header p {
    font-size: 1.0rem;
    color: #000000;
    /* max-width: 1200px; */
    text-align: justify;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border-color: #888;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 10px;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e53e3e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-content {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    /* margin-bottom: 8px; */
}

.product-subtitle {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 15px;
}

.product-description {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-sub {
    font-size: 0.85rem;
    color: #535353;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-btn {
    background: #002366;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.product-btn:hover {
    background: #1a365d;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #002366;
    color: white;
    border-color: #002366;
}

.pagination-arrow {
    background: #002366;
    color: white;
}
 .category-buttons {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    max-width: 900px;
    background: #b6beb6;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #444;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.category-btn:not(:last-child) {
    margin-right: 4px;
}

.category-btn:hover:not(.active) {
    color: #2c5f2d;
    background: rgba(44, 95, 45, 0.12);
}

.category-btn.active {
    background: #2c5f2d;
    color: white;
    box-shadow: 0 3px 10px rgba(44, 95, 45, 0.35);
}

/* ────────────────────────────────────────
   Mobile Responsive Adjustments
───────────────────────────────────────── */

@media (max-width: 768px) {
    .category-buttons {
        max-width: 95%;
        padding: 5px;
        border-radius: 40px;
        margin: 25px auto;
    }

    .category-btn {
        padding: 12px 18px;
        font-size: 13.5px;
        letter-spacing: 0.4px;
    }
}

@media (max-width: 600px) {
    .category-buttons {
        flex-direction: column;
        border-radius: 30px;
        padding: 8px;
        background: #b6beb6;
        gap: 8px;
    }

    .category-btn {
        flex: none;
        width: 100%;
        padding: 14px;
        font-size: 14px;
        border-radius: 25px;
    }

    .category-btn:not(:last-child) {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .category-buttons {
        max-width: 96%;
        padding: 6px;
    }

    .category-btn {
        padding: 13px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .category-btn {
        font-size: 12px;
        padding: 12px;
        letter-spacing: 0.3px;
    }
}



/* footer section */
  /* footer section */
.footer {
    background: linear-gradient(rgba(4, 23, 65, 0.9), rgb(22 66 141 / 90%)), url(../img/Footer.png) center / cover;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr ;
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    max-width: 400px;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}


@media (max-width: 768px) {
   
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

.logo{
    /* padding-left: 110px; */
    width: 200px;
}


    .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content:center;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}

}

@media (max-width: 480px) {
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsive  */
@media (max-width: 1024px) {
    header {
        width: 95%;
        padding: 8px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links li a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        border-radius: 30px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        color: #333;
        font-weight: 500;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: #f6ad55;
        border-bottom-color: #f6ad55;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-section {
        padding: 60px 20px;
    }

    .products-header h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

   
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

.logof{
    /* padding-left: 110px; */
    width: 200px;
}


    .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.footer-section a:hover {
    color: #f8f8f8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content:center;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #2c5282;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f6ad55;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
}

}

@media (max-width: 480px) {
    header {
        width: 95%;
        padding: 8px 15px;
        border-radius: 25px;
    }

    .logo {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .products-section {
        padding: 40px 15px;
    }

    .products-header h2 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}