:root {
    --primary-color: #0854cc;
    --primary-green: #0854cc;
    --dark-green: #01388f;
    --light-green: #1d63d1;
    --accent-red: #e74c3c;
    --accent-yellow: #f39c12;
    --dark-bg: #1a1a2e;
    --footer-dark: #0f0f1a;
    --light-gray: #f8f9fa;
    --text-color: #333;
    --border-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
}

/* ==================== HEADER STYLES ==================== */

/* Top Bar - Mobile Only */
.top-bar-mobile {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    color: white;
    border-bottom: 2px solid var(--accent-yellow);
    padding: 6px 0;
    font-size: 12px;
}

.top-bar-mobile .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-mobile .contact-item i {
    color: var(--accent-yellow);
}

.top-bar-mobile .mpesa-tiny {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 15px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
}

/* Desktop Search and Contact */
.desktop-center {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}

.desktop-search {
    flex: 1;
    max-width: 450px;
}

.search-box {
    position: relative;
}

.search-box input {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 45px 10px 18px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-box input:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--primary-green);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--accent-yellow);
    transform: translateY(-50%) scale(1.05);
}

.desktop-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(45, 122, 62, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(45, 122, 62, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(45, 122, 62, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--accent-yellow);
    font-size: 14px;
}

.contact-item strong {
    color: var(--dark-bg);
    font-size: 14px;
    font-weight: 600;
}

.mpesa-badge {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.mpesa-badge strong {
    color: white;
    font-size: 13px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    background: white;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 16px;
}

.icon-btn:hover {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.3);
}

.icon-btn.cart-btn {
    background: white;
    border-color: #e9ecef;
    color: var(--dark-bg);
}

.icon-btn.cart-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mobile-search-overlay.active {
    transform: translateY(0);
}

.mobile-search-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-search-box {
    flex: 1;
    position: relative;
}

.mobile-search-box input {
    width: 100%;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    font-size: 16px;
    outline: none;
}

.mobile-search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--primary-green);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search-box button:hover {
    background: var(--accent-yellow);
    transform: translateY(-50%) scale(1.05);
}

.mobile-search-wrapper .close-search {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--accent-red);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-search-wrapper .close-search:hover {
    background: #c0392b;
    transform: rotate(90deg);
}

/* Desktop Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 15px 10px !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
}

/* Cart in Nav - Subtle */
.nav-cart-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px;
    padding: 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    color: white;
}

.nav-cart-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

.nav-cart-btn::after {
    display: none !important;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 250px;
}

.dropdown-item {
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #333;
}

.dropdown-item:hover {
    background: var(--primary-green);
    color: white;
    padding-left: 30px;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    color: var(--accent-yellow);
}

.dropdown-item:hover i {
    color: white;
}

/* Mobile Offcanvas - Light Background */
.offcanvas {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    overflow-y: auto !important;
}

.offcanvas-header {
    border-bottom: 2px solid var(--accent-yellow);
    padding: 20px;
    background: white;
}

.offcanvas-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-bg);
}

.btn-close {
    filter: none;
}

.offcanvas-body {
    padding: 10px;
}

