/* Fonts */
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../font/Montserrat-Bold.ttf");
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../font/Montserrat-SemiBold.ttf");
}
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../font/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../font/Montserrat-Regular.ttf");
}
/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #D4AF37;
  --color-secondary: #060809;
}
:root {
  scroll-behavior: smooth;
}
body {
  background: #F3F9FF;
  font-family: 'Montserrat';
}
a {
  color: #D4AF37;
  text-decoration: none;
}
a:hover {
color: #D4AF37;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat';
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.product-gallery{
    width:100%;
}
.main-image{
    width:100%;
    height:550px;
    overflow:hidden;
    border:1px solid #ddd;
    border-radius:10px;
    cursor:zoom-in;
    position:relative;
}
.main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .15s ease;
    transform-origin:center center;
}
.thumb-images{
    display:flex;
    gap:15px;
    margin-top:15px;
}
.thumb-images img{
    width:100px;
    height:100px;
    object-fit:cover;
    border:2px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}
.thumb-images img:hover,
.thumb-images img.active{
    border-color:#c49b29;
}
.hero{
    position:relative;
    min-height:700px;
    background:url("../img/marine-banner.jpg") center center/cover no-repeat;
    /* overflow:hidden; */
    margin-top:95px;
    background-position: bottom;
    background-size: cover;
}
.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(18,76,135,.70),
        rgba(18,76,135,.15)
    );
}
.container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    /* padding:70px 40px 0; */
}
.hero h1{
    color:#fff;
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:30px;
}
.hero p{
    color:#fff;
    font-size:26px;
    line-height:1.6;
    max-width:850px;
    margin-bottom:45px;
}
.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}
@media(max-width:991px){

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    max-width:120px;
}
.mobile-nav-toggle{
    display:block;
}
}
.shop-btn{
    width:230px;
    height:76px;
    background:#063b7c;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-size:28px;
    font-weight:700;
    transition:.3s;
}
.shop-btn:hover{
    background:#0d4d9b;
}
.shop-btn-fea{
  margin: 20px;
    height:76px;
    background:#0b63c7;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-size:28px;
    font-weight:700;
    transition:.3s;
}
.shop-btn-fea:hover{
    background:#0d4d9b;
}
.call-btn{
  width: 280px;
    height:76px;
    background-color: #d92a0b;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    color:#fff;
    text-decoration:none;
}
.call-btn i{
    font-size:34px;
    color:#fff;
}
.call-btn span{
    display:block;
    font-size:16px;
    font-weight:700;
}
.call-btn strong{
    font-size:28px;
    font-weight:700;
}
.search-box {
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 5px 5px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    text-transform: uppercase;
    background: transparent;
}
.search-box input::placeholder {
    color: #222;
}
.search-box button {
    border: none;
    outline: none;
    background: #0b5cab;
    color: #fff;
    padding: 5px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
.search-box button:hover {
    background: #083d79;
}
/* Feature Card */
.features-section {
    position: relative;
    z-index: 10;
    margin-bottom: -80px; /* Overlap next section */
}
.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.feature-box-marine{
    position:absolute;
    left:50%;
   bottom: -32px;
    transform:translateX(-50%);
    width:75%;
    background:#fff;
    border-radius:10px;
    padding:35px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    z-index:5;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.feature{
    display:flex;
    gap:18px;
}

.feature i{
    color:#083d77;
    font-size:35px;
    margin-top:5px;
}
.feature h4{
    font-size:20px;
    margin-bottom:8px;
    color:#222;
    font-weight: bold;
}
.feature p{
    color:#555;
    font-size:13px;
    line-height:1.5;
}
.country-section{
    /* background:#edf2f7; */
    padding:60px 20px;
}
.country-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}
.country-card{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}
.country-image{
    width:180px;
    height:290px;
    clip-path:polygon(0 0,100% 0,75% 100%,0 100%);
    overflow:hidden;
    flex-shrink:0;
}
.country-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.country-content{
    padding:20px 28px;
    flex:1;
}
.country-content h3{
    color:#ff1e1e;
    font-size:20px;
    font-weight:700;
    text-align:center;
    margin-bottom:18px;
}
.country-content ul{
    list-style:none;
}
.country-content ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    font-size:15px;
    color:#333;
    line-height:1.4;
}
.country-content ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    width:18px;
    height:18px;
    background:#0a3c75;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:bold;
}

.btn-country{
    display:inline-block;
    margin-top:18px;
    padding:10px 22px;
    background:#dd182a;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    border-radius:4px;
    transition:.3s;
}

.btn-country:hover{
    background:#bf8c09;
    color:#fff;
}

.product-country-filter{
    padding:20px 0 0;
}

.product-country-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
}

.product-country-tab{
    display:inline-block;
    padding:10px 24px;
    border:2px solid #0a3c75;
    color:#0a3c75;
    text-decoration:none;
    font-weight:700;
    border-radius:4px;
    transition:.3s;
}

.product-country-tab.active,
.product-country-tab:hover{
    background:#0a3c75;
    color:#fff;
}

.featured-products .sidebar-title small{
    display:block;
    margin-top:4px;
    font-size:14px;
    font-weight:600;
    color:#ff1e1e;
}

.category-empty-message{
    padding:12px 0;
    font-size:14px;
    color:#666;
    line-height:1.5;
}
@media(max-width:991px){
.country-container{
    grid-template-columns:1fr;
}

}
@media(max-width:600px){

.country-card{
    flex-direction:column;
}
.country-image{
    width:100%;
    height:220px;
    clip-path:none;
}
.country-content{
    padding:25px;
}
.country-content h3{
    font-size:18px;
}
.country-content ul li{
    font-size:14px;
}
}
/* Responsive */
@media(max-width:992px){
.hero{
    min-height:900px;
}
.hero-content{
    width:100%;
}
.hero h1{
    font-size:46px;
}
.hero p{
    font-size:20px;
}
.feature-box{
    position:relative;
    width:92%;
    margin:40px auto;
    left:auto;
    bottom:auto;
    transform:none;
    grid-template-columns:repeat(2,1fr);
}
}
@media(max-width:768px){
.hero{
    min-height:auto;
    padding-bottom:40px;
}
.hero h1{
    font-size:36px;
}
.hero p{
    font-size:18px;
}
.shop-btn,
.call-btn{
    width:100%;
}
.feature-box{
    grid-template-columns:1fr;
    padding:25px;
}
}
.product-section{
    padding:200px 0;
}
.container{
    max-width:1200px;
    margin:auto;
}
.section-title{
    /* text-align:center; */
    margin-bottom:35px;
}
.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}
.section-title p{
    color:#555;
    font-size:16px;
}
.filter-box{
    background:#fff;
    padding:18px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    margin-bottom:40px;
}
.filter-box select{
    height:50px;
    border:none;
    background:#dbe7ff;
    padding:0 15px;
    font-size:15px;
    cursor:pointer;
    outline:none;
    border-radius:4px;
    appearance:none;
}
.filter-box button{
    border:none;
    background:#062d63;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    border-radius:4px;
    transition:.3s;
}
.filter-box button:hover{
    background:#0a4aa3;
}
.products-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}
.product-card-list{
    background:#fff;
    text-align:center;
    padding:18px;
    border-radius:8px;
    box-shadow:0 5px 12px rgba(0,0,0,.12);
    transition:.3s;
}
.product-card:hover{
    transform:translateY(-5px);
}
.product-card-list img{
    width:150px;
    height:150px;
    object-fit:contain;
    margin-bottom:15px;
}
.product-card-list h4{
    font-size:15px;
    color:#222;
    margin-bottom:5px;
}
.product-card-list span{
    display:block;
    font-size:13px;
    color:#666;
    margin-bottom:8px;
}
.product-card-list h5{
    color:#0a4aa3;
    font-size:18px;
    margin-bottom:15px;
}
.product-card-list a{
    display:block;
    background:#0b3f7c;
    color:#fff;
    text-decoration:none;
    padding:10px;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
}
.product-card-list a:hover{
    background:#072f5a;
}
/* Tablet */
@media(max-width:991px){
    .filter-box{
        grid-template-columns:repeat(2,1fr);
    }

    .products{
        grid-template-columns:repeat(2,1fr);
    }

}
/* Mobile */
@media(max-width:576px){
    .filter-box{
        grid-template-columns:1fr;
    }

    .products{
        grid-template-columns:1fr;
    }
.products-list{
     grid-template-columns:1fr;
}
    .section-title h2{
        font-size:30px;
    }

}
/* Section Title */
.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}
.title-line{
    width:250px;
    height:4px;
    background:linear-gradient(to right,#0d3c77,#dbe7f5);
    border-radius:50px;
    margin-bottom:40px;
}
.top-products{
    padding:70px 0;
}
.top-products-brand-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
}
.top-products-brand-tab{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:2px solid #0b5cb8;
    background:#fff;
    color:#0d2f61;
    border-radius:50px;
    padding:12px 22px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.top-products-brand-tab:hover,
.top-products-brand-tab.active{
    background:#0b5cb8;
    color:#fff;
}
.top-products-brand-tab-logo{
    width:28px;
    height:28px;
    object-fit:contain;
    border-radius:4px;
    background:#fff;
    padding:2px;
}
.top-products-brand-tab.active .top-products-brand-tab-logo{
    background:#fff;
}
.top-products-brand-panel{
    display:none;
}
.top-products-brand-panel.active{
    display:block;
}
/* Grid */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}
/* Card */
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 6px 16px rgba(0,0,0,.18);
    transition:.35s;
}
.product-card:hover{
    transform:translateY(-8px);
}
.product-image{
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}
.product-image img{
    max-width:100%;
    max-height:190px;
    object-fit:contain;
}
.product-card h3{
    padding:0 20px 25px;
    font-size:20px;
    color:#0d2f61;
    line-height:1.35;
    /* min-height:90px; */
    font-weight:700;
}
.btn-product{
    display:block;
    width:100%;
    background:#0b5cb8;
    color:#fff;
    text-decoration:none;
    padding:18px 0;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}
