:root {
  --primary-color: #3E79BC;
  --secondary-color: #e9c46a;
  --dark-color: #3E79BC;
  --light-color: #f8f9fa;
  --accent-color: #e76f51;
  --primary-light: #4CAF50;
  --primary-dark: #1B5E20;
  --secondary-color: #FF8F00;
  --accent-color: #81C784;
  --text-dark: #263238;
  --text-light: #607D8B;
  --bg-light: #F5F7F5;
  --bg-cream: #FAFDF7;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --border-radius: 16px;
  --transition: all 0.3s ease;
}

*{
    padding: 0;
    margin: 0;
}

body{
    font-family: "Inter", sans-serif;
}

h2, h3, h4, h5, h6{
    font-family: "Raleway", sans-serif;
    margin: 0;
}

p{
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

a{
    text-decoration: none;
    display: inline-block;
}

.header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    background-color: #FFFFFF;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
}

.header .navbar-brand{
    max-width: 60px;
}

.header.fixed{
    box-shadow: 0 2px 64px -34px rgba(0,0,0,0.50);
    -webkit-box-shadow: 0 2px 64px -34px rgba(0,0,0,0.50);
    -moz-box-shadow: 0 2px 64px -34px rgba(0,0,0,0.50);
}

.header .navbar-nav .nav-item:not(:first-child){
    margin-left: 20px;
}

.header .navbar-nav .nav-item .nav-link{
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 35px 24px;
}

section{
    padding: 90px 0;
}

.mt-top{
    margin-top: 100px;
}

.hero-section-wrapper{
    background-color: #3E79BC;
    height: 80vh;
}

.hero-section-wrapper .hero-caption h1{
    font-size: 65px;
    line-height: 84px;
    font-weight: 900;
    margin: 0;
    color: #FFFFFF;
}

.hero-caption p{
    color: #FFFFFF;
}

.banner-side-img{
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
}

.banner-side-img .img-fluid{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading h2{
    font-size: 58px;
    line-height: 80px;
    font-weight: 800;
    text-transform: uppercase;
}

.products-box{
    text-align: center;
}

.products-box figure{
    width: 100%;
    height: 330px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f7f7f5;
}

.products-box figure .img-fluid{
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.product_details{
    padding: 0 25px;
}

.product_details h4{
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.product_details h4 a{
  color: #000000;
}

.product_details p{
    font-size: 16px;
    line-height: 24px;
    color: #676767;
}

.testimonial-card {
    border-left: 5px solid var(--primary-color);
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.owl-carousel .testimonial-card .testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 15px 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Product Section */
.product-section {
    padding: 60px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    background: var(--white);
    padding: 5px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Product Info */
.product-info {
    padding-left: 30px;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.rating-text strong {
    color: var(--text-dark);
}

.price-container {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-original {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 15px;
}

.price-save {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 15px;
}

.subscription-option {
    margin-top: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--accent-color);
}

.subscription-option i {
    color: var(--primary-color);
}

/* Size Options */
.option-section {
    margin-bottom: 30px;
}

.option-label {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 12px 24px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.size-btn:hover {
    border-color: var(--primary-color);
}

.size-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.size-btn small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 3px;
}

.size-btn.active small {
    color: rgba(255,255,255,0.8);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    background: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.qty-input {
    width: 70px;
    height: 45px;
    text-align: center;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
}

.btn-wishlist {
    width: 60px;
    height: 60px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-light);
    font-size: 1.4rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    border-color: #E91E63;
    color: #E91E63;
    background: #FCE4EC;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.owl-theme .owl-nav [class*=owl-]{
  width: 40px;
  height: 40px;
  background: #FFFFFF !important;
  border: 1px #3E79BC solid !important;
  border-radius: 50%;
  padding: 0;
  color: #3E79BC;
  margin: 0;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.owl-theme .owl-nav [class*=owl-]:hover{
  color: #000000;
}

.owl-theme .owl-nav [class*=owl-next]{
  left: auto;
  right: 0;
}

.product-card-body p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 46px;
    line-height: 60px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 3.8rem;
    line-height: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    background: var(--white);
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 25px 30px;
    background: var(--white);
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232E7D32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Related Products */
.related-section {
    padding: 80px 0;
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    background: var(--bg-light);
    padding: 30px;
}

.product-card-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card-body {
    padding: 25px;
}

.product-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-card-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.product-card-rating {
    color: #FFC107;
    font-size: 0.85rem;
    margin-top: 10px;
}

.breadcrumb-section{
  background: #3E79BC;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 120px 0 30px;
}

.foot-logo a{
  width: 130px;
  text-align: center;
  padding: 20px;
  background-color: #FFFFFF;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #238277;
    border-color: #238277;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.breadcrumb {
    background-color: var(--light-color);
}

.contact-info-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.banner-section{
  background-color: #3E79BC;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: #FFFFFF;
}

/* Section Styles */
.section-title {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 15px;
    transform: translateY(0);
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-img.animated {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    transform: translateY(30px);
    transition: all 1s ease;
}

.about-text.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: #f0f7ff;
}

.mission-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.mission-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.team-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #f0f7ff;
}

.value-item {
    text-align: center;
    padding: 20px;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.value-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

 .address_block span{
    width: 90px;
    height: 90px;
    display: inline-block;
    background-color: #3E79BC;
    color: #FFFFFF;
    font-size: 30px;
    text-align: center;
    line-height: 90px;
    border-radius: 8px;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
}

.address_block:hover span{
    transform: scale(1.1);
}

.address_block p{
    color: #323232;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.address_block p a{
    color: #323232;
}

.map{
    width: 100%;
    height: 720px;
}

.contact_form {
    background: #3E79BC;
    padding: 50px 30px;
    border-radius: 8px;
}

.form-control:focus{
    outline: 0;
    box-shadow: none;
    border: 0;
}

.contact_form .btn.btn-primary{
    background: #FFFFFF;
    color: #3E79BC;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 25px;
}

.contact_form h4{
    font-size: 35px;
    line-height: 42px;
    color: #FFFFFF;
    font-weight: 700;
    margin: 0 0;
    padding: 0 0 40px;
}

.related-product-card figure {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-product-card figure .img-fluid{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

a{
    color: #000000;
}

@media screen and (max-width:991px) {

.header{
    padding: 14px 0;
}

.header .navbar-nav .nav-item:not(:first-child){
    margin-left: 0;
    margin-top: 15px;
}

.header .navbar-nav .nav-item .nav-link{
    padding: 25px 24px 14px;
}

.navbar-toggler:focus{
    box-shadow: none;
    outline: 0;
}

.hero-section-wrapper .hero-caption h1{
    font-size: 36px;
    line-height: 48px;
}

.hero-section-wrapper{
    height: 100%;
}

.banner-side-img {
    width: 370px;
    height: 370px;
}

.heading h2 {
    font-size: 36px;
    line-height: 46px;
}

section{
    padding: 60px 0;
}
    
}

@media screen and (max-width:767px) {

.section-title{
    font-size: 30px;
    line-height: 46px;
}


p{
    font-size: 15px;
    line-height: 30px;
}
    
}