.mobile-nav .nav-link {
    color: #333 !important;
    padding: 8px 15px !important;
    border-radius: 8px;
    margin-bottom: 5px !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav .nav-link:hover {
    background: var(--primary-green);
    color: white !important;
    padding-left: 25px;
}

.mobile-nav .nav-link i {
    margin-right: 10px;
    color: var(--primary-green);
    width: 20px;
}

.mobile-nav .nav-link:hover i {
    color: var(--accent-yellow);
}

.mobile-nav div {
    background: #fefefe;
}

.mobile-nav div .nav-link {
    padding: 5px 10px !important;
    margin-bottom: 0 !important;
}

.mobile-nav div .nav-link i {
    margin-bottom: 0 !important;
    margin-right: 5px;
    width: 15px;
}

.mobile-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact .contact-item {
    background: white;
    border: 1px solid #dee2e6;
    margin-bottom: 10px;
}

.mobile-contact .contact-item i {
    color: var(--accent-yellow);
}

.mobile-cart-btn {
    background: var(--accent-red);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    display: block;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 991px) {
    .desktop-center,
    .desktop-contact,
    .desktop-nav {
        display: none !important;
    }

    .logo img {

    }

    .header-wrapper {
        padding: 10px 0;
    }

    .logo img {
        height: 40px;
    }
}

@media (min-width: 992px) {
    .top-bar-mobile,
    .mobile-search-toggle,
    .mobile-menu-toggle {
        display: none !important;
    }

    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Overlay backdrop */
.search-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-backdrop.active {
    opacity: 1;
    visibility: visible;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    animation: slideDown 0.3s ease;
}



/* ==================== SUBSCRIPTION BANNER ==================== */
.subscription-banner {
    padding: 10px 20px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.banner-text {
    font-size: 14px;
    font-weight: 500;
}

.banner-text strong {
    font-weight: 700;
}

.banner-cta {
    padding: 6px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Desktop Styling - Neutral Background */
@media (min-width: 992px) {
    .subscription-banner {
        background: var(--light-bg);
        border-bottom: 1px solid #e9ecef;
    }

    .banner-text {
        color: var(--text-dark);
    }

    .banner-text strong {
        color: var(--primary-green);
    }

    .banner-cta {
        background: var(--primary-green);
        color: white;
    }

    .banner-cta:hover {
        background: var(--dark-green);
        transform: translateY(-1px);
    }
}

@media (max-width: 991px) {
    .subscription-banner {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    }

    .banner-text {
        color: white;
        text-align: center;
    }

    .banner-text strong {
        color: var(--accent-yellow);
    }

    .banner-cta {
        background: var(--accent-yellow);
        color: white;
    }

    .banner-cta:hover {
        background: white;
        color: var(--primary-green);
    }

    .banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .banner-text {
        font-size: 13px;
    }

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

/* ==================== CATEGORIES SECTION ==================== */

.categories-section {
    padding: 50px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.section-header p {
    color: #6c757d;
    font-size: 14px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: #212529;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  height: 100%;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
  background-color: #e7f1ff;
  color: var(--primary-color);
}

.category-card:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

.category-card i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.category-card:hover i {
  transform: scale(1.15);
}

.cat-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 970px) {
  .category-card {
    background: white;
    border-radius: 10px;
    padding: 15px 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.category-card i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}
.cat-name {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
}


/* ==================== Home PRODUCTS SECTION ==================== */

.product-sections {
    padding: 10px 0 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.products-header h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-bg);
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.products-header p {
    color: #6c757d;
    font-size: 15px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 2px solid var(--primary-green);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--light-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card:hover::before {
    opacity: 1;
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.product-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.product-icon .fa-file-pdf {
    color: #e53935; /* red */
}

.product-icon .fa-file-word {
    color: #2b579a; /* Word blue */
}

.product-icon .fa-file-excel {
    color: #217346; /* Excel green */
}

.product-icon .fa-file-powerpoint {
    color: #d24726; /* PowerPoint orange */
}

.product-icon .fa-folder {
    color: #f4b400; /* folder yellow */
}

.product-icon .fa-file {
    color: #6c757d; /* default gray */
}

.product-card:hover .product-icon {
    transform: scale(1.05) rotate(3deg);
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
    line-height: 1.35;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    flex: 1;
}

.product-title:hover {
    color: var(--primary-green);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(45, 122, 62, 0.08);
    border-radius: 15px;
    font-size: 11px;
    color: var(--primary-green);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 122, 62, 0.15);
}

.product-tag:hover {
    background: rgba(45, 122, 62, 0.15);
    transform: translateY(-1px);
}

.product-tag i {
    font-size: 10px;
}

.product-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed #e9ecef;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.product-price span {
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-buy-now {
    flex: 1;
    padding: 7px 10px;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: #111;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-buy-now:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(45, 122, 62, 0.25);
}

.btn-add-cart {
    flex: 1;
    padding: 7px 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(45, 122, 62, 0.35);
}

.btn-add-cart:active {
    transform: translateY(0);
}

/* Product card variations */
.product-card:nth-child(2n) .product-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, #c0392b 100%);
}

.product-card:nth-child(3n) .product-icon {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #f1c40f 100%);
}

.product-card:nth-child(4n) .product-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.product-card:nth-child(5n) .product-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.product-card:nth-child(6n) .product-icon {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.view-more-btn {
    padding: 7px 10px;
    border: none;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: 150px;
    text-align: center;
    margin: auto;
}

.view-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(45, 122, 62, 0.35);
}

/* ==================== CATEGORY PRODUCTS SECTION ==================== */

.category-products-section {
    padding: 30px 0 60px;
    background: white;
}

.category-page-header {
    margin-bottom: 40px;
}

.category-page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.category-page-header .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 14px;
}

.category-page-header .breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-page-header .breadcrumb a:hover {
    color: var(--primary-green);
}

.category-page-header .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: #6c757d;
    padding: 0 10px;
}

.view-products {
    display: none;
}

/* Sidebar Styles */
.category-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-link:hover {
    background: rgba(45, 122, 62, 0.08);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateX(5px);
}

.sidebar-link.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.sidebar-link-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-link.active .sidebar-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.sidebar-count {
    background: rgba(45, 122, 62, 0.15);
    color: var(--primary-green);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.sidebar-link.active .sidebar-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

.sidebar-link .chevron {
    color: #6c757d;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sidebar-link:hover .chevron {
    transform: translateX(3px);
    color: var(--primary-green);
}

/* Products Grid */
.products-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.products-count {
    color: #6c757d;
    font-size: 14px;
}

.products-count strong {
    color: var(--dark-bg);
    font-weight: 600;
}

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

.products-sort label {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.products-sort select {
    padding: 8px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-sort select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Pagination */
.category-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
}

.pagination-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    transform: none;
}

/* Mobile Order */
@media (max-width: 991px) {
    /*.category-sidebar {
        order: 2;
        margin-top: 30px;
    }

    .products-main {
        order: 1;
    }*/

    .category-page-header h1 {
        font-size: 26px;
    }

    .products-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
@media (max-width: 760px) {
    .view-products {
        display: block;
        margin-top: 20px;
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .category-sidebar {
        order: 1;
    }

    .products-main {
        order: 2;
    }
}

.ec-no-results {
    padding: 80px 20px;
    background: white;
    border-radius: 30px;
    /*border: 2px dashed #e2e8f0;*/
    margin: 20px 0;
}

/* Creative Illustration */
.ec-illustration-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-search-glass {
    font-size: 3rem;
    color: #cbd5e1;
    animation: ec-bounce 3s infinite ease-in-out;
}

.ec-floating-dots span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #1d63d1;
    border-radius: 50%;
    opacity: 0.6;
}

.ec-floating-dots span:nth-child(1) { top: 20%; right: 10%; animation: ec-float 4s infinite; }
.ec-floating-dots span:nth-child(2) { bottom: 20%; left: 5%; background: #027C45; animation: ec-float 5s infinite; }
.ec-floating-dots span:nth-child(3) { top: 40%; left: -10%; animation: ec-float 3s infinite; }

/* Animations */
@keyframes ec-bounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes ec-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

/* ==================== PRODUCT DETAIL PAGE SECTION ==================== */

.product-detail-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.product-breadcrumb {
    margin-bottom: 30px;
}

.product-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 14px;
}

.product-breadcrumb .breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb .breadcrumb a:hover {
    color: var(--primary-green);
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: #6c757d;
    padding: 0 10px;
}

.product-main-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.product-detail-description {
    margin-bottom: 30px;
}

.product-detail-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.product-detail-description p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-payment-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
}

.payment-header {
    margin-bottom: 25px;
}

.product-payment-box .product-detail-title {
    display: none;
}

.payment-header p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.payment-header strong {
    color: var(--dark-bg);
}

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

.payment-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.payment-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.payment-buttons{
    margin-top: 25px;
    position: relative;
    display: block;
    width: 100% !important;
}
.payment-form, .alert-div {
    position: relative;
    float: left;
    width: 100%;
}

.btn-pay-now {
    flex: 1;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pay-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(45, 122, 62, 0.35);
}

.btn-add-cart-continue {
    flex: 1;
    padding: 8px 12px;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart-continue:hover {
    background: rgba(45, 122, 62, 0.05);
    transform: translateY(-1px);
}

.btn-pay-now,
.btn-add-cart-continue {
    position: relative !important;
    float: left !important;
    margin-right: 20px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .product-detail-section {
        padding: 40px 0;
    }

    .product-main-content {
        padding: 25px;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .product-detail-price {
        font-size: 24px;
    }
}

@media (max-width: 760px) {
    .product-payment-box .product-detail-title {
        display: block;
    }

    .product-main-content .product-detail-title,
    .product-main-content .product-detail-price {
        display: none;
    }
}

/* ==================== CART/CHECKOUT SECTION ==================== */

.cart-section {
    padding: 40px 0 60px;
    background: white;
}

.cart-breadcrumb {
    margin-bottom: 15px;
}

.cart-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 14px;
}

.cart-breadcrumb .breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-breadcrumb .breadcrumb a:hover {
    color: var(--primary-green);
}

.cart-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: #6c757d;
    padding: 0 10px;
}

.cart-page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.cart-main-content {
    background: white;
}

.cart-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.cart-table thead {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
}

.cart-table thead th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.cart-table tbody tr:hover {
    background: rgba(45, 122, 62, 0.03);
}

.cart-table tbody tr:last-child {
    border-bottom: none;
    max-width: 50px;
}

.cart-table tbody td {
    padding: 15px 5px;
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 13px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 16px;
}

.btn-remove-item {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--accent-red);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.btn-remove-item:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.cart-total-row {
    background: #f8f9fa;
    font-weight: 700;
}

.cart-total-row td {
    padding: 5px 10px;
    text-align: right;
    font-size: 15px;
    color: var(--dark-bg);
}

.cart-total-row .cart-item-price {
    font-size: 18px;
    color: var(--primary-green);
}

.cart-checkout-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.checkout-header {
    margin-bottom: 25px;
}

.checkout-header p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.checkout-header strong {
    color: var(--dark-bg);
    font-size: 16px;
}

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

.checkout-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    font-size: 14px;
}

.checkout-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.btn-place-order {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 122, 62, 0.4);
}

.cart-summary {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #dee2e6;
}

.cart-summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-summary-label {
    color: #6c757d;
    font-size: 14px;
}

.cart-summary-value {
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 14px;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-green);
}

.cart-summary-total .cart-summary-label {
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 16px;
}

.cart-summary-total .cart-summary-value {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 20px;
}

@media (max-width: 991px) {
    .cart-table {
        font-size: 14px;
    }

    .cart-table thead th,
    .cart-table tbody td {
        padding: 12px;
    }

    .cart-item-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


.empty-cart {
    background: white; border-radius: 18px; border: 1px solid #edf2f7;
    padding: 20px; transition: 0.3s; height: 100%; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}




/* ==================== MOBILE CART TRAY STYLES ==================== */

.mobile-cart-tray {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    /* Padding ensures content doesn't touch screen edges */
    padding: 15px 20px; 
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);

    /* Animation Setup */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

/* Active State - Visible */
.mobile-cart-tray.active {
    transform: translateY(0);
}

.cart-tray-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px; /* Space between info and button */
}

/* Left Side: Icon & Count */
.cart-tray-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1; /* Takes available space */
    min-width: 0; /* Prevents flex item overflow */
}

.cart-tray-icon-box {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.cart-tray-text {
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensures text doesn't break layout */
}

.cart-tray-count {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.cart-tray-label {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Side: Button */
.cart-tray-action {
    flex-shrink: 0; /* Prevents button from shrinking */
}

.cart-tray-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: white;
    color: var(--primary-green);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cart-tray-btn:hover {
    background-color: var(--accent-yellow);
    color: white;
    transform: translateY(-2px);
}

.cart-tray-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.cart-tray-btn:hover i {
    transform: translateX(4px);
}

/* Mobile Only Visibility */
@media (min-width: 992px) {
    .mobile-cart-tray {
        /*display: none !important;*/
        width: 40%;
        left: 30%;
    }
}

/* Extra Small Mobile Adjustment */
@media (max-width: 350px) {
    .cart-tray-btn span {
        display: none;
    }
    .cart-tray-btn {
        padding: 10px 15px;
    }
    .cart-tray-btn i {
        font-size: 16px;
        margin: 0;
    }
}





/* ============== ABOUT US STYLES ================= */
.about-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 900px;
    margin: -40px auto 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 60px;
    position: relative;
    z-index: 2;
}

.about-container h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.about-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 25px 0 15px;
}

.about-container p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 16px;
}

.about-container ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-container ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.about-container ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 14px;
}

