/* 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: #F9E8D6; */
  background: #FAFAF8;
  font-family: 'Montserrat';
  color: var(--color-default);
}
a {
  color: #D4AF37;
  text-decoration: none;
}
a:hover {
color: #D4AF37;
text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat';
}
section {
  overflow: hidden;
  /* padding: 80px 0; */
  scroll-margin-top: 90px;
  overflow: clip;
}


/*--------------------------------------------------------------
# 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: #881B1B;
  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: #881B1B;
}
@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: #F3CF8D;
    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 Navigation
--------------------------------------------------------------*/
@media (max-width: 1079px) {
  .navbar {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a,
  .navbar a:focus {
    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: #7f7f90;
    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: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    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: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .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: #881B1B;
    padding: 0 0 30px 0;
   color: #F3CF8D;
    font-size: 18px;
  }
  #footer .footer-top {
    background: #881B1B;
    /* padding: 60px 0 30px 0; */
  }

  #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: #F3CF8D;
  }
  #footer .footer-top .footer-info p {
    font-size: 13px;
    line-height: 25px;
    margin-bottom: 0;
    color: #F3CF8D;
    margin-top: 20px;
  }
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    /* background: rgba(255, 255, 255, 0.08); */
    color: #F3CF8D;
    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: #F3CF8D;
    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;
  }

.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: 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;
}

.container{
    max-width:1300px;
    margin:auto;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:40px;
    text-align: center;
}

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

.product-card{
    position:relative;
}

.product-image{
    /* background:#f3e7db; */
background:#FAFAF8;
    border:1px solid #e2d8ce;
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    box-shadow: 0 0 .8125rem #b77676;
}

.gold-border{
    border:2px solid #881B1B;
}

.product-image img{
    max-width:85%;
    max-height:85%;
    object-fit:contain;
}

.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;
}

.container{
    max-width:1400px;
    margin:auto;
}

.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:18px;
    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);
}

.product-card h4{
    margin-top:15px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

.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;
    }

   
    .brand-item img{
        max-width:100px;
    }
}
.testimonial-section{
    /* background:#F2E5D7; */
    padding:60px 20px;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.testimonial-section h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:35px;
}

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

.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:22px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:220px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.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;
}

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

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

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

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

    .testimonial-section{
        padding:50px 15px;
    }

    .testimonial-section h2{
        font-size:28px;
        text-align:center;
        margin-bottom:25px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .testimonial-card{
        min-height:auto;
        padding:20px;
    }

    .stars{
        font-size:20px;
    }

    .testimonial-card p{
        font-size:15px;
    }
}

/* Galaxy S25 / Small Phones */
@media (max-width:480px){

    .testimonial-section h2{
        font-size:24px;
    }

    .testimonial-card{
        border-radius:20px;
        padding:18px;
    }

    .testimonial-card p{
        font-size:14px;
        line-height:1.6;
    }

    .author span{
        font-size:13px;
    }
}
.gold-border {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.gold-border::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        transparent 0deg,
        transparent 300deg,
        #881B1B 330deg,
        #881B1B 360deg
    );
    animation: rotateBorder 3s linear infinite;
}

.gold-border::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #FAFAF8;
    border-radius: 17px;
}

.gold-border img {
    position: relative;
    z-index: 2;
    border-radius: 17px;
}
@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}
/* Top Header */
.header{
    width:100%;
    /* background:#000; */
    margin-top: 55px;
}
/* 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-header .container{
        flex-direction:column;
    }

    .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: 5px 5px !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;
    }
}
.language-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;
}

.language-box {
    position: relative;
    display: inline-block;
}

.language-box::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #000;
    pointer-events: 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: #881B1B;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding: 10px 15px;
overflow:hidden;
}

.top-left{
    flex:1;
    overflow:hidden;
}

.marquee{
    white-space:nowrap;
    overflow:hidden;
}

.marquee span{
    display:inline-block;
    padding-left:50%;
    animation:marquee 15s linear infinite;
    color:#D4AF37;
    font-size:14px;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}

.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{
    
    position:relative;
}

.search-box input{
   
    height:35px;
    padding:0 60px 0 20px;
    border:2px solid #D4AF37;
    border-radius:30px;
    outline:none;
}

.search-box button{
    position:absolute;
    right:5px;
    top:5px;
    width:25px;
    height:25px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    cursor:pointer;
}

.header-buttons{
    display:flex;
    gap:10px;
}


.login-btn{
  display: inline-block;
 padding: 5px;
  /* Typography */
  
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-align: center;
  /* Border & Background */
  background: linear-gradient( 135deg, #c99a2e, #f7d774 );
  
  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:#000;
    font-weight:600;
    background:rgba(255,255,255,0.08);
    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:#000;
    font-size: 16px;

    background:linear-gradient(
        135deg,
        #c99a2e,
        #f7d774
    );
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;
    }

    .search-box{
        width: 100%;
    }

    .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: 10px 0;
        font-size: 14px;
    }
    .header {
  
  margin-top: 100px;
}
}
.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:#D4AF37;
    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;
}
.add-cart-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
      color:#fff;
    
  background: linear-gradient( 135deg, #881B1B, #881B1B);
    border:none;
    transition:all 0.3s ease;
    cursor:pointer;
}

.add-cart-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(201,154,46,0.35);
    color:#fff;
}

/* 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;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.brand-slider:hover .brand-slider-track {
    animation-play-state: paused;
}
.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-card-view h4{
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-align: left;
    /* margin: 20px 0 10px; */
}

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