.btn-product:hover{
    background:#083d79;
}
.about-section{
    padding:70px 0;
}
.section-title{
    margin-bottom:30px;
}
.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}
.section-title span{
    display:block;
    width:170px;
    height:3px;
    background:linear-gradient(to right,#0c5db8,#d9d9d9);
}
.about-wrapper{
    display:flex;
    align-items:center;
    gap:40px;
}
.about-image{
    flex:1;
}
.about-image img{
    width:100%;
    border-radius:8px;
    display:block;
}
.about-content{
    flex:1;
}
.about-content h3{
    font-size:30px;
    line-height:1.3;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}
.about-content p{
    font-size:17px;
    line-height:1.8;
    color:#444;
    margin-bottom:30px;
    text-align:justify;
}
.about-btn{
    display:inline-block;
    background:#0b5db8;
    color:#fff;
    text-decoration:none;
    padding:14px 40px;
    border-radius:4px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}
.about-btn:hover{
    background:#084b94;
}
/* Responsive */
@media(max-width:991px){

    .top-products-brand-tab{
        width:100%;
        justify-content:center;
    }

    .about-wrapper{
        flex-direction:column;
    }

    .about-content h3{
        font-size:28px;
    }

    .section-title h2{
        font-size:30px;
    }
}
@media(max-width:576px){

    .about-section{
        padding:50px 0;
    }

    .about-content h3{
        font-size:24px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-btn{
        width:100%;
        text-align:center;
    }
}
/* Responsive */
@media(max-width:1200px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .product-image{
        height:220px;
    }
}
/* ===========================
   Featured Products Section
=========================== */
.featured-products{
    padding:70px 0;
}
/*==========================
  Section Title
==========================*/

.section-title{
    margin-bottom:30px;
}
.section-title h2{
    font-size:36px;
    font-weight:700;
    color:#111;
}

.section-title span{
    display:block;
    width:170px;
    height:3px;
    margin-top:8px;
    background:linear-gradient(to right,#0a63c7,#d7d7d7);
}

/*==========================
  Layout
==========================*/

.featured-wrapper{
    display:flex;
    gap:25px;
    /* align-items:flex-start; */
}

/*==========================
 Sidebar
==========================*/

.sidebar{
    width:260px;
    background:#0d3767;
    border-radius:6px;
    overflow:hidden;
}

.sidebar-title{
    background:#0b63c7;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:26px;
    font-weight:700;
}

.category-list{
    list-style:none;
    padding:25px;
    text-align: center;
}

.category-list li{
    color:#fff;
    font-size:17px;
    padding:12px 15px;
    margin-bottom:10px;
    cursor:pointer;
    border-radius:4px;
    transition:.3s;
}

.category-list li:hover{
    background:#155293;
}

.category-list li.active{
    color:#ffcc33;
    font-weight:bold;
}



.shop-btn:hover{
    background:#084f9d;
}

/*==========================
 Products
==========================*/

.products-area{
    flex:1;
}

/* Hide all */
.products{
    display:none;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/* Show active */
.products.active{
    display:grid;
    animation:fadeIn .45s ease;
}

/*==========================
 Product Card
==========================*/

.product-card-feature{
    background:#fff;
    border-radius:8px;
    /* padding:20px; */
    text-align:center;
    box-shadow:0 5px 12px rgba(0,0,0,.15);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card-feature img{
    width:140px;
    height:140px;
    object-fit:contain;
    margin-bottom:15px;
}

.product-card-feature h4{
  font-size: 20px;
  color: #222;
  margin-bottom: 5px;
  font-weight: bold;
}

.product-card-feature p{
    font-size: 20px;
  color: #0c4179;
  margin-bottom: 8px;
  font-weight: bold;
}

.product-card-feature span{
    display:block;
    color:#005ec8;
    font-size:18px;
    font-weight:bold;
    margin-bottom:18px;
}

.product-card-feature button{
    width:100%;
    border:none;
    background:#0b63c7;
    color:#fff;
    padding:12px;
    border-radius:4px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.product-card-feature button:hover{
    background:#084f9d;
}

.product-card-feature-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.product-card-feature-link:hover{
    color:inherit;
}

.related-products .card a{
    display:block;
    color:inherit;
    text-decoration:none;
}

.related-products .card a:hover{
    color:inherit;
}

.stock.out-of-stock{
    color:#c0392b;
}

/*==========================
 Animation
==========================*/

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==========================
 Tablet
==========================*/

@media(max-width:992px){

    .featured-wrapper{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

    .products{
        grid-template-columns:repeat(2,1fr);
    }

}

/*==========================
 Mobile
==========================*/

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
    }

    .sidebar-title{
        font-size:24px;
    }

    .category-list{
        padding:15px;
    }

    .category-list li{
        font-size:16px;
        padding:10px;
    }

    .products{
        grid-template-columns:1fr;
    }

    .product-card{
        padding:18px;
    }

    .product-card img{
        width:80px;
        height:80px;
    }

}
/*=========================
 Brand Section
==========================*/

.brand-section{
    background:#0d3768;
    padding:60px 0;
}

.brand-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.brand-title{
    text-align:center;
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:40px;
    text-transform:uppercase;
}

.brand-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.brand-item{
    width:140px;
    height:90px;
    background:#fff;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s ease;
    cursor:pointer;
}

.brand-item:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.brand-item img{
    max-width:90%;
    max-height:65px;
    object-fit:contain;
}



.product-details-section{
    padding:200px 0;
}

.product-wrapper{
    display:flex;
    gap:40px;
    margin-bottom:40px;
}

.product-gallery{
    width:40%;
}

.main-image{
    border:1px solid #0c4b8f;
    padding:20px;
    background:#fff;
}

.main-image img{
    width:100%;
    display:block;
}

.thumb-images{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.thumb-images img{
    width:90px;
    border:1px solid #999;
    padding:10px;
    background:#fff;
    cursor:pointer;
}

.product-info{
    flex:1;
}

.product-info h2{
    font-size:30px;
    margin-bottom:20px;
}

.price{
    margin-bottom:10px;
}

.amount{
    color:#005bc5;
    font-size:34px;
    font-weight:bold;
}

.offer{
    font-weight:600;
}

.tax{
    margin-left:5px;
    color:#333;
}

.stock{
    color:#0c9b34;
    font-weight:600;
    margin:15px 0;
}

.qty-box{
    display:flex;
    width:120px;
    margin-bottom:30px;
}

.qty-box button{
    width:40px;
    height:40px;
    border:none;
    background:#f1f1f1;
    cursor:pointer;
    font-size:18px;
}

.qty-box input{
    width:40px;
    text-align:center;
    border:none;
    background:#fff;
}

.cart-btn{
    width:250px;
    height:50px;
    background:#0d3d77;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    border-radius:4px;
    text-align: center;
    align-content: center;
}

.cart-btn a,
.cart-btn button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#fff;
    text-decoration:none;
    background:transparent;
    border:none;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

.cart-btn:hover,
.cart-btn:hover a,
.cart-btn:hover button{
    background:#072d5c;
    color:#fff;
}

.order-btn a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#fff;
    text-decoration:none;
}

.order-btn:hover a{
    color:#fff;
}

.cart-empty-card{
    justify-content:center;
    padding:40px 20px;
}

.cart-empty-card .cart-content{
    text-align:center;
}

.cart-shop-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:auto;
    min-width:220px;
    height:55px;
    margin-top:20px;
    padding:0 24px;
    color:#fff;
    text-decoration:none;
}

.cart-remove-btn{
    border:none;
    background:transparent;
    padding:0;
}

.header-cart-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:6px;
    text-decoration:none;
}

.header-cart-link .cart-icon{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
}

.header-cart-link .cart-icon i{
    font-size:22px;
    color:#D4AF37;
}

.cart-count-badge{
    position:absolute;
    top:-4px;
    right:-6px;
    min-width:18px;
    height:18px;
    padding:0 5px;
    border-radius:999px;
    background:#dd182a;
    color:#fff;
    font-size:11px;
    font-weight:700;
    line-height:18px;
    text-align:center;
}

.related-products .card form button,
.product-card-feature form button{
    width:100%;
    border:none;
    background:#0b63c7;
    color:#fff;
    padding:12px;
    border-radius:4px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.product-description{
    margin-bottom:40px;
}

/* Product Details */

.title{
    background:#0059b8;
    color:#fff;
    padding:18px;
    font-weight:bold;
}

.description-box{
    background:#fff;
    padding:30px;
}

.description-box h3{
    margin-bottom:20px;
}

.description-box p{
    line-height:1.8;
    color:#444;
}

/* Related */

.related-products{
    margin-top:50px;
}

.related-products h3{
    margin-bottom:25px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#fff;
    border-radius:8px;
    padding:20px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
}

.card img{
    /* width:120px; */
    height:90px;
    object-fit:contain;
    margin-bottom:15px;
}

.card h5{
    font-size:15px;
    margin-bottom:5px;
}

.card p{
    font-size:13px;
    color:#666;
}

.card span{
    display:block;
    color:#005bc5;
    font-weight:bold;
    margin:10px 0;
}

.card button{
    width:100%;
    padding:10px;
    border:none;
    background:#0d3d77;
    color:#fff;
    cursor:pointer;
    border-radius:4px;
}

/* Banner */

.about-banner{
    /* background:#d9ebff; */
    padding:200px 0px 50px;
    text-align:center;
}

.about-banner h1{
    font-size:48px;
    color:#0d3565;
    margin-bottom:30px;
    font-weight:700;
}

.about-banner p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:1.6;
    color:#0a58ca;
}

.about-section-detail{
    background:#d9ebff;
  padding: 100px;
    /* text-align:center; */
}

.about-section-detail h1{
    font-size:48px;
    color:#0d3565;
    margin-bottom:30px;
    font-weight:700;
}

.about-section-detail p{
    max-width:850px;
    margin:auto;
    font-size:22px;
    line-height:1.6;
    color:#0a58ca;
}

/* About */


.about-wrapper-detail{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-content-detail h2{
    font-size:44px;
    margin-bottom:30px;
    font-weight:700;
}

.about-content-detail p{
    font-size:20px;
    line-height:1.8;
    color:#333;
}

.about-image-detail img{
    width:100%;
    border-radius:8px;
    object-fit:cover;
}

/* Values */

.values-section{
    background:#072f63;
    padding:80px 0;
}

.values-section h2{
    text-align:center;
    color:#fff;
    font-size:42px;
    margin-bottom:60px;
}

.values-grid{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.value-card{
    background:linear-gradient(to bottom,#eef7ff,#d8edf8);
    padding:45px 30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.value-card h3{
    font-size:34px;
    margin-bottom:25px;
    color:#111;
}

.value-card p{
    font-size:19px;
    line-height:1.8;
    color:#222;
}

/* Responsive */

@media(max-width:991px){

.about-wrapper{
    grid-template-columns:1fr;
}

.values-grid{
    grid-template-columns:1fr;
}

.about-banner h1{
    font-size:38px;
}

.about-banner p{
    font-size:18px;
}

.about-content h2{
    font-size:34px;
}

.values-section h2{
    font-size:34px;
}

.value-card h3{
    font-size:28px;
}

}

@media(max-width:576px){

.about-section-detail{
    padding: 0;
}
.about-wrapper-detail{
grid-template-columns: auto;
}
.about-banner h1{
    font-size:30px;
}

.about-banner p{
    font-size:16px;
}

.about-section{
    padding:60px 0;
}

.about-content h2{
    font-size:28px;
}

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

.values-section{
    padding:60px 0;
}

.value-card{
    padding:30px 20px;
}

.value-card h3{
    font-size:24px;
}

.value-card p{
    font-size:16px;
}

}
.contact-page{
    background:#eef5fc;
    padding-bottom:80px;
}

/* Banner */

.contact-banner{
    background:#d8ebff;
    text-align:center;
    padding:200px 20px 170px;
}

.contact-banner h1{
    font-size:48px;
    color:#0b3769;
    font-weight:700;
}

/* Container */

.contact-page .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Contact Box */

.contact-box{
    background:#fff;
    margin-top:-100px;
    display:grid;
    grid-template-columns:1fr 1fr;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

/* Left */

.contact-info{
    padding:50px 40px;
    border-right:1px solid #ddd;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:45px;
}

.info-item i{
    font-size:34px;
    color:#1b145c;
    width:45px;
}

.info-item h3{
    font-size:34px;
    color:#0b3769;
    margin-bottom:10px;
}

.info-item p{
    font-size:22px;
    line-height:1.6;
    
    font-weight:bold;
}

.phone{
    color:#0051ff;
}

/* Right */

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

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #ddd;
    padding:18px;
    margin-bottom:22px;
    border-radius:5px;
    font-size:18px;
    outline:none;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{
    width:100%;
    height:55px;
    background:#0b3769;
    color:#fff;
    border:none;
    border-radius:4px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#07274c;
}

/* Cards */

.support-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:90px;
}

.support-card{
    background:#d8ebff;
    text-align:center;
    padding:45px 30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
}

.support-card h3{
    font-size:30px;
    margin-bottom:25px;
    color:#111;
}

.support-card p{
    font-size:19px;
    line-height:1.7;
    color:#222;
}

/* Responsive */

@media(max-width:991px){

.contact-box{
    grid-template-columns:1fr;
}

.contact-info{
    border-right:none;
    border-bottom:1px solid #ddd;
}

.support-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:576px){

.contact-banner{
    /* padding:60px 20px 120px; */
}

.contact-banner h1{
    font-size:34px;
}

.contact-box{
    margin-top:-60px;
}

.contact-info,
.contact-form{
    padding:30px 20px;
}

.info-item h3{
    font-size:24px;
}

.info-item p{
    font-size:17px;
}

.support-card{
    padding:30px 20px;
}

.support-card h3{
    font-size:24px;
}

.support-card p{
    font-size:16px;
}

.contact-form input,
.contact-form textarea{
    font-size:16px;
}

}

/* Responsive */

@media(max-width:992px){

.product-wrapper{
    flex-direction:column;
}

.product-gallery{
    width:100%;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.product-grid{
    grid-template-columns:1fr;
}

.product-info h2{
    font-size:24px;
}

.amount{
    font-size:28px;
}

.cart-btn{
    width:100%;
}

.thumb-images img{
    width:75px;
}

}

/*=========================
 Responsive
==========================*/

@media(max-width:992px){

    .brand-wrapper{
        justify-content:center;
    }

    .brand-item{
        width:120px;
        height:80px;
    }

    .brand-title{
        font-size:30px;
    }

}

@media(max-width:576px){

    .brand-wrapper{
        gap:15px;
    }

    .brand-item{
        width:100px;
        height:70px;
    }

    .brand-item img{
        max-height:45px;
    }

    .brand-title{
        font-size:24px;
        margin-bottom:30px;
    }

}

/*==========================
 Latest Blog Section
==========================*/

.blog-section{
    padding:70px 0;
    background:#f5f7fb;
}

.blog-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    margin-bottom:30px;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
    color:#111;
}

.section-title span{
    display:block;
    width:170px;
    height:3px;
    margin-top:10px;
    background:linear-gradient(to right,#0b5eb3,#d9d9d9);
}

/*==========================
 Grid
==========================*/

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/*==========================
 Card
==========================*/

.blog-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

.blog-img{
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-content{
    padding:18px;
}

.blog-content h3{
    font-size:18px;
    line-height:1.5;
    color:#111;
    margin-bottom:12px;
}

.blog-content p{
    font-size:14px;
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.read-btn{
    display:inline-block;
    padding:10px 24px;
    border:2px solid #0b5eb3;
    border-radius:4px;
    color:#0b5eb3;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.read-btn:hover{
    background:#0b5eb3;
    color:#fff;
}

/*==========================
 Responsive
==========================*/

@media(max-width:992px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:28px;
    }

    .blog-img img{
        height:200px;
    }

}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  animation-delay: -0.5s;
}
.header {
  background: #022D5A;
  transition: all 0.5s;
  z-index: 997;
  /* height: 90px; */
  /* border-bottom: 1px solid #fff; */
}
@media (max-width: 575px) {
  .header {
    /* height: 70px; */
  }
}
.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family:"Montserrat-SemiBold";
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 11px;
  color: #fff;
  background: #D4AF37;
  padding: 8px 22px;
  margin-left: 20px;
  border-radius: 5px;
  transition: 0.3s;
  border: none;
  font-family: "Montserrat-SemiBold";
}
.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: #022D5A;
}
@media (min-width: 1080px) {
  .navbar {
    padding: 0;
    margin-right: 23px;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }
  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
  
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #cfae38;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #F9E8D6;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 1080px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
@media (min-width: 1080px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

.mobile-language{
    display:none;
}

@media(max-width:991px){

    .mobile-language{
        display:block;
        padding:15px;
    }

    .mobile-language select{
        width:100%;
        padding:10px;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1079px) {
  .navbar {
        /* toggle bg 29-06-2026 */
    position: fixed;
    top: 50px;
    right: -100%;
    width: 100%;
    /* max-width: 400px; */
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
      /* toggle bg 29-06-2026 */
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #FFF4E9;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a,
  .navbar a:focus {
      /* toggle bg 29-06-2026 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
  
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #fff;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 10px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
.mobile-nav-active .navbar {
right: 0;
}
.mobile-nav-active .navbar:before {
content: "";
position: fixed;
inset: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 9996;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
 #footer {
    background: #022D5A;
    padding: 0 0 30px 0;
   color: #fff;
    font-size: 18px;
  }

.footer-logo img{
    width: 115px;
}
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-info h3 {
    font-size: 28px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
   color: #fff;
  }
  #footer .footer-top .footer-info p {
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 0;
    color: #fff;
    margin-top: 20px;
  }
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.08); */
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  #footer .footer-top .social-links a:hover {
    background: #d5c5a6;
    color: #F3CF8D;
    text-decoration: none;
  }
  #footer .footer-top h4 {
    font-size: 18px;
    /* font-weight: bold; */
    color: #F3CF8D;
    position: relative;
    padding-bottom: 50px;
  }
  #footer .footer-top .footer-links {
    margin-top: 50px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #F3CF8D;
    font-size: 12px;
    line-height: 1;
    content: "▶";
  }
  #footer .footer-top .footer-links ul li {
    padding: 3px 0;
    display: flex;
    align-items: center;
  }
  
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  #footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    
    font-size: 14px;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #ff4a17;
  }
  
  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #F3CF8D;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
  }
  
  #footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #ff4a17;
    color: #F3CF8D;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #ff5e31;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
    text-transform: uppercase;
    font-size: 14px;
  }
  .address-container p{
    font-size: 18px;
    line-height: 30px;
  }
  
  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #F3CF8D;
  }
  
  #footer .credits a {
    transition: 0.3s;
  }
.section-banner{
margin-top: 125px;
}
.spot-price-section{
margin: 150px 0px 50px 0px;
}
.content-area{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;
}

.left-content h1{
    font-size:60px;
    line-height:1.05;
    font-weight:700;
    color:#111;
    margin-bottom:30px;
}
.image-box img{
    width:100%;
    display:block;
    /* border-radius:8px; */
    margin-top: 85px;
    padding-right: 30px;
}
.top-text{
    color:#5f6f7b;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}
.mobile-desc{
    display:none;
}
.price-card h2{
    text-align:center;
    /* margin-bottom:30px; */
    font-size:22px;
    font-weight:600;
}
.metal-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    /* margin-bottom:10px; */
}
.metal-box{
    flex:1;
}
.metal-box h4{
    font-size:18px;
    margin-bottom:12px;
}
.metal-box span{
    display:inline-block;
    background:#c79f00;
    color:#fff;
    padding:10px 12px;
    font-size:14px;
    border-radius:3px;
    width: 145px;
}

.price-card select{
    width:100%;
    height:50px;
    border:none;
    border-radius:4px;
    padding:0 15px;
    margin-top:15px;
    font-size:15px;
    outline:none;
    background-color: #f9f7f1;
}

/* ===========================
   Tablet
=========================== */

@media(max-width:992px){

    .content-area{
        grid-template-columns:1fr;
        gap:40px;
    }

    .left-content h1{
        font-size:48px;
    }

    .top-text{
        display:none;
    }

    .mobile-desc{
        display:block;
        color:#5f6f7b;
        font-size:16px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .price-card{
        /* max-width:500px;
        margin:auto; */
    }
}

/* ===========================
   Mobile
=========================== */

@media(max-width:768px){

  
    .left-content h1{
        font-size:36px;
    }

    .price-card{
        padding:25px;
        border-radius:15px;
    }

    .price-card h2{
        font-size:28px;
    }

    .metal-row{
        flex-direction:column;
        gap:15px;
    }

    .metal-box span{
        width:100%;
        text-align:center;
    }

    .price-card select{
        height:48px;
    }
}

/* Galaxy S25 / Small Phones */

@media(max-width:480px){

    .left-content h1{
        font-size:30px;
    }

    .mobile-desc{
        font-size:15px;
    }

    .price-card{
        padding:20px;
    }

    .price-card h2{
        font-size:24px;
    }

    .metal-box h4{
        font-size:16px;
    }

    .metal-box span{
        font-size:13px;
        padding:10px;
    }
}
.trending-products{
    padding:50px 20px;
}




.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.product-card{
    position:relative;
}






.product-content{
    margin-top:18px;
}

.product-content h4{
    font-size:15px;
    line-height:1.5;
    color:#333;
    font-weight:600;
    /* min-height:50px; */
}

.price-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.new-price{
    color:#666;
    font-size:18px;
    font-weight:600;
}

.old-price{
    color:#b3b3b3;
    text-decoration:line-through;
    font-size:14px;
}

.product-icons{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    color:#8aa0c8;
    padding-right: 17px;
}

.cart-icon i{
    font-style: normal;
    cursor: pointer;
    font-size: 18px;
    color: #D4AF37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);

}
.cart-icon i,
.cart-icon svg {
    color: #D4AF37;
    fill: #D4AF37;
}
.fa-shopping-cart {
    color: #D4AF37 !important;
}
/* Tablet */

@media (max-width:991px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title{
        font-size:34px;
    }

    .product-image{
        height:220px;
    }
}

/* Mobile */

@media (max-width:767px){

    .trending-products{
        padding:50px 15px;
    }

    .products-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .section-title{
        font-size:28px;
        margin-bottom:25px;
    }

    .product-image{
        height:260px;
    }

    .product-content h4{
        min-height:auto;
        font-size:16px;
    }

    .new-price{
        font-size:17px;
    }
}
/* Galaxy S25 / Small Devices */

@media (max-width:480px){

    .section-title{
        font-size:24px;
    }

    .product-image{
        height:220px;
    }

    .product-content h4{
        font-size:15px;
    }

    .new-price{
        font-size:16px;
    }
}
.exclusive-collections{
    padding:70px 20px;
}



.collections-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.intro-box{
    padding:10px;
}

.intro-box h2{
    font-size:42px;
    font-weight:700;
    line-height:1.1;
    color:#111;
    margin-bottom:25px;
}

.intro-box p{
    font-size:19px;
    line-height:1.8;
    color:#5f6b74;
    max-width:280px;
}

.product-card{
    width:100%;
}

.product-image{
    background:#FAFAF8;
    border-radius:14px;
    overflow:hidden;
}

.product-image img{
    /* width:100%;
    height:100%; */
    display:block;
    object-fit:cover;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.05);
}
/* size clr 29-06-2026 */
.product-card h4{
    margin-top:15px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

/* size clr 29-06-2026 */
.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:12px;
}

.product-footer span{
    font-size:16px;
    color:#666;
    font-weight:500;
}

.product-footer a{
    text-decoration:none;
    color:#999;
    font-size:18px;
}

/* Large Tablet */

@media (max-width:1200px){

    .collections-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .intro-box h2{
        font-size:48px;
    }
}

/* Tablet */

@media (max-width:991px){

    .collections-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .intro-box{
        grid-column:1 / -1;
        text-align:center;
    }

    .intro-box p{
        max-width:100%;
    }

    .intro-box h2{
        font-size:42px;
    }
}

/* Mobile */

@media (max-width:767px){

    .exclusive-collections{
        padding:50px 15px;
    }

    .collections-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .intro-box{
        text-align:left;
    }

    .intro-box h2{
        font-size:34px;
    }

    .intro-box p{
        font-size:15px;
        line-height:1.7;
    }

    .product-card h4{
        font-size:14px;
    }
}

/* Galaxy S25 / Small Phones */

@media (max-width:480px){

    .intro-box h2{
        font-size:30px;
    }

    .product-image{
        border-radius:12px;
    }

    .product-footer span{
        font-size:15px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.brands-section{
    padding:50px 20px;
  background-color: #fff0c5;
}


.brands-header{
    text-align:center;
    margin-bottom:20px;
}

.brands-header h2{
    font-size:42px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;
    line-height:1.2;
}

.brands-header p{
    font-size:16px;
    color:#7b8794;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    /* gap:80px 60px; */
    align-items:center;
}

.brand-item{
    display:flex;
    justify-content:center;
    align-items:center;
}

.brand-item img{
    max-width:200px;
    width:100%;
    height:auto;
    object-fit:contain;
    transition:0.3s ease;
}

.brand-item:hover img{
    transform:scale(1.05);
}
/* Laptop */

@media (max-width:1200px){

    .brands-header h2{
        font-size:42px;
    }

    .brands-grid{
        gap:60px 40px;
    }
}
/* Tablet */
@media (max-width:991px){

    .brands-grid{
        grid-template-columns:repeat(3,1fr);
        gap:50px 30px;
    }

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

/* Mobile */

@media (max-width:767px){
    .brands-section{
        padding:50px 15px;
    }

    .brands-grid{
        grid-template-columns:repeat(2,1fr);
        /* gap:40px 20px; */
    }

    .brands-header{
        margin-bottom:50px;
    }

    .brands-header h2{
        font-size:28px;
    }

    .brands-header p{
        font-size:14px;
    }

    .brand-item img{
        max-width:120px;
    }
}
/* Galaxy S25 / Small Phones */

@media (max-width:480px){

    .brands-header h2{
        font-size:24px;
    }

    .brands-grid{
        /* gap:30px 15px; */
    }

    .brand-item img{
        max-width:100px;
    }
}
.stars{
    color:#F5A623;
    font-size:22px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#666;
    font-size:16px;
    line-height:1.7;
    margin-bottom:25px;
}

.author{
    display:flex;
    align-items:center;
    gap:12px;
    border-top:1px solid #eee;
    padding-top:15px;
}

.author-icon{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#F2F4F7;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8C95A1;
}

.author span{
    font-size:14px;
    font-weight:600;
    color:#111;
}
.checkout-section{
    background:#eef3fa;
    padding:200px 0;
}

.checkout-section .container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1.3fr;
    gap:40px;
    align-items:flex-start;
}

.checkout-section .cart-flash-message{
    grid-column:1 / -1;
}

.checkout-section form{
    display:block;
}

.checkout-field-error{
    color:#c0392b;
    font-size:14px;
    margin-top:8px;
}

.summary-box h2{
    font-size:36px;
    margin-bottom:5px;
    color:#222;
}

.summary-box small{
    display:block;
    margin-bottom:20px;
    font-size:18px;
    color:#555;
}

.checkout-btns .back-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#111;
}

/* Left Box */

.checkout-box{
    background:#fff;
    padding:35px;
    border-radius:8px;
    box-shadow:0 3px 12px rgba(0,0,0,.12);
}

.form-group{
    margin-bottom:30px;
}

.form-group label{
    display:block;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.form-group input[type=text]{
    width:100%;
    height:50px;
    border:1px solid #d8d8d8;
    border-radius:4px;
    padding:0 18px;
    font-size:16px;
    outline:none;
}

.radio-group{
    display:flex;
    gap:30px;
    margin-bottom:15px;
}

.radio-group label{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
    font-size:16px;
    font-weight:600;
}

.delivery-text{
    color:#555;
    font-size:14px;
    line-height:1.6;
}

.payment-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.payment-icons img{
    width:45px;
    border:1px solid #ddd;
    border-radius:3px;
    padding:3px;
    background:#fff;
}

.terms{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
    font-size:15px;
}

.checkout-btns{
    display:flex;
    gap:15px;
}

.back-btn{
    padding:12px 30px;
    border:none;
    background:#d7d7d7;
    border-radius:4px;
    cursor:pointer;
    font-weight:600;
}

.confirm-btn{
    padding:12px 35px;
    border:none;
    background:#0a3769;
    color:#fff;
    border-radius:4px;
    cursor:pointer;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* Summary */

.summary-box{
    background:#fff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 3px 12px rgba(0,0,0,.12);
}

.summary-box .product-row,
.summary-box .summary-row,
.summary-box .total-row{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
    font-size:16px;
    color:#222;
}

.summary-box .product-row span:last-child{
    font-weight:600;
    white-space:nowrap;
    margin-left:15px;
}

.summary-box hr{
    margin:20px 0;
    border:none;
    border-top:1px solid #bbb;
}

.summary-box .total-row{
    font-size:24px;
    font-weight:700;
}

.summary-box .summary-free{
    color:#29d36a;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

.checkout-section .container{
    grid-template-columns:1fr;
}

.summary-box{
    margin-top:20px;
}

}

@media(max-width:768px){

.checkout-box,
.summary-box{
    padding:20px;
}

.form-group label{
    font-size:18px;
}

.summary-box h2{
    font-size:30px;
}

.radio-group{
    flex-direction:column;
    gap:12px;
}

.checkout-btns{
    flex-direction:column;
}

.back-btn,
.confirm-btn{
    width:100%;
}

.payment-icons{
    flex-wrap:wrap;
}

}



.cart-section{
    /* background:#f3f5f9; */
    padding:200px 0;
}

.cart-flash-message{
    grid-column:1 / -1;
    background:#d4edda;
    color:#155724;
    border:1px solid #c3e6cb;
    border-radius:6px;
    padding:12px 16px;
    margin-bottom:20px;
    font-weight:600;
}

.cart-section .container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:flex-start;
}

/* Cart Card */

.cart-card{
    background:#fff;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    margin-bottom:25px;
}

.cart-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.cart-left img{
    width:90px;
    /* height:70px; */
    object-fit:contain;
    border:2px solid #222;
    padding:8px;
}

.cart-content h4{
    font-size:18px;
    margin-bottom:6px;
    color:#222;
}

.cart-content p{
    color:#555;
    font-size:15px;
    margin-bottom:10px;
}

.cart-content span{
    color:#0056d6;
    font-size:28px;
    font-weight:700;
}

.cart-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:30px;
}

.cart-right i{
    color:#2f2068;
    font-size:22px;
    cursor:pointer;
}

.qty-box{
    border:1px solid #888;
    border-radius:5px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.qty-box button{
    border:none;
    background:#fff;
    width:35px;
    height:34px;
    cursor:pointer;
    font-size:18px;
    font-weight:700;
}

.qty-box span{
    width:40px;
    text-align:center;
    font-weight:600;
}

.cart-section .qty-box input.cart-qty-input{
    width:70px;
    min-width:70px;
    height:34px;
    border:none;
    border-left:1px solid #888;
    border-right:1px solid #888;
    background:#fff;
    text-align:center;
    font-weight:600;
    font-size:16px;
    padding:0 6px;
    -moz-appearance:textfield;
}

.cart-section .qty-box input.cart-qty-input::-webkit-outer-spin-button,
.cart-section .qty-box input.cart-qty-input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.cart-qty-form{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

.cart-qty-hint{
    display:block;
    margin-top:6px;
    font-size:11px;
    line-height:1.3;
    color:#777;
    text-align:right;
    max-width:140px;
}

/* Summary */

.cart-summary{
    background:#082f63;
    color:#fff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.18);
}

.cart-summary h2{
    font-size:36px;
    margin-bottom:5px;
}

.cart-summary small{
    display:block;
    margin-bottom:25px;
    font-size:18px;
}

.cart-summary .summary-row{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
    font-size:20px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
    font-size:20px;
}

.discount span:last-child{
    color:#29d36a;
}

.cart-summary .summary-free{
    color:#29d36a;
    font-weight:700;
}

.cart-summary hr{
    margin:25px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,.3);
}

.total{
    font-size:24px;
    font-weight:700;
}

.order-btn{
    width:100%;
    margin-top:30px;
   background: #dd182a;
    border:none;
    color:#fff;
    height:55px;
    border-radius:5px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    text-align: center;
  align-content: center;
}

.order-btn:hover{
    background:#bf8c09;
}

.cart-summary .cart-minimum-warning{
    display:none;
    margin:20px 0 0;
    padding:12px 14px;
    background:rgba(255,193,7,.15);
    border:1px solid #ffc107;
    border-radius:5px;
    color:#ffe082;
    font-size:14px;
    line-height:1.5;
}

.cart-summary .cart-minimum-warning.is-visible{
    display:block;
}

/* Responsive */

@media(max-width:991px){

.cart-section .container{
    grid-template-columns:1fr;
}

.cart-summary{
    margin-top:20px;
}

}

@media(max-width:768px){

.cart-card{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.cart-right{
    width:100%;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
}

.cart-left{
    flex-direction:column;
    align-items:flex-start;
}

.cart-content h4{
    font-size:16px;
}

.cart-content span{
    font-size:22px;
}

.summary-row{
    font-size:16px;
}

.cart-summary h2{
    font-size:28px;
}

}

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}
/* Top Header */
.header{
    width:100%;
    /* background:#000; */
   padding-top: 90px;
}
/* Top Header */
.top-header{
 position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* background:#111; */
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:8px 0;
}
.top-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.top-left-menu{
    display:flex;
    gap:20px;
}
.top-left-menu a{
    color:#fff;
    text-decoration:none;
    font-size:13px;
}
.top-search{
    display:flex;
    width:350px;
}
.top-search input{
    width:100%;
    height:38px;
    border:1px solid #c3a375;
    border-right:none;
    padding:0 15px;
    background:#000;
    color:#fff;
}
.top-search button{
    width:45px;
    border:none;
    background:#c3a375;
    color:#000;
}
.top-right{
    display:flex;
    gap:10px;
}
.top-login,
.top-signup{
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    font-size:13px;
}
.top-login{
    border:1px solid #c3a375;
    color:#c3a375;
}
.top-signup{
    background:#c3a375;
    color:#000;
}
/* Main Header */
.main-header{
    padding:15px 0;
}
.header-selects{
    display:flex;
    gap:10px;
    margin-right: 26px;
}
/* Mobile */
@media(max-width:991px){

    .top-left-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .top-search{
        width:100%;
    }

    .top-right{
        justify-content:center;
    }
}

/* Desktop */
.top-header{
    display:block;
}

/* Mobile */
@media (max-width: 991px){

    .top-header{
        display:none;
        padding: 15px 15px !important;
    }

    .mobile-top-header{
        display:block;
        width:100%;
        padding:15px;
        border-top:1px solid rgba(255,255,255,0.1);
    }

    .mobile-top-header .top-left-menu{
        display:flex;
        flex-direction:column;
        gap:12px;
        margin-bottom:20px;
    }

    .mobile-top-header .top-left-menu a{
        color:#fff;
        text-decoration:none;
    }

    .mobile-top-header .top-search{
        display:flex;
        width:100%;
        margin-bottom:20px;
    }

    .mobile-top-header .top-search input{
        width:100%;
        height:42px;
        padding:0 15px;
    }

    .mobile-top-header .top-search button{
        width:50px;
    }

    .mobile-top-header .top-right{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .mobile-top-header .top-login,
    .mobile-top-header .top-signup{
        text-align:center;
        padding:12px;
        border-radius:30px;
        text-decoration:none;
    }
}

/* Hide mobile block on desktop */
@media (min-width: 992px){
    .mobile-top-header{
        display:none;
    }
}
.currency-box select {
    width: 90px;
  /* height: 34px; */
    background: linear-gradient(135deg, #D4AF37, #F5D77A);
    color: #000;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    text-align: center;
    text-align-last: center; /* Centers selected option */
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0 30px 0 10px;
    outline: none;
    position: relative;
}
.currency-box{
    position: relative;
    display: inline-block;
}
.currency-box::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #000;
    pointer-events: none;
}
.top-header{
/* background: #FAFAF8; */
background: #022D5A;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding: 10px 15px;
overflow:hidden;
}
.top-left{
    flex:1;
    overflow:hidden;
}
.top-right{
    display:flex;
    gap:10px;
}
/* SELECT BOXES */
.currency-box select,
.language-box select{
    background:linear-gradient(135deg,#c99a2e,#f7d774);
    color:#000;
    border:none;
    border-radius:6px;
    padding:5px;
    text-align:center;
    text-align-last:center;
    font-weight:600;
    cursor:pointer;
    outline:none;
}
/* MAIN HEADER */
.main-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#111;
}
.logo h2{
    color:#D4AF37;
    margin:0;
}
.search-box{
    /* width:50%; */
    position:relative;
}
.header-buttons{
    display:flex;
    gap:10px;
}
.login-btn{
  display: inline-block;
 padding: 5px;
  /* Typography */
  
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-align: center;
  /* Border & Background */
  background: #0460C0;
  border-radius: 6px; /* Smooth rounded corners */
  /* Smooth transition for hover effect */
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  width: 90px;
}
.login-btn:hover{
    color: #F2F4F7;
}

.signin-btn{
    border:1px solid #D4AF37;
    color:#D4AF37;
}

.glass-btn{
   padding: 8px 22px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    background: #0460C0;
    border:1px solid rgba(255,255,255,0.2);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
font-size: 15px;
    transition:all 0.3s ease;
}

.glass-btn:hover{
    background:rgba(255,255,255,0.15);
    transform:translateY(-2px);
}

/* Gold Sign Up Button */
.gold-btn{
   padding: 5px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    font-size: 16px;
background: #0460C0;
    
width: 90px;
    transition:all 0.3s ease;
text-align: center;
    
}

.gold-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(201,154,46,0.35);
    color:#F2F4F7;
}
.header-actions{
    display:flex;
    align-items:center;
    gap:9px;
}
@media screen and (max-width: 576px){

    .top-right{
        /* width: 100%; */
        /* flex-direction: column; */
        gap: 10px;
    }
.header-selects{
    margin: auto;
}
  .logo img{
   max-width: 100px !important;
  }
    .search-box input{
        height: 40px;
        font-size: 14px;
    }

    .header-actions{
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .glass-btn,
    .gold-btn{
        flex: 1;
        max-width: 120px;
        text-align: center;
        padding: 7px 0;
        font-size: 14px;
    }
    .header {
  
  /* margin-top: 130px !important; */
}
/* 26-06-2026 */
.search-box input{
    width: 100%;
}


}
.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#fff;
}

.footer-links h5,
.footer-newsletter h5,
.footer h5{
    color:#fff;
    margin-bottom:20px;
    font-weight:600;
    font-size: 16px;
}

.address-container{
    margin-bottom:12px;
}

.footer p{
    line-height:1.8;
    margin-bottom:0;
}

.copyright{
    padding:20px 0;
    /* color:#ccc; */
}
.social-icons{
    display:flex;
    gap:5px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s ease;
}

.social-icons a i{
    font-size:30px;
}

.bi-facebook{
    color:#1877F2 !important;
}

.bi-instagram{
    color:#E4405F !important;
}

.bi-youtube{
    color:#FF0000 !important;
}

.bi-twitter-x{
    color:#ffffff !important;
}


/* Brand Slider Container */
.brand-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

/* Track */
.brand-slider-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: marquee 20s linear infinite;
}

/* Brand Item */
.brand-item {
    flex: 0 0 auto;
}

.brand-item img {
    max-width: 150px;
    height: auto;
    display: block;
}
.product-card-view{
    position: relative;
    background: #fbf2f2;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease;
}
.product-card-view:hover{
    transform: translateY(-5px);
}

.product-image-view{
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-view img{
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.product-wrapper{
    display:flex;
    /* gap:60px; */
    /* align-items:center; */
}

.product-gallery{
    flex:1;
}

/* Right Content */

.product-info{
    flex:1;
}

.product-category{
    color: #9a0015;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: bold;
}


.product-info h1{
    font-size:25px;
    margin:10px 0;
}

.rating{
    color: #000;
  margin-bottom: 20px;
  font-weight: bolder;
  font-size: 25px;
}

.rating span{
    color:#666;
    margin-left:10px;
    font-size:14px;
}

.product-desc{
    color:#777;
    line-height:1.8;
    margin-bottom:25px;
}

.price{
    margin-bottom:25px;
}

.price del{
    color:#999;
    margin-right:15px;
}

.price span{
    color:#000;
    /* font-size:30px; */
    font-weight:700;
}

.sizes{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
}

.sizes button{
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#eee;
    cursor:pointer;
}

.sizes button:hover{
    background:#22b14c;
    color:#fff;
}

.cart-row{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

/* Bottom Area */

.product-bottom{
    display:flex;
    gap:40px;
    margin-top:30px;
}

.tabs-content{
    flex:3;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.tabs{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.tabs button{
    border:none;
    padding:12px 25px;
    border-radius:30px;
    background:#f3f3f3;
    cursor:pointer;
}

.tab-body p{
    margin-top:15px;
    color:#666;
    line-height:1.8;
}

.related-product{
    flex:1;
}

.related-card{
    background:#fff;
    padding:20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.related-card img{
    width:100%;
}

.related-card h4{
    margin:15px 0;
}

.related-card span{
    color:#22b14c;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

    .product-wrapper,
    .product-bottom{
        flex-direction:column;
    }

    .product-info h1{
        font-size:32px;
    }

    .cart-row{
        flex-direction:column;
    }

    .cart-btn{
        height:50px;
    }
}
.tab-content{
    display:none;
    padding-top:20px;
}

.tab-content.active{
    display:block;
}

.tab-btn{
    border:none;
    padding:12px 25px;
    border-radius:30px;
    background:#f3f3f3;
    cursor:pointer;
    transition:.3s;
}

.tab-btn.active{
    background:#24c153;
    color:#fff;
}
.product-card{
    cursor:pointer;
}
.main-image {
    width: 500px;
    height: 400px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
     background:#dfebfa;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.3s ease;
}
/* Review Item */
.review-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}
.review-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}
.review-header h4 {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0;
}
.review-header span {
    color: #8d8d8d;
    font-size: 16px;
}
.review-stars {
    color: #f7a541;
    font-size: 22px;
    margin-bottom: 12px;
}
.review-content p {
    font-size: 18px;
    color: #222;
    margin: 0;
}

/* Add Review */

.add-review h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 500;
}

.note {
    font-size: 16px;
    /* margin-bottom: 30px; */
}

/* Rating */

.rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    /* margin-bottom: 25px; */
}

.rating-row label {
    color: #7c0c0c;
    font-size: 16px;
}

.rating-stars {
    color: #f7a541;
    font-size: 32px;
    letter-spacing: 4px;
}

/* Form */

.form-group {
    width: 100%;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #7c0c0c;
    font-size: 16px;
}


.form-group textarea {
    /* min-height: 100px; */
    resize: vertical;
   border: 1px solid #ddd;
     outline: none;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .form-group {
    flex: 1;
}

/* Checkbox */

.checkbox-row {
    display: flex;
    align-items: center;
   gap: 10px;
  margin: 10px 0;
}

.checkbox-row label {
    color: #7c0c0c;
    font-size: 16px;
}

/* Button */

.submit-btn {
    background: #f0c44f;
    border: none;
    padding: 15px 35px;
  font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: .3s;
}

.submit-btn:hover {
    background: #dba92c;
}

/* Responsive */

@media (max-width: 768px) {


  
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .review-tabs {
        gap: 20px;
        flex-wrap: wrap;
    }

    .add-review h2 {
        font-size: 30px;
    }

    .review-header h4 {
        font-size: 24px;
    }
}
.register-wrapper{
    width:100%;
    /* padding:25px; */
}

.register-box{
   background: #fff;
    max-width:650px;
    margin:auto;
    padding: 30px 45px 45px;
    border-radius:25px;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 80px;
}

.register-box h1{
    font-size:30px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.register-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0px 20px;
}

.form-group{
    position:relative;
}

.form-group label{
    display:block;
    font-size:16px;
    font-weight:500;
    color:#333;
    margin-bottom:14px;
}
.form-group input::placeholder{
    color:#c1c1c1;
}

.error-input{
    border:1px solid #e6e6e6;
}

.error-msg{
    position:absolute;
    right:0;
    bottom:-22px;
    font-size:12px;
    color:#ff9999;
}
.button-row{
    grid-column:1/-1;
    display:grid;
    /* grid-template-columns:1fr 1fr; */
    gap:18px;
    margin-top:20px;
}
.cancel-btn{
    height:56px;
    border:2px solid #aeb8c7;
    background:#fff;
    color:#1b2340;
    font-size:18px;
    font-weight:500;
    cursor:pointer;
}
.register-btn{
    height:56px;
    border:none;
  background: #022D5A;
    color:#fff;
    font-size:18px;
    font-weight:500;
    cursor:pointer;
}
.cancel-btn:hover{
    background:#f8f8f8;
}
.register-btn:hover{
    background:#2373da;
}
@media(max-width:768px){

    .register-form{
        grid-template-columns:1fr;
    }

    .button-row{
        grid-template-columns:1fr;
    }

    .register-box{
        padding:30px 20px;
    }

    .register-box h1{
        font-size:28px;
    }
    .main-image{
        width:auto;
        height: auto;
    }
}

.form-group select:focus{
    border-color:#07245d;
}
.modal-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
    padding:20px;
}
.login-modal{
    width:650px;
    max-width:100%;
    background:#F2F7FC;
    border-radius:25px;
    padding:40px;
    position:relative;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
}
.close-btn{
    position:absolute;
    right:25px;
    top:20px;
    font-size:32px;
    cursor:pointer;
    color:#555;
}

.logo img{
    max-width:160px;
}

.login-modal h2{
    font-size:40px;
    margin-bottom:10px;
    color:#222;
}

.login-text{
    color:#666;
    line-height:1.6;
    margin-bottom:25px;
}

.facebook-btn{
    width:100%;
    height:60px;
    background:#f4f4f4;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    text-decoration:none;
    color:#222;
    font-size:22px;
    margin-bottom:30px;
}

.facebook-btn i{
    color:#1877f2;
    font-size:28px;
}
/* ===========================
   Mobile Responsive
=========================== */
@media (max-width: 767px) {

    .hero{
        padding: 70px 0 30px;
        min-height: auto;
    }

    .hero .container{
        padding: 0 20px;
    }

    .hero-content{
        padding-top: 40px !important;
        text-align: center;
    }

    .hero-content h1{
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 15px;
    }

    .hero-content p{
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .hero-buttons{
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .shop-btn,
    .call-btn{
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .call-btn{
        padding: 14px 18px;
    }

    /* Feature Box */

    .feature-box-marine{
        position: static;          /* absolute/remove overlap */
        transform: none;
        width: calc(100% - 30px);
        margin: 35px auto 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
        border-radius: 18px;
    }

    .feature{
        display: flex;
        align-items: flex-start;
        gap: 15px;
        text-align: left;
    }

    .feature i{
        font-size: 24px;
        min-width: 40px;
    }

    .feature h4{
        font-size: 18px;
        margin-bottom: 6px;
    }

    .feature p{
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }
}

@media(max-width:768px){

.feature p {
  font-size: 16px;
}
.header{
    flex-direction:column;
    gap:15px;
    padding-bottom: 20px;
    position: absolute;
}

nav ul{
    flex-wrap:wrap;
    justify-content:center;
}

.features{
    grid-template-columns:1fr;
}
}
.blog-section-detail{
    background:#eef4fb;
    padding:100px 0;
}

.blog-section-detail .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Featured Blog */

.featured-blog{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:100px;
}

.featured-image img{
    width:100%;
    border-radius:10px;
    display:block;
}

.blog-meta{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.blog-meta span{
    background:#d8ebff;
    padding:10px 22px;
    border-radius:8px;
    font-weight:600;
    color:#163a6d;
}

.featured-content h2{
    font-size:30px;
    color:#111;
    line-height:1.3;
    margin-bottom:20px;
}

.featured-content p{
    font-size:19px;
    line-height:1.8;
    color:#333;
    margin-bottom:25px;
}

.featured-content a{
    color:red;
    text-decoration:none;
    font-weight:700;
    font-size:20px;
}

/* Blog Grid */

.blog-grid-detail{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.blog-card-detail img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
    height: 400px;
}

.blog-card-detail h3{
    font-size:32px;
    margin-bottom:18px;
    color:#111;
}

.blog-card-detail p{
    font-size:18px;
    line-height:1.7;
    color:#333;
    margin-bottom:20px;
}

.blog-card-detail a{
    text-decoration:none;
    color:red;
    font-size:20px;
    font-weight:700;
}
.blog-banner{
    background: #d9ebff;
padding: 200px 0px 50px;
  text-align: center;
}
.blog-banner h1{
    font-size: 48px;
  color: #0d3565;
  margin-bottom: 30px;
  font-weight: 700;
}
.blog-banner p{
    max-width: 850px;
  margin: auto;
  font-size: 22px;
  line-height: 1.6;
  color: #0a58ca;
}

/* Hover */

.blog-card-detail img,
.featured-image img{
    transition:.4s;
}

.blog-card-detail:hover img,
.featured-blog:hover img{
    transform:scale(1.03);
}

/* Responsive */

@media(max-width:991px){

.featured-blog{
    grid-template-columns:1fr;
}

.blog-grid-detail{
    grid-template-columns:1fr;
}

.featured-content h2{
    font-size:30px;
}

.blog-card-detail h3{
    font-size:26px;
}

}

@media(max-width:576px){

.call-btn strong{
    font-size: 26px;
}

.blog-section{
    padding:50px 0;
}

.blog-meta{
    flex-wrap:wrap;
}

.blog-meta span{
    font-size:14px;
    padding:8px 16px;
}

.featured-content h2{
    font-size:24px;
}

.featured-content p,
.blog-card-detail p{
    font-size:16px;
}

.blog-card-detail h3{
    font-size:22px;
}

.featured-content a,
.blog-card-detail a{
    font-size:18px;
}

}
/* Modal */

.login-popup{
    width:420px;
    background:#fff;
    border-radius:14px;
    padding:35px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

/* Close Button */

.close-btn{
    position:absolute;
    right:18px;
    top:15px;
    font-size:28px;
    cursor:pointer;
    color:#666;
    transition:.3s;
}

.close-btn:hover{
    color:#0d6efd;
}

/* Heading */

.login-popup h2{
    font-size:32px;
    color:#0b3769;
    margin-bottom:10px;
    text-align:center;
    font-weight:700;
}

.login-text{
    /* text-align:center; */
    color:#666;
    line-height:1.7;
    font-size:15px;
    margin-bottom:30px;
}

/* Form */

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.form-group label span{
    color:red;
}

.form-group input{
    width:100%;
    height:48px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    padding:0 15px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus{
    border-color:#0d6efd;
    box-shadow:0 0 8px rgba(13,110,253,.15);
}

/* Password */

.password-box{
    position:relative;
}

.eye-icon{
    position:absolute;
    right:15px;
    top:43px;
    color:#777;
    cursor:pointer;
}

/* Options */

.form-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0;
    font-size:14px;
}

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

.form-options a{
    text-decoration:none;
    color:#0d6efd;
    font-weight:600;
}

/* Button */

.login-submit{
    width:100%;
    height:50px;
    border:none;
    border-radius:8px;
    background:#063b7c;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-submit:hover{
    background:#084298;
}

/* Register */

.register-link{
    text-align:center;
    margin-top:25px;
    color:#555;
    font-size:15px;
}

.register-link a{
    text-decoration:none;
    color:#063b7c;
    font-weight:700;
}
.phone-button{
background: none;
  width: 240px;
  border-color: #fff;
  border-radius: 20px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
/* Mobile */

@media(max-width:576px){

.login-popup{
    width:95%;
    padding:25px;
}

.login-popup h2{
    font-size:28px;
}

.form-options{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}
.phone-button{

  width: 200px;
  
}
}
.form-group select{
    width:100%;
    height:52px;
    border:1px solid #d9d9d9;
    background:#fff;
    padding:0 18px;
    font-size:15px;
    color:#555;
    outline:none;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    padding-right:45px;
}

.form-group select:focus{
    border-color:#07245d;
}
.order-success{
    padding:200px 15px;
}



.page-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
}

.card{
    background:#fffdf8;
    border:1px solid #c9c9c9;
    border-radius:14px;
    padding:24px;
    margin-bottom:20px;
    text-align: left;
}

.order-info p{
    margin-bottom:15px;
    font-size:16px;
    color:#333;
}

.order-info p:last-child{
    margin-bottom:0;
}

.card h3{
    font-size:24px;
    margin-bottom:12px;
    color:#222;
}

.card .desc{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.card h4{
    font-size:19px;
    margin:22px 0 12px;
    color:#222;
}

.card ol{
    padding-left:22px;
    margin-bottom:18px;
}

.card ol li{
    margin-bottom:8px;
    line-height:1.6;
    color:#555;
}

.card p{
    color:#555;
    line-height:1.7;
}

.bank-details{
    margin:18px 0 30px;
}

.bank-details p{
    margin-bottom:6px;
}

.btn-tkn{
    display:inline-block;
    background:#022D5A;
    color:#fff;
    text-decoration:none;
    padding:14px 32px;
    font-weight:600;
    border-radius:2px;
    transition:.3s;
    text-align: center;
}

.btn-tkn:hover{
    background:#6d1313;
}

@media(max-width:576px){

    .page-title{
        font-size:18px;
    }

    .card{
        padding:18px;
    }

    .card h3{
        font-size:20px;
    }

    .card h4{
        font-size:16px;
    }

    .order-info p,
    .card p,
    .card li{
        font-size:14px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}

















