@media (max-width: 991px) {
    .about-container {
        padding: 20px;
    }
}




/* ==================== CONTACT PAGE STYLES ==================== */

.contact-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content-wrapper {
    max-width: 1000px;
    margin: -60px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Contact Section */
.contact-main-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.contact-form-area {
    flex: 1.5;
    min-width: 300px;
    padding: 50px;
}

.contact-info-side {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

/* Decorative circles for the side panel */
.contact-info-side::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.contact-info-side::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.side-panel-content {
    position: relative;
    z-index: 1;
}

.side-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    display: inline-block;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-list-item i {
    font-size: 20px;
    color: var(--accent-yellow);
    margin-top: 5px;
    width: 25px;
    text-align: center;
}

.info-list-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.info-list-content p, .info-list-content a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.info-list-content a:hover {
    color: white;
    text-decoration: underline;
}

.social-links-side {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icon-side {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon-side:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form-area .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form-area .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form-area .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
}

.contact-form-area .form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
}

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

.contact-form-area .btn-submit {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-form-area .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 122, 62, 0.4);
}

@media (max-width: 991px) {
    .contact-form-area, .contact-info-side {
        padding: 30px;
        flex: 100%;
        width: 100%;
    }
    .contact-title { font-size: 36px; }
}

@media (max-width: 576px) {
    .contact-hero { padding: 80px 0 60px; }
    .contact-form-area { padding: 25px; }
    .section-title { font-size: 28px; }
}




/* ==================== SUBSCRIPTION PAGE STYLES ==================== */
/*.subscription-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}*/

.signup-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 90px 0 100px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signup-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.signup-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 122, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.signup-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.signup-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Pricing Cards */
.pricing-section {
    margin: -60px auto 50px;
    max-width: 1100px;
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.selected {
    border-color: var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.2);
}

.pricing-card.selected::before {
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-red) 100%);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.pricing-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(45, 122, 62, 0.3);
}