.add-cart-btn-view{
    display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient( 135deg, #881B1B, #881B1B);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.arrow-icon{
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: #fff;
    border-bottom-left-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow-icon::before{
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    width: 25px;
    height: 25px;
    background: transparent;
    border-top-right-radius: 25px;
    box-shadow: 8px -8px 0 #fff;
}
.arrow-icon::after{
    content: "";
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 25px;
    height: 25px;
    background: transparent;
    border-top-right-radius: 25px;
    box-shadow: 8px -8px 0 #fff;
}
.arrow-icon i{
   width: 46px;
    height: 46px;
    background: #f6d6d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.4s ease;
}
.product-card-view:hover .arrow-icon i{
    background: #881B1B; /* Blue */
    color: #fff;
    transform: rotate(45deg);
}
.product-card-view:hover .product-image img{
    transform: scale(1.12);
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100px;
    background: #fff;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999;
}
.submenu li {
    width: 100%;
}
.submenu li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.submenu li a:hover {
    background: #881B1B;
    color: #fff;
}


.product-wrapper{
    display:flex;
    /* gap:60px; */
    /* align-items:center; */
}

.product-gallery{
    flex:1;
}



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

.thumbnail-gallery{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.thumbnail-gallery img{
    width:90px;
    height:90px;
    object-fit:cover;
    /* background:#fff; */
    padding:10px;
    border-radius:10px;
    cursor:pointer;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.thumbnail-gallery img:hover,
.thumbnail-gallery img.active {
    border-color: #0d6efd;
}
/* 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:#22b14c;
    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;
}

.quantity{
    display:flex;
    align-items:center;
    background:#f1f1f1;
    border-radius:30px;
    overflow:hidden;
}

.quantity button{
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
}

.quantity input{
    width:50px;
    border:none;
    text-align:center;
    background:none;
}

.cart-btn{
    padding:10px 35px;
    border:none;
    border-radius:30px;
    background:#881B1B;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.cart-btn:hover{
  background:#881B1B;
}

/* 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;
}

.tabs button.active{
    background:#881B1B;
    color:#fff;
}

.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:#ffecec;
    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,
.form-group input {
    width: 100%;
    border: none;
    background: #fff;
    padding: 15px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group textarea {
    /* min-height: 100px; */
    resize: vertical;
}

.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;
}

.contact-btn:disabled {
    background: #f7d774;   
    color: #000;        
    cursor: not-allowed;
    opacity: 0.7;
}



/* Responsive */

@media (max-width: 768px) {

    .review-item {
        flex-direction: column;
    }

    .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{
    width:100%;
    height:52px;
    border:1px solid #d9d9d9;
    background:#fff;
    padding:0 18px;
    font-size:15px;
    color:#555;
    outline:none;
}

.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: linear-gradient( 135deg, #881B1B, #881B1B);
    color:#fff;
    font-size:18px;
    font-weight:500;
    cursor:pointer;
}
.cancel-btn:hover{
    background:#f8f8f8;
}
.register-btn:hover{
    background:#c47905;
}
@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;
    }
}
.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;
}

.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:#fff;
    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;
}

.divider{
    text-align:center;
    position:relative;
    margin:25px 0;
}

.divider:before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    width:42%;
    height:1px;
    background:#ddd;
}

.divider:after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    width:42%;
    height:1px;
    background:#ddd;
}

