* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree';
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

:root {
    --primary: #0B5345;
    --secondary: #87A96B;
    --accent: #F4F6F0;
    --text: #2C3E2D;
    --light: #ffffff;
    --gray: #f8f9fa;
    --border: #e9ecef;
    --dark-green: #08352b;
}

body {
    background-color: var(--gray);
    color: var(--text);
}


/* Top Navigation */
.top-nav {
    background-color: var(--dark-green);
    color: var(--light);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;          
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-right-color: #25b09b;
  animation: l15 1s infinite linear;
}
.loader::before,
.loader::after {    
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  animation: l15 2s infinite;
}
.loader::after {
  margin: 8px;
  animation-duration: 3s;
}
@keyframes l15{ 
  100%{transform: rotate(1turn)}
}
.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-nav-contact i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.top-nav-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-nav-social a {
    color: var(--light);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-nav-social a:hover {
    color: var(--secondary);
}

/* Main Navbar */
.navbar {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    min-height: 90px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

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

.logo h1 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: var(--secondary);
}
.logo img{
    width:62px;
    height:60px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links li.active a {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons div {
    margin-left:10px;
    cursor: pointer;
    color: var(--text);
    transition: color 0.3s;
}

.nav-icons div:hover {
    color: var(--primary);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--accent);
    border-radius: 25px;
    padding: 8px 15px;
    width: 200px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 5px;
}

.search-bar i {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--primary);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--light);
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1000; 
    top: 100%; 
    left: -10px;
}

.nav-icons .dropdown-content {
    right: 0;
    left: auto;
}

.dropdown-content a {
    color: var(--text);
    padding: 12px 16px;
    text-decoration: none;
    text-transform: capitalize;
    display: block;
    border-bottom: 1px solid var(--accent);
}

.dropdown-content a:hover {
    background-color: var(--accent);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--light);
    padding: 20px;
    overflow-y: scroll;
}

.mobile-menu.active {
    display: block;
    overflow-y: scroll;

}

.mobile-links {
    list-style: none;
}

.mobile-links li {
    margin: 15px 0;
}

.mobile-links a {
    color: var(--text);
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--accent);
}

.mobile-links li.active a {
    color: var(--primary);
    font-weight: 600;
}

.mobile-search {
    padding: 15px 0;
    border-bottom: 1px solid var(--accent);
}

.mobile-search .search-bar {
    display: flex;
    width: 100%;
}

.mobile-account {
    background: var(--accent);
    margin: 10px -20px -20px;
    padding: 10px 20px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(11, 83, 69, 0.9), rgba(11, 83, 69, 0.8)), url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    color: #87A96B !important;
    padding: 15px 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    justify-content: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color:#08352b;
    font-size: 1.2rem;
    padding: 0 10px;
    font-weight: 300;
}

.breadcrumb-item a {
    color: #28a745;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 600;
}

/* Hero Carousel */
.hero-carousel {
    margin-bottom: 50px;
}

.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}
.hero-img {
  max-height: 350px;
  width: 100%;
  object-fit: cover;
}


@media (min-width: 768px) {
    .hero-img {
        max-height: 400px;   
    }
}

@media (min-width: 1200px) {
    .hero-img {
        max-height: 500px;   /* large screens */
    }
}


.hero-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.692);
    z-index: 1;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #1ebe5d;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}
.top-names{
    color:var(--dark-green)
}
/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .top-names{
        display:none;
    }
}


.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--light);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #094238;
    transform: translateY(-2px);
    color: var(--light);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    flex: 1;
}

.btn-outline:hover {
    background-color: var(--accent);
}

.btn-add-cart {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-add-cart:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    
}

.btn-add-cart i {
    margin-right: 5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text);
    max-width: 600px;
    margin: 15px auto 0;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;

}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.current-price {
    margin-right: 8px;
}

.original-price {
    color: #6c757d;
    text-decoration: line-through;
}