.pricing-card:nth-child(2) .pricing-icon {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #f1c40f 100%);
}

.pricing-card:nth-child(3) .pricing-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, #c0392b 100%);
}

.pricing-card.selected .pricing-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 122, 62, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(45, 122, 62, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 122, 62, 0);
    }
}

.pricing-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.pricing-card:nth-child(2) .pricing-price {
    color: var(--accent-yellow);
}

.pricing-card:nth-child(3) .pricing-price {
    color: var(--accent-red);
}

.pricing-period {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px dashed #e9ecef;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--primary-green);
    font-size: 16px;
}

.pricing-card.selected .pricing-features li i {
    color: var(--accent-yellow);
}

.savings-badge {
    background: linear-gradient(135deg, var(--accent-red) 0%, #c0392b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

/* Signup Form */
.signup-section {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: -60px auto 50px;
}

.signup-header {
    text-align: center;
    margin-bottom: 40px;
}

.signup-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.signup-header p {
    color: #6c757d;
    font-size: 16px;
}

.selected-plan-display {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
    border: 2px dashed var(--primary-green);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 35px;
    text-align: center;
}

.selected-plan-display h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.selected-plan-display .price {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

#signupForm .form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    font-size: 14px;
}

#signupForm .form-group label i {
    color: var(--accent-yellow);
    margin-right: 5px;
}

#signupForm .form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

#signupForm .form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
}