.divider span{
    background:#fff;
    padding:0 15px;
    color:#444;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

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

.form-group input{
    width:100%;
    height:60px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    padding:0 20px;
    font-size:16px;
}

.password-box{
    position:relative;
}

.eye-icon{
    position:absolute;
    right:20px;
    bottom:20px;
    font-size:22px;
    cursor:pointer;
}

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

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

.form-options a{
    color:#881B1B;
    text-decoration:none;
}

.login-submit{
    width:100%;
    height:65px;
    border:none;
    border-radius:50px;
    background: linear-gradient( 135deg, #881B1B, #881B1B);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    font-weight:600;
}

.register-link{
    text-align:center;
    margin-top:35px;
    font-size:18px;
}

.register-link a{
    color:#881B1B;
    text-decoration:none;
    font-weight:600;
}
.cart-icon {
    position: relative;
    display: inline-block;
    font-size: 28px;
    color: #4a3b32;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -1px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: #9f1717;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


.cart-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
    margin-bottom: 75px;
}


.cart-items{
    flex:3;
}

.cart-item{
     display:flex;
    align-items:flex-start;
    gap:20px;
    padding:20px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    background:#fff;
    width:100%;
}

.product-image-cart{
    width:120px;
    height:150px;
    border:1px solid #ddd;
    padding:10px;
    background:#fff;
     flex-shrink:0;
}
.product-details{
    flex:1;
    position:relative;
}

.top-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding-right:30px;
}

.product-image-cart img{
    width:100%;
    height:100%;
    object-fit:contain;
     
}

.top-row h4{
    margin:0 0 5px;
    font-size:16px;
    font-weight:600;
}
.delete-btn{
       position:absolute;
    top: 0%;
  right: 0%;
   color: #d00d0d;
    font-size:18px;
    text-decoration:none;
    z-index:10;
}

.bottom-row{
    margin-top:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.sku{
    margin:2px 0;
    font-size:13px;
    color:#888;
}
.product-info{
    flex:1;
}

.product-info h3{
    margin-bottom:10px;
    color:#222;
}

.tags{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
    margin-bottom:10px;
}

.tags span{
    font-size:11px;
    padding:3px 8px;
    border:1px solid #881B1B;
    color:#881B1B;
    border-radius:3px;
}

.stock{
    color:#63c7be;
    margin-bottom:15px;
    font-size:14px;
}

.stock.out{
    color:#e74c3c;
}

.quantity-box{
   display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:30px;
    overflow:hidden;
}

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

.quantity-box input{
   width:40px;
    text-align:center;
    border:none;
    outline:none;
    font-size:15px;
}

.remove-btn{
    margin-left:15px;
    color:#000;
    text-decoration:none;
    font-size:14px;
}

.price{
   font-size: 22px;
  font-weight: 700;
  color: #000;
}

/* Summary Box */

.cart-summary{
  flex: 1;
  background: #fff;
  padding: 25px;
  border: 1px solid #ddd;
  height: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border-radius: 20px;
}


.cart-summary h2{
    text-align:center;
    margin-bottom:25px;
    color: #000;
}

.coupon-box{
    display:flex;
    margin-bottom:15px;
}

.coupon-box input{
    flex:1;
    padding:10px;
    border:1px solid #ddd;
}

.coupon-box button{
    background: linear-gradient( 135deg, #881B1B, #881B1B);
    color:#fff;
    border:none;
    padding:10px 18px;
    cursor:pointer;
}

.discount{
    background:#eef8f7;
    color:#49b8b0;
    padding:10px;
    margin-bottom:20px;
    font-size:14px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
   color: #000;
}

.total{
    font-size:18px;
    font-weight:600;
}

.checkout-btn{
    width:100%;
    padding: 14px 45px;
    border:none;
  background: linear-gradient( 135deg, #881B1B, #881B1B);
    color:#fff;
    font-size:16px;
    cursor:pointer;
    margin-top:20px;
}

.checkout-btn:hover{
    opacity:.9;
}

/* Responsive */

@media(max-width:991px){

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

.price{
    font-size:26px;
}
}

@media(max-width:768px){

.cart-item{
    flex-wrap:wrap;
}

.price{
    width:100%;
    text-align:left;
}
}
.checkout-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
    margin-bottom: 70px;
}

.checkout-left{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.checkout-right{
    background:#fae2e2ff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    height: max-content;
}
.back-btn{
    text-decoration:none;
    color:#111;
    display:inline-block;
    margin-bottom:20px;
}

.delivery-option{
    border:1px solid #ddd;
    padding:15px;
    border-radius:8px;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    cursor:pointer;
}

.delivery-option.active{
    border:1px solid #7b68ee;
    background:#faf8ff;
}

.delivery-option i{
    color:#7b68ee;
}



.address-box{
    position:relative;
}

.address-box input{
    width:100%;
    height:45px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 40px 0 15px;
}

.address-box i{
    position:absolute;
    right:15px;
    top:14px;
    color:#999;
}

h3{
    margin:25px 0 15px;
}

.payment-methods{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.method{
    width:70px;
    height:45px;
    border:1px solid #ddd;
    background:#fff;
    border-radius:8px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    flex-shrink:0;
    transition:border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.method:disabled{
    opacity:.55;
    cursor:not-allowed;
}

.method.active{
    border:2px solid #7b68ee;
    background:#faf8ff;
    box-shadow:0 0 0 1px rgba(123,104,238,.25);
}

.method img{
    width:50px;
    height:40px;
    object-fit:contain;
    pointer-events:none;
}

.payment-details-panel{
    border:1px solid #e5e5e5;
    border-radius:8px;
    padding:16px;
    margin-bottom:20px;
    background:#fafafa;
}

.payment-type-options{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.payment-type-option{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:0;
    cursor:pointer;
    user-select:none;
}

.payment-type-option input[type="radio"]{
    width:18px;
    height:18px;
    margin:0;
}

.payment-type-label{
    white-space:nowrap;
    font-weight:600;
    color:#111;
}

.bank-transfer-instructions ol{
    line-height:1.45;
}

.payment-panel-hint{
    margin:0 0 12px;
    color:#444;
    font-size:14px;
}

.payment-panel-message{
    margin:0 0 12px;
    padding:12px 14px;
    border-radius:6px;
    background:#fff3cd;
    border:1px solid #ffe69c;
    color:#664d03;
    font-size:14px;
}

.stripe-checkout-embed{
    min-height:0;
}

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

.form-group label{
    display:block;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 15px;
}

.card-input{
    position:relative;
}

.card-input img{
    position:absolute;
    right:15px;
    top:12px;
    width:35px;
}
.buttons{
    display:flex;
    gap:15px;
    margin-top:15px;
}
.back{
    width:100px;
    height:50px;
    border:none;
    border-radius:6px;
    background:#eee;
    cursor:pointer;
}

.confirm{
    height:50px;
    padding:0 30px;
    border:none;
    border-radius:6px;
    background:#881B1B;
    color:#fff;
    cursor:pointer;
}

.product{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:14px;
}

.price-row{
    display:flex;
    justify-content:space-between;
    margin:12px 0;
}

.total{
    font-weight:bold;
    font-size:18px;
}

.saving-box{
    margin-top:20px;
    border:1px solid #37c27d;
    color:#37c27d;
    border-radius:6px;
    padding:12px;
    display:flex;
    justify-content:space-between;
}

.coupon{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.coupon input{
    flex:1;
    height:45px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 15px;
}

.coupon button{
    width:90px;
    border:none;
    border-radius:6px;
    background:#eee;
    cursor:pointer;
}

@media(max-width:768px){
    .checkout-container{
        grid-template-columns:1fr;
    }

    .row{
        flex-direction:column;
    }

    .buttons{
        flex-direction:column;
    }

    .confirm,
    .back{
        width:100%;
    }
}
/* Section Base Styling */
.stats-section {
    
  background-color: #881B1B; 
  padding: 30px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Container to handle layout and spacing */
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px; /* Gap for mobile wrapping */
}

/* Individual Stat Block */
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px; /* Prevents squishing on smaller screens */
}

/* Big Gold Numbers (Elegant Serif Font) */
.stat-number {

  font-size: 2.5rem; /* Adjust sizes as needed for your design scales */
  font-weight: 500;
 color: #fff;
  margin: 0 0 10px 0;
  line-height: 1;
}

/* Plus/Suffix styling slightly lighter/smaller if needed */
.stat-suffix {
  font-size: 2.2rem;
  margin-left: 2px;
}

/* Labels below numbers (Clean tracking/spaced Sans-Serif) */
.stat-label {
  
  font-size: 0.85rem;
  font-weight: 500;
 color: #cbb2b2;
  /* Light off-white / soft beige color */
  text-transform: uppercase;
  letter-spacing: 0.12em; /* Emulates the tracked-out look */
  margin: 0;
}

/* Responsive design for smaller mobile viewports */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 35px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}
.banner-section{
    width:100%;
    max-width:1400px;
    margin:auto;
    /* padding:40px 20px; */
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:25px;
}
.banner-left{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.banner-left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Overlay */
.banner-left::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* Content Above Overlay */
.banner-content{
    position: absolute;
    top: 40%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.banner-content h1{
    color: #fff;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-content p{
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.offer{
    color: #f3b184;
    font-size: 40px;
    font-weight: 600;
}

.banner-content h1{
    font-size:70px;
    line-height:1.1;
    color:#fff;
    font-weight:400;
    margin-bottom:20px;
}

.banner-content p{
    font-size:18px;
    line-height:1.8;
    color:#fff;
    margin-bottom:30px;
}

.shop-btn{
    display:inline-block;
    background:#881B1B;
    color:#fff;
    text-decoration:none;
    padding:16px 40px;
    border-radius:8px;
    font-weight:600;
}

/* Right Side */
.banner-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.small-banner{
    background:#ffe8e8;
    border-radius:10px;
    overflow:hidden;
    min-height:297px;
    /* display:flex; */
    align-items:center;
    justify-content:space-between;
    padding:15px;
}

.small-content{
    max-width:180px;
}

.small-content span{
    color:#888;
    font-size:18px;
}

.small-content h3{
    font-size:25px;
    font-weight:400;
    color:#333;
    margin:15px 0;
    line-height:1.2;
}

.small-content a{
    display:inline-block;
    padding:12px 25px;
    background:#881B1B;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

.small-banner img{
    width:180px;
    height:180px;
    object-fit:contain;
}

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

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

    .banner-left{
        min-height:500px;
    }

    .banner-content{
        left:30px;
        right:30px;
    }

    .offer{
        font-size:40px;
    }

    .banner-content h1{
        font-size:45px;
    }

    .small-banner{
        min-height:220px;
    }
}
.plan-section{
    max-width:800px;
    /* margin:40px auto; */
    display:flex;
    flex-direction:column;
    gap:20px;
}

.plan-card{
    display:flex;
    align-items:center;
    gap:25px;
    padding:12px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.silver-card{
    background:#f5f5f5;
    border:1px solid #ddd;
    /* height: 135px; */
}

.gold-card{
    background:linear-gradient(135deg,#fbe8a2,#f4cb63);
    /* height: 135px; */
}

.plan-image{
    width:40%;
    text-align:center;
}

.plan-image img{
    width:100%;
    max-width:220px;
    display:block;
}

.plan-content{
    width:60%;
}

.plan-content h2{
    color:#7d0000;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.start-text{
    color:#7d0000;
    font-size:20px;
    font-weight:600;
}

.plan-content h3{
    color:#a30000;
    font-size:14px;
    margin:5px 0 15px;
    font-weight:700;
}

.plan-content ul{
    list-style:none;
    margin-bottom:20px;
}

.plan-content ul li{
    /* margin-bottom:10px; */
    font-size:10px;
    color:#222;
}

.plan-content ul li::before{
    content:"✓";
    color:#7d0000;
    font-weight:bold;
    margin-right:10px;
}

.invest-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    width:220px;
    height:55px;
    background:#7d0000;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.invest-btn:hover{
    background:#5c0000;
}

.invest-btn span{
    font-size:24px;
}

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

    .plan-card{
        flex-direction:column;
        text-align:center;
    }

    .plan-image,
    .plan-content{
        width:100%;
    }

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

    .plan-content h3{
        font-size:46px;
    }

    .invest-btn{
        margin:auto;
    }
}
.main-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
    padding:20px;
    align-items:start;
}

/* LEFT COLUMN */

.left-column{
    display:flex;
    flex-direction:column;
}

/* HERO */

.hero-card{
    height:560px;
    border-radius:15px;
    overflow:hidden;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url('../img/banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
    /* max-width:500px; */
    padding:60px;
}

.hero-content h3{
    font-size:42px;
    margin-bottom:15px;
     font-family: sans-serif;
}

.hero-content h1{
    font-size:70px;
    color:#f7d36f;
    line-height:1.1;
    margin-bottom:25px;
    font-family: sans-serif;
}


.hero-content p{
    font-size:24px;
    line-height:1.6;
     font-family: sans-serif;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    text-decoration:none;
    color:#fff;
    background:#a30000;
    padding:15px 30px;
    border-radius:10px;
}

/* FEATURES */

.features{
    background:#fff;
    margin-top:15px;
    border-radius:20px;
   padding: 35px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}
.feature i{
    color:#8b0000;
    font-size:35px;
}

.feature h4{
    margin-bottom:8px;
}

.feature p{
    color:#555;
    line-height:1.5;
    font-size:14px;
}

/* RIGHT COLUMN */

.sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* PRICE CARD */

.price-card{
    background:#980000;
    border-radius:15px;
    padding:20px;
    color:#fff;
}


.price-card .update{
    text-align:center;
    margin-top:10px;
    display:block;
}

.price-boxes{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.price-box{
    flex:1;
}

.price-box h4{
    margin-bottom:10px;
}

.price-box p{
    background:#c89d08;
 padding: 10px 12px;
  font-size: 14px;
    border-radius:8px;
    text-align: center;
  font-weight: bolder;
}

.price-card select{
    width:100%;
    padding:18px;
    margin-top:15px;
    border:none;
    border-radius:8px;
    font-size:16px;
}

/* PLAN CARDS */

.plan-card{
    border-radius:20px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:20px;
    /* height: 200px; */
}

.silver-plan{
    background:#D9D9D9;
}

.gold-plan{
    background:#ffdc73;
}

.plan-card img{
    width:140px;
}

.plan-content h3{
    color:#7d0000;
    margin-bottom:10px;
}

.plan-content h5{
    font-size:16px;
  
}

.plan-content h2{
    font-size:14px;
    color:#980000;
    margin-bottom:10px;
}


.plan-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#8b0000;
    color:#fff;
    text-decoration:none;
    padding:5px 10px;
    border-radius:8px;
}

/* RESPONSIVE */

@media(max-width:991px){

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

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

.hero-content h1{
    font-size:50px;
}

.hero-card{
    height:auto;
    min-height:600px;
}
}

@media(max-width:768px){

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

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

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

.price-boxes{
    flex-direction:column;
}

.plan-card{
    flex-direction:column;
    text-align:center;
}

.hero-content h1{
    font-size:40px;
}

.hero-content h3{
    font-size:30px;
}

.hero-content p{
    font-size:18px;
}
}

/* Banner */
.about-banner{
    background:#fff0c5;
   padding: 150px 0;
    height: 350px;
}

.about-banner h1{
    font-size:64px;
    font-weight:700;
    color:#111827;
    /* margin-bottom:30px; */
}

.about-banner h1 span{
    color:#d6a700;
}

.about-banner p{
    max-width:800px;
    font-size:20px;
    /* line-height:1.7; */
    color:#333;
}

.story-text{
    flex:1;
}

.story-label{
     display:inline-block;
    padding:8px 18px;
    background:#f3f3f3;
    border-radius:30px;
    margin-bottom:15px;
}

.story-text h2{
    font-size:30px;
    margin-bottom:25px;
    color:#111827;
}

.story-text p{
    font-size:17px;
    line-height:1.8;
    color:#333;
    margin-bottom:20px;
}
.story-image img{
    /* width:100%;
    border-radius:18px;
    display:block; */
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
    display:block;
}

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

    .about-banner{
        padding:80px 0;
    }

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

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

    .story-content{
        flex-direction:column;
    }

    .story-text h2{
        font-size:40px;
    }
}

@media(max-width:576px){

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

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

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

    .story-text p{
        font-size:16px;
    }
}
.about-cards{
    padding:80px 20px;
    background:#fff0c5;
}

.about-cards .container{
    /* max-width:1400px; */
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
  background: #881B1B;
  color: #fff;
  padding: 15px;
  border-radius: 15px;
  height: 460px;
  transition: .3s;
  text-align: center;
}

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

.icon{
    font-size:32px;
    margin-bottom:20px;
}

.card h3{
    font-size:20px;
    font-weight:600;
    /* margin-bottom:40px; */
    line-height:1.3;
}

.card p{
    font-size:14px;
    line-height:1.9;
    color:#f5f5f5;
}

/* Tablet */
@media(max-width:991px){
    .about-cards .container{
        grid-template-columns:1fr;
    }

    .card{
        min-height:auto;
    }
}

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

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

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

    .card p{
        font-size:17px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.about-highlights{
    max-width:1200px;
    margin:60px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.highlight-card{
    display:flex;
    min-height:280px;
    overflow:hidden;
}

.purple-card{
    background:#ffdc73;
}

.cyan-card{
    background:#D9D9D9;
}

.content{
    flex:1;
    padding:20px;
    color:#000;
}

.content h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

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

.content a{
   color: #bb0707;
    text-decoration:none;
    font-weight:700;
  
}

.image-box{
    flex:1;
}
/* 
.image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
} */

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

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

    .highlight-card{
        min-height:auto;
    }
}

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

    .highlight-card{
        flex-direction:column;
    }

    .content{
        padding:25px;
    }

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

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

    .image-box{
        height:250px;
    }
}
.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    
    color:#222;
    margin-bottom:15px;
}
.about-highlights-section{
padding: 80px 20px;
}
.section-heading p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:0 auto;
    line-height:1.7;
}

@media(max-width:768px){

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:16px;
    }
}
.contact-section{
    background: #fff0c5;
    padding: 80px 0px 50px 0px;
    margin-top: 80px;
}
/* TOP SECTION */

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    gap:60px;
    align-items:flex-start;
}

.contact-left{
    flex:1;
}

.contact-left h2{
    font-size:56px;
    margin-top: 20px;
    color:#111;
}

.contact-left > p{
   font-size: 19px;
   color: #000;
}


.contact-info{
    margin:50px 0 50px;
}

.contact-info p{
    margin-bottom:12px;
    color:#333;
}

.contact-info a{
    color:#000;
    font-weight:600;
}

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

.support-item h4{
    margin-bottom:10px;
     font-size:19px;
    font-weight: 600;
}

.support-item p{
    font-size: 18px;
  line-height: 1.7;
  color: #000;
}

/* FORM */

.contact-form-box{
    width:420px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form-box h3{
    font-size:42px;
    margin:auto;
}

.contact-form-box p{
    color:#777;
    margin-bottom:25px;
}
.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:14px;
    margin-bottom:15px;
    outline:none;
}

.phone-field{
    display:flex;
    align-items:center;
    border:1px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:15px;
}

.phone-field span{
    padding:0 15px;
    color:#444;
}

.phone-field input{
    border:none;
    margin:0;
}

textarea{
    resize:none;
    height:90px;
}

.contact-form-box button{
    width:100%;
    border:none;
    background:#881B1B;
    color:#fff;
    padding:15px;
    border-radius:30px;
    font-size:16px;
    cursor:pointer;
}

.testimonials-section {
  background: #faf7f0;
  padding: 150px 0;
}
.heading {
    text-align: center;
    margin-bottom: 70px;
}
.heading h2 {
    font-size: 56px;
    font-weight: 400;
    color: #111;
}

.heading h2 span {
    font-weight: 700;
}
.heading p {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}
.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}
/* Left Side */
.testimonials-left h3 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}
.slider-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
}
.line {
    width: 120px;
    height: 2px;
    background: #999;
}
.testimonials-card::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 40px;
    border-top: 20px solid #fff;
    border-left: 20px solid transparent;
}
.testimonials-card p {
    color: #222;
    line-height: 1.8;
    font-size: 19px;
}
.user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.user span {
    color: #888;
    font-size: 14px;
}
.slider-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}
.slider-nav span {
    width: 45px;
    height: 45px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}