.product-rating {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

/* Featured Product */
.featured-highlight {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--light);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
}

.featured-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-text {
    flex: 1;
    padding-right: 30px;
}

.featured-text .product-category {
    color: var(--accent);
    margin-bottom: 10px;
}

.featured-text .product-title {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 15px;
}

.featured-text .product-price {
    margin-bottom: 20px;
}

.featured-image {
    flex: 1;
    text-align: center;
}

.featured-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--accent);
    padding: 60px 0;
    margin-top: 50px;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #094238;
}

/* Footer */
.footer {
    background-color: var(--text);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--accent);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--light);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-size: 0.9rem;
}

/* Product Page */
.product-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.product-section {
    padding: 40px 0;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 20px 0px;
}

.product-images {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail.active {
    border-color: var(--primary);
}

.product-info h1 {
    color: var(--text);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quantity-selector label {
    margin-right: 15px;
    font-weight: 500;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    background-color: var(--accent);
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: var(--secondary);
    color: var(--light);
}

.quantity-value {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 10px;
    height: 40px;
}

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

.product-meta {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-label {
    font-weight: 600;
    min-width: 120px;
}

/* Product Tabs */
.product-tabs {
    margin: 40px 0;
}

.nav-tabs {
    border-bottom: 2px solid var(--accent);
}

.nav-tabs .nav-link {
    color: var(--text);
    font-weight: 500;
    border: none;
    padding: 12px 25px;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    border-bottom: 2px solid var(--primary);
}

.tab-content {
    padding: 30px;
    background-color: var(--light);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

.specs-table td {
    padding: 12px 0;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
}

.review-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: #6c757d;
}

/* Cart Styles */
.cart-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.cart-item {
    background: var(--light);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    display: block;
}

.cart-item-title:hover {
    color: var(--primary);
}

.cart-item-category {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.cart-item-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 20px;
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #c82333;
}

.cart-summary {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: none;
}

.btn-checkout {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background-color: #094238;
}

.continue-shopping {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s;
}

.continue-shopping:hover {
    color: #094238;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: var(--text);
    margin-bottom: 15px;
}

.empty-cart p {
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-shopping {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-shopping:hover {
    background-color: #094238;
    color: var(--light);
}

/* Shop Styles */
.shop-container {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-weight: 600;
    color: var(--text);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select, .view-select {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--light);
    color: var(--text);
    outline: none;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--light);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.view-btn:hover {
    border-color: var(--primary);
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

/* Filters */
.filters-sidebar {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-content.collapsed {
    max-height: 0;
}

.filter-options {
    list-style: none;
}

.filter-option {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.filter-option input {
    margin-right: 10px;
}

.filter-option label {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.option-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-range {
    margin-top: 15px;
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.price-input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

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

.btn-apply {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s;
}

.btn-apply:hover {
    background-color: #094238;
}

.btn-reset {
    background-color: var(--accent);
    color: var(--text);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-reset:hover {
    background-color: #e8e8e8;
}
/* 
.products-section {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
} */

.mobile-filter-toggle {
    display: none;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-weight: 500;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mobile-filter-toggle:hover {
    background-color: #094238;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 5px;
}

.page-item {
    margin: 0 2px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

.page-link:hover {
    background: var(--accent);
    border-color: var(--border);
}

.page-item.active .page-link {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background: var(--accent);
}

/* Form Range */
.form-range {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: var(--accent);
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
}
.name-lg{
    margin-bottom:-10px;
}
.site-desc{
    color:#07869c;
}
.name{
    margin-top:15px
}
/* Responsive Design */
@media screen and (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .filters-sidebar.active {
        left: 0;
    }

    .mobile-filter-toggle {
        display: flex;
    }

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

@media screen and (max-width: 768px) {
    .top-nav {
        display: none;
    }

    .nav-links, .search-bar{
        display: none;
    }
    .logo img{
    width:42px;
    height:40px;
}
    .menu-toggle {
        display: block;
    }

    .navbar {
        padding: 0 15px;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color:rgba(0, 0, 0, 0.911);
        
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        z-index: 100;
    }
    .mobile-menu a{
        color:white;
    }
     .mobile-menu li{
        color:#6e6e6e;
     }
    .mobile-menu a:hover{
        color:#1ebe5d;
    }

    .mobile-menu.active {
        display: block;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

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

    .featured-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
        padding: 12px;
    }

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

    .product-img {
        height: 160px;
    }

    .product-info {
        padding: 12px;
    }

    .product-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .current-price {
        font-size: 1rem;
    }

    .btn-add-cart {
        padding: 7px 10px;
        font-size: 0.85rem;
    }

    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-sort {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .sort-select, .view-select {
        width: 100%;
    }

    .action-buttons {
        flex-direction: column;
    }

    .product-info h1 {
        font-size: 1.8rem;
    }

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

    .cart-item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .cart-item-details {
        width: 100%;
        margin-bottom: 15px;
    }

    .cart-item-quantity {
        margin: 10px 0;
    }

    .cart-item-total {
        margin: 10px 0;
        text-align: left;
    }
       .content-section {
                padding: 25px;
            }
            
}

@media screen and (max-width: 576px) {
    .carousel-item {
        height: 350px;
    }

    .carousel-caption h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

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

@media screen and (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
    
    .nav-links, .search-bar, .nav-icons {
        display: flex !important;
    }
}

.products-grid::after {
    content: "";
    display: table;
    clear: both;
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    margin-left: 20px;
    color: var(--text);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s;
}

.search-icon:hover {
    color: var(--primary);
    background-color: var(--accent);
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-modal-content {
    background: var(--light);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.search-modal-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0;
}

.search-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-modal-close:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.search-modal-body {
    padding: 30px;
}

.search-modal-form {
    margin-bottom: 25px;
}

.search-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-modal-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}

.search-modal-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 83, 69, 0.1);
}

.search-modal-submit {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-modal-submit:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.search-suggestions p {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    background-color: var(--accent);
    color: var(--text);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.suggestion-tag:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

/* Mobile responsive for search modal */
@media screen and (max-width: 768px) {
    .search-modal.active {
        padding-top: 50px;
        align-items: center;
    }
    
    .search-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-modal-submit {
        justify-content: center;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
}

/* Remove the old search bar styles */
.search-bar {
    display: none;
}

.contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-info {
            padding-right: 20px;
        }

        .contact-methods {
            margin-top: 30px;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-details h3 {
            margin-bottom: 5px;
            color: var(--text);
        }

        .contact-details p {
            margin-bottom: 0;
            color: #6c757d;
        }

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

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(11, 83, 69, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #094238;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .faq-item {
            background: var(--accent);
            padding: 20px;
            border-radius: 8px;
        }

        .faq-question {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .store-locations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .location-card {
            background: var(--accent);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }

        .location-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                padding-right: 0;
            }
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .section {
            background: var(--light);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }


        /* Services Section Styles */
    .services-section {
        background: #fff;
    }

    .service-card {
        background: #f8f9fa;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e9ecef;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .service-icon {
        color: #007bff;
    }

    .category-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.category-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.7) 100%
    );
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(
        to bottom,
        #000000d2 0%,
        rgba(0,0,0,0.8) 100%
    );
    cursor: pointer;
}

.category-content {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.content-section {
            background: var(--light);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }

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

        .policy-section h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .policy-list {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .policy-list li {
            margin-bottom: 8px;
        }

        .update-info {
            background: var(--accent);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .contact-info {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }
.policy-section {
            margin-bottom: 30px;
        }

        .policy-section h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .policy-section p {
            margin-bottom: 15px;
        }

        .policy-list {
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .policy-list li {
            margin-bottom: 8px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .process-step {
            text-align: center;
            padding: 20px;
            background: var(--accent);
            border-radius: 8px;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: 700;
        }

        .exceptions-box {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 4px;
        }

        .contact-info {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 5px;
            padding: 12px 25px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #094238;
            color: var(--light);
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }


/* Container for all cart messages */
#cart-messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Individual toast messages */
.cart-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #333;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-width: 220px;
    font-family: sans-serif;
}

/* Show toast */
.cart-toast.toast-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Success toast */
.cart-toast.success {
    border-left: 4px solid #28a745;
}

/* Error toast */
.cart-toast.error {
    border-left: 4px solid #dc3545;
}

/* Toast icons */
.cart-toast i {
    font-size: 18px;
}

/* Toast text */
.cart-toast span {
    flex: 1;
}
.product-images {
    position: relative;
}

.main-image-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    margin-bottom: 15px;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.gallery-thumbnails {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.thumbnail-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-item {
    position: relative;
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: #0B5345;
}

.thumbnail-item:hover {
    border-color: #0B5345;
    transform: scale(1.05);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.featured-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0B5345;
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 3px;
}

.thumbnail-scroll::-webkit-scrollbar {
    height: 5px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    color: white;
}

.product-badge.sale {
    background: #dc3545;
}

.product-badge.new {
    background: #28a745;
}

.product-badge.best-seller {
    background: #ffc107;
    color: #000;
}

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

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-value {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.btn-primary {
    background: #0B5345;
    border: none;
    padding: 12px 24px;
}

.btn-outline {
    border: 1px solid #0B5345;
    color: #0B5345;
    background: transparent;
    padding: 12px 24px;
}

.product-meta {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.meta-item {
    display: flex;
    margin-bottom: 8px;
}

.meta-label {
    font-weight: bold;
    min-width: 100px;
}

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

.specs-table td {
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td:first-child {
    font-weight: bold;
    width: 30%;
}

.review-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.review-header {
    display: flex;
    justify-content: between;
    margin-bottom: 5px;
}

.review-author {
    font-weight: bold;
}

.review-date {
    color: #666;
    margin-left: auto;
}

/* .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
} */

.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-img {
    position: relative;
    height: 200px;
    margin-bottom: 15px;
}

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

.btn-add-cart {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-size: 0.9rem;
    cursor: pointer;
    /* Hide by default */
    opacity: 0;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    overflow: hidden;
}

.product-card:hover .btn-add-cart {
    /* Show on hover with smooth animation */
    opacity: 1;
    height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-top: auto;
}

.btn-add-cart:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-add-cart i {
    margin-right: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}


.ck-content {
    line-height: 1.6;
}

.ck-content p {
    margin-bottom: 1em;
}


        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .mission-card, .vision-card {
            background: var(--accent);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
        }

        .mission-card i, .vision-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .value-card {
            text-align: center;
            padding: 20px;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .team-member {
            text-align: center;
        }

        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 5px solid var(--accent);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 20px;
            background: var(--accent);
            border-radius: 8px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .btn-primary {
            background-color: var(--primary);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            color: var(--light);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: #094238;
            transform: translateY(-2px);
            color: var(--light);
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .section {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }
  .share-section {
        margin-top: 20px;
    }

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

    .share-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-weight: 500;
        transition: all 0.25s ease;
        color: #fff;
    }

    .share-btn.facebook {
        background-color: #1877f2;
    }

    .share-btn.facebook:hover {
        background-color: #0f5dc4;
    }

    .share-btn.email {
        background-color: #6c757d;
    }

    .share-btn.email:hover {
        background-color: #565e64;
    }

    .share-btn.copy {
        background-color: #198754;
    }

    .share-btn.copy:hover {
        background-color: #146c43;
    }

    .copy-success {
        display: none;
        margin-top: 10px;
        font-size: 13px;
        color: #198754;
    }