.password-strength {
    margin-top: 8px;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-red);
    transition: all 0.3s ease;
}

.password-strength-bar.weak {
    width: 33%;
    background: var(--accent-red);
}

.password-strength-bar.medium {
    width: 66%;
    background: var(--accent-yellow);
}

.password-strength-bar.strong {
    width: 100%;
    background: var(--primary-green);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-green);
}

.terms-checkbox label {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

.terms-checkbox label a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.terms-checkbox label a:hover {
    text-decoration: underline;
}

.btn-subscribe {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 122, 62, 0.4);
}

.btn-subscribe:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.secure-badge {
    text-align: center;
    margin-top: 25px;
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-badge i {
    color: var(--primary-green);
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 0 10px;
    }
    .pricing-cards-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.selected {
        transform: scale(1);
    }

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

    .signup-section {
        padding: 30px;
    }
}

@media (max-width: 576px) {            
    .page-header h1 {
        font-size: 32px;
    }

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

    .pricing-price {
        font-size: 30px;
    }
}




/* ==================== BLOG PAGE STYLES ==================== */

.blog-page {
    background: #f8f9fa;
    min-height: 70vh;
}
.blog-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.blog-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

.blog-container {
    margin: -40px auto 40px;
    background: #f8f9fa;
    border-radius: 20px;
    padding-top: 15px;
    position: relative;
    z-index: 2;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog-post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 12px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.blog-post-title:hover {
    color: var(--primary-green);
}

.blog-post-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px dashed #e9ecef;
    margin-bottom: 15px;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-post-author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.blog-post-author-name {
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 13px;
}

.blog-post-date {
    color: #6c757d;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-post-read-time {
    color: #6c757d;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-read-more {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.3);
    color: white;
}


/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
    text-decoration: none;
}