.slider-nav span:hover {
    background: #000;
    color: #fff;
}

.line {
    width: 80px;
    height: 1px;
    background: #000;
}
.testimonials-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.testimonials-cards {
    overflow: hidden;
    width: 800px;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.testimonials-card {
    min-width: 250px;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    word-break: break-word;
}

.contacts-section {
    min-height: 100vh;
    /* background: #000; */
    color: #000;
    display: flex;
    align-items: center;
    padding: 80px 6%;
}
.container-contact
 {
   max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}
/* LEFT SIDE */
.contacts-left {
    width: 45%;
    position: relative;
}
.contacts-left h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.contacts-left p {
    max-width: 450px;
   color: #0f0e0e;
    line-height: 1.8;
    margin-bottom: 90px;
    font-size: 19px;
}
.contacts-info {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}
.contacts-info h4 {
    font-size: 14px;
    margin-bottom: 15px;
}

.contacts-info span {
    color: #b8b8b8;
}

/* RIGHT SIDE */
.contacts-right {
    width: 45%;
}

.input-box {
   margin-bottom: 25px;
}

.input-box label {
    display: block;
    font-size: 25px;
    margin-bottom: 20px;
}
.input-box input,
.input-box textarea {
    width: 100%;
    background: beige;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    color: #000;
    font-size: 20px;
    padding-bottom: 15px;
    outline: none;

}
.input-box textarea {
    resize: none;
    height: 80px;
}
.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #707070;
}
.send-btn {
    width: 150px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background: #881B1B;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    float: right;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.send-btn span {
    font-size: 28px;
}
.send-btn:disabled {
    background: #f7d774;   
    color: #000;        
    cursor: not-allowed;
    opacity: 0.7;
}
.intro{
    /* text-align:center; */
    margin-bottom:40px;
    font-size: 19px;
}

.intro p{
    margin-bottom:20px;
}

.section-privacy{
    background:#881B1B;
    color:#fff;
    padding:15px 20px;
    font-size:28px;
    font-weight:600;
    margin:40px 0 20px;
}

.content p{
    margin-bottom:18px;
}

.content ul,
.content ol{
    margin-left:30px;
}

.content li{
    margin-bottom:12px;
}


/* LOCATION SECTION */

.location-wrapper{
    margin-top:100px;
    display:flex;
    align-items:center;
    gap:60px;
}

.map-box{
    flex:1;
}

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

.location-content{
    flex:1;
}

.location-content span{
    color:#555;
}

.location-content h2{
    font-size:48px;
    margin:10px 0 30px;
    color:#111;
}

.location-content h4{
    margin-bottom:15px;
    color:#111;
}

.location-content p{
    color:#666;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper,
    .location-wrapper{
        flex-direction:column;
    }

    .contact-form-box{
        width:100%;
    }

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

    .contact-left h2,
    .location-content h2{
        font-size:38px;
    }
}


.container-map-box{
    /* width:90%;
    max-width:1200px; */
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.map-box{
    flex:1;
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
    border-radius:12px;
}

.location-content{
    flex:1;
}

.location-content h2{
    font-size:40px;
    margin-bottom:20px;
}

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

@media(max-width:768px){
   
    .map-box iframe{
        height:350px;
    }
}
.knowledge-section{
    max-width:1200px;
    margin:auto;
    padding:50px 20px 80px 20px;
    background:#fff;
}

.knowledge-header{
    margin-bottom:20px;
}

.title-content h2{
    font-size:48px;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
}

.title-content p{
    max-width:380px;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

.knowledge-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-top: 20px;
}

.large-card{
    grid-column:1 / 3;
    height:420px;
}

.knowledge-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.knowledge-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

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

.knowledge-card:not(.large-card){
    height:280px;
}

.card-content{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    z-index:2;
}

.card-content span{
    display:block;
    font-size:15px;
}

.card-content h3{
    font-size:28px;
    font-weight:600;
    margin-top:5px;
}

.knowledge-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,.1)
    );
}