.pagination-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    transform: none;
}

@media (max-width: 991px) {
    .blog-page-title {
        font-size: 28px;
    }

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

    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .blog-page {
        padding: 40px 0;
    }

    .blog-page-title {
        font-size: 24px;
    }

    .blog-post-card {
        border-radius: 12px;
    }

    .blog-post-content {
        padding: 20px;
    }
}



/* =============BLOG POST STYLES =============== */
.blog-post-page {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 70vh;
}

.blog-post-featured-image {
    width: 100%;
    border-radius: 0 !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post-title-main {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 25px;
    line-height: 1.3;
    padding: 20px 40px 0 40px;
}

.blog-post-meta-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 40px;
    border-bottom: 2px dashed #e9ecef;
    margin-bottom: 25px;
}

.blog-post-author-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-post-author-img-main {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-post-author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 3px;
}

.blog-post-author-info span {
    color: #6c757d;
    font-size: 13px;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.blog-post-meta-item i {
    color: var(--accent-yellow);
}

/* Blog Post Content */
.blog-post-content-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.blog-post-page .blog-post-content {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    padding: 0 40px;
}

.blog-post-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 40px 0 20px;
    padding-bottom: 10px;
}

.blog-post-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 30px 0 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

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

.blog-post-content blockquote {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-left: 5px solid var(--primary-green);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--dark-bg);
    font-size: 18px;
}

.blog-post-content img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-post-content strong {
    color: var(--dark-bg);
    font-weight: 600;
}

/* Share Buttons */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 40px;
}

.blog-post-share-title {
    font-weight: 600;
    color: var(--dark-bg);
    font-size: 15px;
}

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

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.share-btn.twitter {
    background: #000;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Author Bio */
.author-bio-section {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05) 0%, rgba(243, 156, 18, 0.05) 100%);
    border-radius: 15px;
    padding: 35px;
    margin: 40px 0;
    border: 2px solid rgba(45, 122, 62, 0.1);
}

.author-bio-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-bio-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 32px;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-bio-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.author-bio-info p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-social-links {
    display: flex;
    gap: 10px;
}

.author-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
}