@media(max-width:768px){

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

    .large-card{
        grid-column:auto;
        height:300px;
    }

    .knowledge-card:not(.large-card){
        height:250px;
    }

    .title-content h2{
        font-size:36px;
    }
}
.knowledge-wrapper{
    max-width:1400px;
    margin:auto;
    position:relative;
}

.knowledge-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    display:block;
    border-radius:25px;
}

.knowledge-text{
    position:absolute;
    top:0;
    left:0;
    width:320px;
    background:#fff;
    padding:25px;
    border-radius:0 0 25px 0;
    z-index:2;
}

.knowledge-text::after{
    content:"";
    position:absolute;
    right:-20px;
    bottom:0;
    width:20px;
    height:20px;
    background:#fff;
    border-radius:0 0 0 20px;
}

.knowledge-text h2{
    font-size:31px;
    line-height:1;
    margin-bottom:15px;
    color:#111;
    font-weight:700;
}

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

@media(max-width:768px){

    .knowledge-text{
        position:relative;
        width:100%;
        border-radius:20px;
        margin-bottom:20px;
    }

    .knowledge-text::after{
        display:none;
    }

    .knowledge-image img{
        height:300px;
    }

    .knowledge-text h2{
        font-size:40px;
    }
}
.faq-section{
    /* background:#000; */
    color:#000;
    padding-bottom:80px;
}

.faq-banner{
    position:relative;
    height:320px;
    border-radius:30px;
    overflow:hidden;
    margin:20px;
}

.faq-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.faq-banner::before{
    content:"";
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,.55); */
}

.faq-overlay{
    position:absolute;
    top:70%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:90%;
    z-index:2;
}

.faq-overlay h2{
    font-size:52px;
    margin-bottom:15px;
}

.faq-overlay p{
    font-size:16px;
    /* color:#ddd; */
    max-width:650px;
    margin:auto;
    line-height:1.6;
}

.faq-container{
    max-width:900px;
    margin:auto;
    padding: 10px 20px;
}

.faq-tabs{
    display:flex;
    justify-content:center;
    gap:12px;
    /* flex-wrap:wrap; */
    margin-bottom:40px;
}

.faq-tabs button{
    border:none;
   padding: 18px 14px;
    background:#881B1B;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
}

.faq-tabs button.active{
  background: #fde7e7;
    color:#000;
}

.faq-item{
    background:#fde7e7;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    color:#000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px;
    cursor:pointer;
    font-size:15px;
    text-align:left;
    font-weight: 500;
}

.faq-question span{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 22px 22px;
    color:#000;
    line-height:1.7;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* Responsive */

@media(max-width:768px){

    .faq-banner{
        height:300px;
    }

    .faq-overlay h2{
        font-size:34px;
    }

    .faq-overlay p{
        font-size:14px;
    }

    .faq-question{
        font-size:14px;
    }
}
.faq-content{
    display:none;
}

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

.faq-item{
    background:#fde7e7;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
}



.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s;
}

.faq-answer p{
    padding:0 20px 20px;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active span{
    transform:rotate(45deg);
}

.tab-btn.active{
    background:#fff;
    color:#000;
}
.support-section{
   padding: 40px 20px 80px 20px;
    background:#ffffff;
}

.support-container{
    max-width:900px;
    margin:auto;
    background:#fde7e7;
    border-radius:12px;
    padding:60px 30px;
    text-align:center;
}

.support-container h2{
    font-size:38px;
    color:#000;
    margin-bottom:15px;
    font-weight:700;
}

.support-container p{
    max-width:700px;
    margin:0 auto 40px;
    color:#000;
    line-height:1.7;
    font-size:15px;
}

.support-options{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.support-box{
    width:260px;
    height:60px;
    background:#fff;
    border-radius:8px;
    text-decoration:none;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.support-box:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.support-box i{
    font-size:20px;
}

.support-box span{
    font-size:15px;
    font-weight:500;
}

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

    .support-container{
        padding:40px 20px;
    }

    .support-container h2{
        font-size:28px;
    }

    .support-options{
        flex-direction:column;
        align-items:center;
    }

    .support-box{
        width:100%;
        max-width:320px;
    }
}
.story-section{
    padding:30px 20px;
    background:#f5f5f5;
}

.story-container{
    max-width:1200px;
    margin:auto;
    position:relative;
}

.story-image{
    width:75%;
    margin-left:auto;
}

.story-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
    display:block;
}



.story-label{
    display:inline-block; 
    padding:8px 18px;
    background:#f3f3f3;
    border-radius:30px;
    margin-bottom:15px;
}

.story-content h2{
    font-size:30px;
    margin-bottom:20px;
     text-align: center;
}

.story-content p{
    line-height:1.8;
    /* color:#555; */
    margin-bottom:15px;
    text-align: center;
}


/* Hide checkbox */
#expanded-vertical {
    display: none;
}
#expanded-vertical-1 {
    display: none;
}
#expanded-vertical-2 {
    display: none;
}
#expanded-vertical-3 {
    display: none;
}
/* Fixed height initially */
.value-card {
    /* width: 350px; */
    height: 300px;              /* Initial fixed height */
    padding: 25px;
   background: #881B1B;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: height 0.5s ease;
    color: #fff;
   
  text-align: center;
}

/* Hidden content */
.more-content {
    display: none;
}
/* Expand entire card */
#expanded-vertical:checked + .value-card {
    height: 420px;              /* Expanded height */
}
/* Show remaining content */
#expanded-vertical:checked + .value-card .more-content {
    display: block;
}
/* Expand entire card */
#expanded-vertical-1:checked + .value-card {
   height: 475px;             /* Expanded height */
}
/* Show remaining content */
#expanded-vertical-1:checked + .value-card .more-content {
    display: block;
}