.author-social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-yellow);
    display: inline-block;
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list li:last-child {
    margin-bottom: 0;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

.category-count {
    background: rgba(45, 122, 62, 0.15);
    color: var(--primary-green);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-link:hover .category-count {
    background: rgba(255,255,255,0.25);
    color: white;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e9ecef;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-info h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h4 a:hover {
    color: var(--primary-green);
}

.recent-post-date {
    color: #6c757d;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 991px) {
    .blog-post-meta-main {
        padding: 20px;
    }
    .blog-post-title-main {
        font-size: 32px;
        padding: 20px;
    }

    .blog-post-page .blog-post-content {
        padding: 20px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .author-bio-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .blog-post-page {
        padding: 15px 0;
    }

    .blog-post-title-main {
        font-size: 26px;
    }

    .blog-post-meta-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .blog-post-content h2 {
        font-size: 22px;
    }

    .blog-post-content h3 {
        font-size: 18px;
    }
}





/* ============== PRIVACY & TERMS STYLES ================= */
.policy-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
}

.policy-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.policy-meta {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

.policy-meta i { margin-right: 8px; color: var(--accent-yellow); }

.policy-container {
    max-width: 900px;
    margin: -40px auto 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 60px;
    position: relative;
    z-index: 2;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

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

.section-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 122, 62, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.policy-section h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-bg);
    margin: 25px 0 15px;
}

.policy-section p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 16px;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.policy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 14px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(243, 156, 18, 0.05));
    border-left: 4px solid var(--primary-green);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin: 25px 0;
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-bg);
}

.contact-info-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.contact-info-box h3 {
    margin-top: 0;
    color: var(--primary-green);
}

@media (max-width: 991px) {
    .policy-container {
        padding: 20px;
    }
}



/* ==================== LOGIN STYLES ==================== */
.login-page {
    padding: 4rem 0;
    margin: auto;
}
.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 950px;
    width: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.login-branding {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.brand-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.brand-logo i {
    font-size: 60px;
    color: var(--primary-green);
}

.brand-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.brand-title .elimu {
    color: white;
}

.brand-title .centre {
    color: #FF3030;
}

.brand-tagline {
    font-size: 16px;
    text-align: center;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.login-form-section {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.login-header p {
    color: #6c757d;
    font-size: 15px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 18px;
    transition: all 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 15px 18px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.1);
}

.form-control:focus + i {
    color: var(--primary-green);
}

.password-toggle {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary-green);
}

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

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

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.remember-me label {
    color: #6c757d;
    cursor: pointer;
    margin: 0;
}

.forgot-password {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 122, 62, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.signup-link {
    text-align: center;
    color: #6c757d;
    font-size: 15px;
}

.signup-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.signup-link a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}


.back-to-login {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.back-to-login a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-to-login a:hover {
    color: var(--dark-green);
    transform: translateX(-5px);
}

.help-tip {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 25px;
    border-left: 3px solid var(--accent-yellow);
}

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

    .login-branding {
        padding: 40px;
        display: none;
    }

    .login-form-section {
        padding: 40px;
    }

    .login-header {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .login-page {
        padding: 1rem 0;
        margin: 10px;
    }
    .login-form-section {
        padding: 30px 20px;
    }

    .login-header h2 {
        font-size: 26px;
    }
}


/* ==================== THANK YOU CONTENT STYLES ==================== */
.thank-you-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d44 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.thank-you-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

.thank-you-content-wrapper {
    max-width: 800px;
    margin: -50px auto 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.success-animation {
    width: 100px;
    height: 100px;
    background: rgba(45, 122, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-green);
    font-size: 50px;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.thank-you-content-wrapper p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.benefits-list {
    text-align: left;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid var(--accent-yellow);
}

.benefits-list h4 {
    color: var(--dark-bg);
    margin-bottom: 20px;
    font-size: 18px;
}

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

.benefits-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefits-list li i {
    color: var(--primary-green);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .thank-you-content-wrapper {
        padding: 40px 25px;
        margin-top: -30px;
    }
    .thank-you-title { font-size: 32px; }
}




/* ==================== FOOTER STYLES ==================== */

.site-footer {
    background: linear-gradient(135deg, white 0%, #eee 100%);
    padding-top: 60px;
    color: #333;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-yellow), var(--accent-red));
}

.footer-content {
    position: relative;
    z-index: 1;
}

/* Footer Top Section */
.footer-top {
    padding-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-about h3 .elimu {
    color: var(--primary-green);
}

.footer-about h3 .centre {
    color: var(--accent-red);
}

.footer-about p {
    color: #333
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Footer Links */
.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

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

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

.footer-links ul li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--accent-yellow);
    padding-left: 8px;
}

.footer-links ul li a i {
    font-size: 12px;
    color: var(--primary-green);
}

/* Footer Contact */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
    font-size: 14px;
}

.footer-contact ul li i {
    color: var(--accent-yellow);
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
}

.footer-contact ul li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--accent-yellow);
}

.footer-contact .social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-contact .social-links a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.1);
    text-decoration: none;
}