#expanded-vertical-2:checked + .value-card {
   height: 475px;             /* Expanded height */
}
/* Show remaining content */
#expanded-vertical-2:checked + .value-card .more-content {
    display: block;
}
#expanded-vertical-3:checked + .value-card {
  height: 600px;         /* Expanded height */
}
/* Show remaining content */
#expanded-vertical-3:checked + .value-card .more-content {
    display: block;
}


/* Buttons */
.story-read {
    display: inline-block;
    margin-top: 15px;
    color: #cd9f15;
    font-weight: 600;
    cursor: pointer;
}

.read-less-vertical {
    display: none;
}
.read-less-vertical-1 {
    display: none;
}
.read-less-vertical-2 {
    display: none;
}
.read-less-vertical-3 {
    display: none;
}
#expanded-vertical:checked + .value-card .read-more-vertical {
    display: none;
}

#expanded-vertical:checked + .value-card .read-less-vertical {
    display: inline-block;
}
#expanded-vertical-1:checked + .value-card .read-more-vertical-1 {
    display: none;
}

#expanded-vertical-1:checked + .value-card .read-less-vertical-1 {
    display: inline-block;
}
#expanded-vertical-2:checked + .value-card .read-more-vertical-2 {
     display: none;
}

#expanded-vertical-2:checked + .value-card .read-less-vertical-2 {
 display: inline-block;
}
#expanded-vertical-3:checked + .value-card .read-more-vertical-3 {
     display: none;
}
#expanded-vertical-3:checked + .value-card .read-less-vertical-3 {
 display: inline-block;
}


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

    .story-image{
        width:100%;
    }

    .story-image img{
        height:350px;
    }

    .story-content{
        position:relative;
        width:100%;
        left:auto;
        top:auto;
        transform:none;
        margin-top:-50px;
        padding:25px;
    }

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

/* My account navigation */
.navbar .dropdown.account-dropdown ul.account-nav-submenu,
.account-menu-list{
    list-style:none;
    margin:0;
    padding:0;
}

.navbar .dropdown.account-dropdown ul.account-nav-submenu{
    min-width:220px;
    background:#881B1B;
    border-radius:0;
    padding:0;
    box-shadow:0 8px 24px rgba(0,0,0,.25);
}

.navbar .dropdown.account-dropdown ul.account-nav-submenu li{
    border-bottom:1px solid rgba(255,255,255,.18);
}

.navbar .dropdown.account-dropdown ul.account-nav-submenu li:last-child{
    border-bottom:none;
}

.navbar .dropdown.account-dropdown ul.account-nav-submenu a,
.navbar .dropdown.account-dropdown ul.account-nav-submenu button{
    display:block;
    width:100%;
    padding:12px 18px;
    color:#F3CF8D;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    background:transparent;
    border:none;
    text-align:left;
    cursor:pointer;
}

.navbar .dropdown.account-dropdown ul.account-nav-submenu a:hover,
.navbar .dropdown.account-dropdown ul.account-nav-submenu button:hover,
.navbar .dropdown.account-dropdown ul.account-nav-submenu li.active a{
    background:rgba(0,0,0,.12);
    color:#fff;
}

.navbar .dropdown.account-dropdown > a i.bi-person{
    margin-right:6px;
}

.header-account-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    color:#F3CF8D;
    font-size:24px;
    text-decoration:none;
}

.header-account-link:hover{
    color:#fff;
}

.account-page-container{
    max-width:1200px;
    margin:0 auto 70px;
    display:grid;
    grid-template-columns:280px 1fr;
    gap:24px;
}

.account-sidebar{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    height:max-content;
}

.account-sidebar h3{
    margin:0 0 16px;
}

.account-menu-list li{
    border-bottom:1px solid #eee;
}

.account-menu-list li:last-child{
    border-bottom:none;
}

.account-menu-list a,
.account-menu-list button{
    display:block;
    width:100%;
    padding:12px 8px;
    color:#333;
    text-decoration:none;
    background:transparent;
    border:none;
    text-align:left;
    cursor:pointer;
    font-size:15px;
}

.account-menu-list li.active a,
.account-menu-list a:hover,
.account-menu-list button:hover{
    color:#881B1B;
    font-weight:600;
}

.account-content{
    background:#fff;
    border-radius:12px;
    padding:24px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.account-content h2{
    margin-top:0;
}

.account-table-wrap{
    overflow-x:auto;
}

.account-table{
    width:100%;
    border-collapse:collapse;
}

.account-table th,
.account-table td{
    padding:12px 10px;
    border-bottom:1px solid #eee;
    text-align:left;
    font-size:14px;
}

.account-table th{
    font-weight:700;
    background:#fafafa;
}

.account-pagination{
    margin-top:16px;
}

.account-pagination .pagination{
    margin-bottom:0;
    gap:4px;
}

.account-pagination .page-link{
    min-width:36px;
    text-align:center;
    font-size:14px;
    line-height:1.2;
    padding:6px 10px;
    color:#881B1B;
    border-color:#e5e5e5;
}

.account-pagination .page-item.active .page-link{
    background:#881B1B;
    border-color:#881B1B;
    color:#fff;
}

.account-pagination .page-link:hover{
    color:#881B1B;
    background:#faf8ff;
}

.account-pagination .page-item.disabled .page-link{
    color:#999;
    font-size:14px;
}

@media (max-width: 991px){
    .account-page-container{
        grid-template-columns:1fr;
    }
}


@media (max-width: 768px) {

  .header {

    margin-top: 89px;

    padding: 5px;

  }

}
 
@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}
 

 @media screen and (max-width: 576px){    
.logo img{
   max-width: 100px !important;
  }}