.footer-contact .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #fff;
}

.footer-contact .social-links a.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer-contact .social-links a.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.footer-contact .social-links a.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.footer-contact .social-links a.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.footer-contact .social-links a.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.footer-contact .social-links a.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Footer Newsletter */
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.footer-newsletter p {
    color: #333;
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 25px;
    background: rgba(0,0,0,0.1);
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(0,0,0,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--accent-yellow);
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background: var(--accent-red);
    transform: translateY(-50%) rotate(360deg);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 20px;
}

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

.copyright {
    color: #333;
    font-size: 14px;
}

.copyright a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

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

.payment-methods span {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
}

.payment-methods .mpesa-till {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-methods .mpesa-till i {
    color: var(--accent-yellow);
    font-size: 16px;
}

/* ==================== FLOATING BUTTONS WITH TOOLTIPS ==================== */

.floating-buttons-left {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-buttons-right {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: none;
    position: relative;
    overflow: visible;
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.float-btn.whatsapp-chat {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn.whatsapp-channel {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn.scroll-top {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.float-btn.scroll-top.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Tooltip Styles */
.float-btn-tooltip {
    position: absolute;
    background: white;
    color: #333;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
    top: 50%;
    transform: translateY(-50%);
}

/* Left side buttons - tooltip appears on right */
.floating-buttons-left .float-btn-tooltip {
    left: 65px;
}

.floating-buttons-left .float-btn-tooltip::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: white;
}

.floating-buttons-left .float-btn:hover .float-btn-tooltip {
    opacity: 1;
    visibility: visible;
    left: 70px;
}

/* Right side buttons - tooltip appears on left */
.floating-buttons-right .float-btn-tooltip {
    right: 65px;
}

.floating-buttons-right .float-btn-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: white;
}

.floating-buttons-right .float-btn:hover .float-btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Pulse Animation for WhatsApp Chat */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-btn.whatsapp-chat {
    animation: pulse 2s infinite;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-about {
        margin-bottom: 30px;
    }

    .footer-links,
    .footer-contact,
    .footer-newsletter {
        margin-bottom: 30px;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-links h4::after {
        left: 10%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-bottom-content {
        text-align: center;
        justify-content: center;
    }

    .floating-buttons-left,
    .floating-buttons-right {
        bottom: 80px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .floating-buttons-left,
    .floating-buttons-right {
        bottom: 10px;
    }
    /*.floating-buttons-left
     {
        display: none;
    }*/

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

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

    .products-header h2 {
        font-size: 26px;
    }

    .product-card {
        padding: 15px;
    }

    .product-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /*.product-actions {
        flex-direction: column;
    }*/

    .btn-buy-now,
    .btn-add-cart {
        width: 48%;
    }

    /*.payment-buttons {
        position: relative;
        display: block;
    }*/
}




/* ============LOADER============= */
.loader{
  display: none;
}
.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}
.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: var(--primary-color);
  color: var(--primary-color);
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}
.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}
.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}
.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}
.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}
@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
}
50%, 100% {
    top: 19px;
    height: 26px;
}
}

@-webkkeyframes sk-stretchdelay {
  0%, 40%, 100% { -webktransform: scaleY(0.4) }
  20% { -webktransform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
}20% {
 transform: scaleY(1.0);
 -webktransform: scaleY(1.0);
}
}