/* ============================================
   CUSTOM STYLING FOR THE WORKS STORE
   ============================================ */

:root {
    --primary-color: #80ba26;
    --footer-bg: #20304f;
    --announcement-bg: #80ba26;
    --body-bg: #ffffff;
    --hover-color: #20304f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--body-bg);
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
/* Announcement Bar */

/* Discount section wrapper */
.discount-section {
    background: linear-gradient(
        90deg,
        #bd241c,
        #f4650f
    ) !important; /* Red to orange gradient */
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

/* Discount text styling */
.discount-text {
    margin: 0;
    color: #fff;
}

/* Discount percentage */
.discount-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    animation: pulse 2s infinite;
}

/* Discount code styling */
.discount-code {
    font-weight: 700;
    color: #ffd700; /* gold color for highlight */
    margin-left: 5px;
}

/* Pulse animation for discount percentage */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .discount-section {
        font-size: 14px;
        padding: 8px 0;
    }
    .discount-percentage {
        font-size: 16px;
        padding: 1px 6px;
    }
}

.announcement-bar {
    background: #80ba26;
    padding: 12px 0;
    color: #fff;
}

/* Logo */
.announcement-logo {
    max-height: 130px;
}
/* Search Bar Wrapper */
.announcement-search-wrapper {
    display: flex;
    width: 100%;
    position: relative;
}

/* Input Field */
.announcement-search {
    width: 100%;
    padding: 18px 12px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 14px;
}

/* Search Button */
.search-btn {
    background: #0272b9; /* Nice blue color */
    color: #fff;
    border: 1px solid #0272b9;
    padding: 10px 16px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.3s;
}
.search-btn:hover {
    background: #025a8c;
}

/* Suggestion Box */
#searchSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: calc(3 * 42px); /* 3 items height, adjust 42px if needed */
    overflow-y: auto; /* scroll if more than 3 items */
    display: none; /* hidden by default */
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Each suggestion item */
#searchSuggestions .suggestion-item {
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    line-height: 22px; /* adjust height for calculation */
}

/* Hover effect */
#searchSuggestions .suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Product Boxes */
.product-grid {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.product-grid a {
    text-decoration: none;
    color: white;
}

.product-box {
    /* background: rgba(255, 255, 255, 0.1); */
    background: #20304f;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    width: 90px;
    height: 120px;
}

.product-box .p-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 5px;
}

/* Badge wrapper (for proper positioning) */
.badge-wrapper {
    position: relative;
    display: inline-block;
}

/* Discount Badge */
.product-box-discount-badge {
    position: absolute;
    top: -6px;
    background: #bd241c; /* your --bg-color */
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 10;
    letter-spacing: 0.3px;
}

/* Product image */
.product-box .p-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.p-name {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.p-price {
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 6px;
    border-radius: 4px;
    margin-top: 5px;
}

/* Mobile */
@media (max-width: 768px) {
    .product-grid {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
}
/* ---------- Navbar (UPDATED RESPONSIVE LAYOUT) ---------- */
.navbar-custom {
    background: #20304f;
    width: 100%;
    z-index: 1000;
}

/* center container and align */
.navbar-container {
    max-width: 1325px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    flex-direction: column; /* top row + menu row stacked for mobile; desktop will change */
    gap: 8px;
}

/* TOP ROW: logo and hamburger */
.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo left, hamburger right */
    gap: 12px;
}

/* Logo */
.logo-left a {
    display: inline-block;
}
.nav-logo {
    max-height: 80px;
    display: block;
}

/* Hamburger */
.hamburger {
    display: none; /* shown on mobile via media query */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #ffffff;
    display: block;
    border-radius: 2px;
}

/* Nav Menu (desktop default: horizontal) */
nav {
    width: 100%;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end; /* keep menu to the right on desktop */
}
.nav-item {
    position: relative;
}
.nav-item a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 6px;
    display: inline-flex;
    align-items: center;
}
.nav-item a:hover {
    color: #80ba26;
}

/* header-cart adjustments */
.header-cart .cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

/* Dropdown (desktop) */
.dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 100;
}
/* ---------- CART (Desktop + Mobile Responsive) ---------- */

.header-cart {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

/* Cart Icon Link */
.cart-link {
    color: white;
    font-size: 1.6rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 5px;
    transition: 0.3s;
}

.cart-link i {
    transition: 0.3s;
}

.cart-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Badge Counter */
.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

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

    .header-cart {
        width: 100%;
        justify-content: flex-start;
        margin: 10px 0;
        padding-left: 18px;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
    .cart-icon-hidden-mobile-view{
        display: none !important; /* mobile menu hidden */

    }

    .cart-link {
        font-size: 1.9rem;
        color: #20304f !important;
    }

    /* Floating Cart Icon (Hidden by default) */
    .cart-mobile-tab-show {
        position: fixed;
        bottom: 120px;
        right: 31px;
        display: none; /* IMPORTANT: default hidden */
        align-items: center;
        z-index: 1000;
        background: white;
        padding: 10px;
        border-radius: 50%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .cart-mobile-tab-show i {
        font-size: 1.8rem;
        color: #20304f;
    }

    /* Floating icon count */
    .cart-mobile-tab-show .cart-count {
        background-color: red;
        color: white;
        font-size: 12px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        position: absolute;
        top: -6px;
        right: -6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* Desktop: show dropdown on hover */
@media (min-width: 992px) {
    .navbar-container {
        flex-direction: row;
        align-items: center;
    }
    .nav-top {
        width: auto;
    } /* keep top items inline if needed */
    .nav-menu {
        display: flex;
    }
    .hamburger {
        display: none;
    } /* hide hamburger on desktop */
}

/* ---------------- Mobile styles ---------------- */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    /* Keep top row layout: logo left + hamburger right */
    .navbar-container {
        flex-direction: column;
    }

    /* Nav menu becomes collapsible block under top row */
    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        overflow: hidden;
        max-height: 0; /* collapsed by default */
        transition: max-height 0.35s ease;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }

    .nav-menu.show {
        /* large enough to reveal all menu items */
        max-height: 1000px;
    }

    .nav-item {
        width: 100%;
        border-top: 1px solid #eee;
    }
    .nav-item a {
        padding: 14px 18px;
        width: 100%;
        color: #20304f;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-item a:hover {
        color: #80ba26;
        background: transparent;
    }

    /* Hide announcement logo & mobile product boxes if desired (from your earlier css) */
    .announcement-logo {
        display: none !important;
    }
    .mobile-product-box-none {
        display: none;
    }
}

/* small polish: focus outlines for accessibility */
.hamburger:focus {
    outline: 2px solid rgba(128, 186, 38, 0.35);
    border-radius: 4px;
}
.nav-item a:focus {
    outline: 2px solid rgba(32, 48, 79, 0.15);
    border-radius: 4px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    transition: var(--transition) !important;
    border: none !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 48, 79, 0.3);
}

.btn-primary:active {
    background-color: var(--hover-color);
    transform: translateY(0);
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

/* ===== HERO BANNER UNIQUE CLASS STYLES ===== */

.store-hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.store-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.store-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(32, 48, 79, 0.5);
    z-index: 2;
}

.store-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.store-hero-wrapper {
    max-width: 700px;
    padding: 0 20px;
}

.store-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(32, 48, 79, 0.3);
    animation: store-fade-in-down 1s ease-out;
}

.store-hero-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(32, 48, 79, 0.3);
    animation: store-fade-in-up 1s ease-out 0.2s both;
}

.store-hero-button {
    display: inline-block;
    background-color: #80ba26;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #80ba26;
    animation: store-fade-in-up 1s ease-out 0.4s both;
}

.store-hero-button:hover {
    background-color: #20304f;
    border-color: #20304f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(128, 186, 38, 0.3);
}

/* ANIMATION */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .store-hero-title {
        font-size: 38px;
    }
    .store-hero-description {
        font-size: 17px;
    }
    .store-hero-wrapper {
        padding: 25px;
    }
    .store-hero-button {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* ===== ANIMATIONS ===== */

@keyframes store-fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes store-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .store-hero-banner {
        height: 450px;
    }

    .store-hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .store-hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .store-hero-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .store-hero-banner {
        height: 350px;
    }

    .store-hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .store-hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .store-hero-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .store-hero-wrapper {
        padding: 0 15px;
    }
}

/* ============================================
   premium Section
   ============================================ */

.hero-section {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(128, 186, 38, 0.05) 100%
    );
    /* background-color: #ebfad6; */
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(128, 186, 38, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-text {
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: rgb(0, 0, 0) !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

/* ============================================
   Client satifaction section
   ============================================ */
.stat-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Improve responsiveness on small devices */
@media (max-width: 576px) {
    .stat-box {
        padding: 25px 20px;
    }
}

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

.products-section {
    /* background-color: var(--body-bg); */
    background-color: #ebfad6;
}

.product-card-wrapper {
    perspective: 1000px;
}

.product-card {
    height: 500px; /* fixed height */
    display: flex;
    flex-direction: column;
}

/* IMAGE CONTAINER */
.product-image-container {
    height: 60%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* IMAGE FIX — NO CROP */
.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* prevents cropping */
    transition: transform 0.2s ease-out;
}

/* REMOVE aspect-ratio to avoid forced square */
.product-image-container {
    aspect-ratio: unset;
}

/* .product-card:hover .product-image-container img {
    transform: scale(1.1);
} */

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(32, 48, 79, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card .btn {
    margin-top: auto;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */

.social-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: var(--transition);
    min-width: 160px;
    justify-content: center;
}

.social-button:hover {
    background-color: var(--hover-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(32, 48, 79, 0.3);
    text-decoration: none;
}

.social-button i {
    font-size: 1.5rem;
}

@media (max-width: 576px) {
    .social-button {
        padding: 0.875rem 1.5rem;
        min-width: 140px;
    }
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-hero {
    background: linear-gradient(rgba(32, 48, 79, 0.7), rgba(26, 36, 56, 0.7)),
        url("https://i.pinimg.com/736x/10/03/7c/10037c4841973961d529d2e1aa5078f1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 100px 0;
    text-align: left;

    animation: fadeInDown 0.8s ease-out;
}

.blog-hero .hero-title,
.blog-hero .hero-subtitle {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-hero {
        padding: 80px 0;
        text-align: center;
    }
}

.blog-section {
    background-color: var(--body-bg);
}

.blog-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    overflow: hidden;
    background-color: #f8f9fa;
    aspect-ratio: 16/9;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white !important;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.blog-link:hover {
    color: var(--hover-color);
    transform: translateX(5px);
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
    background-color: var(--footer-bg);
    color: white;
    margin-top: 5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copy {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.footer-copy a.footer-dev-link {
    color: #80ba26;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-copy a.footer-dev-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-logo-wrapper {
    text-align: center;
}

.footer-logo {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
    display: inline-block;
}

.footer-policy {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-policy:hover {
    color: var(--primary-color);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        padding: 1rem;
    }

    .product-card-wrapper {
        margin-bottom: 1rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .announcement-bar p {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-section .row {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.min-vh-100 {
    min-height: 100vh;
}

/* ... existing code ... */

/* Owner Biography Section */
.owner-bio {
    padding: 80px 0;
}

.bio-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.bio-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 186, 38, 0.2);
}

.owner-bio h2 {
    color: #20304f;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.owner-bio p {
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.owner-bio-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 30px;
}

.owner-bio-content {
    flex: 1;
}

.owner-bio-image {
    flex: 0 0 300px;
    text-align: center;
}

@media (max-width: 768px) {
    .owner-bio-row {
        flex-wrap: wrap;
    }

    .owner-bio-image {
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background-color: #ebfad6;
}

.product-detail-card {
    background: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.product-detail-card:hover {
    border-color: #80ba26;
    box-shadow: 0 10px 30px rgba(128, 186, 38, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #80ba26;
}

.product-detail-card h3 {
    color: #20304f;
    font-weight: 700;
}

.product-detail-card p {
    color: #666;
    line-height: 1.7;
}

/* mission vission section  */

.twstore-about-section {
    padding: 100px 0;
    background: #f4f7fa;
}

.twstore-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.twstore-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 65px;
    color: #20304f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.twstore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.twstore-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.twstore-card::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 140px;
    height: 140px;
    background: #80ba26;
    border-radius: 50%;
    opacity: 0.12;
    transition: all 0.4s ease;
}

.twstore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.twstore-card:hover::before {
    top: -50px;
    right: -50px;
    opacity: 0.18;
}

.twstore-title {
    font-size: 28px;
    font-weight: 700;
    color: #20304f;
    margin-bottom: 18px;
    position: relative;
}

.twstore-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #80ba26;
    display: block;
    margin-top: 8px;
    border-radius: 4px;
}

.twstore-text {
    font-size: 17px;
    color: #425466;
    line-height: 1.7;
    margin-top: 10px;
}

/* History & Achievements Section */
.history-achievements {
    padding: 80px 0;
}

.achievement-number {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.history-achievements h2 {
    color: #20304f;
    font-weight: 700;
    margin-bottom: 3rem;
}

.history-achievements h3 {
    color: #20304f;
    font-weight: 700;
}

.history-achievements p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Achievement Stats */
.stat-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 186, 38, 0.15);
}

.brand-color {
    color: #80ba26;
}

.history-timeline {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    margin-left: 60px;
    padding-left: 40px;
    border-left: 4px solid #80ba26; /* Vertical line */
}

.timeline-event {
    position: relative;
    margin-bottom: 60px;
}

.timeline-circle {
    position: absolute;
    left: -60px;
    top: 0;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 4px solid #80ba26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #20304f;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 186, 38, 0.2);
}

.timeline-content h4 {
    font-weight: 700;
    color: #20304f;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ebfad6;
}

.faq-section h2 {
    color: #20304f;
    font-weight: 700;
    margin-bottom: 3rem;
}

.accordion-button {
    background-color: white;
    border: 2px solid #e0e0e0;
    color: #20304f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #80ba26;
    color: white;
    border-color: #80ba26;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(128, 186, 38, 0.25);
}

.accordion-button:hover {
    background-color: #f5f5f5;
    border-color: #80ba26;
}

.accordion-button:not(.collapsed):hover {
    background-color: #6fa021;
}

.accordion-body {
    background-color: #f9f9f9;
    color: #666;
    line-height: 1.8;
}

.accordion-item {
    border: 2px solid #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
}

.btn-primary-accent {
    background-color: #80ba26;
    color: white;
    padding: 12px 40px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-accent:hover {
    background-color: #20304f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Fade-in Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Footer Styles */
.footer {
    background-color: #20304f;
    color: white;
}

.footer a:hover {
    color: #80ba26 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6);
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .owner-bio .row {
        flex-direction: column;
    }

    .history-achievements h2 {
        font-size: 1.8rem;
    }

    .stat-box {
        margin-bottom: 1rem;
    }

    .accordion-button {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .owner-bio,
    .product-details,
    .history-achievements,
    .faq-section,
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ========== HERO SECTION - PRODUCTS PAGE ========== */
.hero-section-products {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease-in;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-section-products .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--button-hover);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-img {
    max-width: 100%;
    height: auto;
    animation: slideInRight 0.8s ease-out 0.3s both;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(128, 186, 38, 0.2);
}

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

/* ===== HERO SECTION ===== */

.productpage-hero-section {
    background: linear-gradient(rgba(32, 48, 79, 0.6), rgba(32, 48, 79, 0.6)),
        url("../images/product-page-banner.jpeg") center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.productpage-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.productpage-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.productpage-hero-subtitle {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 400;
}

@media (max-width: 768px) {
    .productpage-hero-section {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .productpage-hero-title {
        font-size: 28px;
    }

    .productpage-hero-subtitle {
        font-size: 14px;
    }
}

/* ===== MAIN SECTION ===== */
.productpage-main-section {
    padding: 40px 0;
    background-color: var(--body-bg);
}

/* ===== SIDEBAR SECTION ===== */
.productpage-sidebar-section {
    background-color: var(--body-bg);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* ===== CATEGORY ACCORDION ===== */
.productpage-sidebar-category {
    margin-bottom: 30px;
}

.productpage-accordion {
    border: none;
}

.productpage-accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.productpage-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background-color: var(--body-bg);
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.productpage-category-header:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.productpage-category-header.collapsed {
    color: var(--text-dark);
}

.productpage-category-header:not(.collapsed) {
    background-color: #f9faf7;
    color: var(--primary-color);
}

.productpage-category-icon {
    font-size: 18px;
    margin-right: 10px;
}

.productpage-category-name {
    flex: 1;
    text-align: left;
}

.productpage-toggle-icon {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
}

.productpage-category-header:not(.collapsed) .productpage-toggle-icon {
    transform: rotate(45deg);
}

.productpage-accordion-body {
    padding: 12px 0;
    background-color: var(--body-bg);
}

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

.productpage-subcategory-item {
    padding: 10px 16px;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.productpage-subcategory-item a {
    color: black !important;
}
.productpage-subcategory-item:hover {
    background-color: #f9faf7;
    color: var(--text-dark);
}

.productpage-active-subcategory {
    color: var(--primary-color);
    font-weight: 600;
    background-color: #f9faf7;
    border-left-color: var(--primary-color);
}

/* ===== PRICE FILTER ===== */
.productpage-price-filter {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-top: 24px;
}

.productpage-filter-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.productpage-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.productpage-price-input {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.productpage-price-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 186, 38, 0.1);
}

.productpage-price-separator {
    color: var(--text-light);
    font-size: 14px;
    padding: 0 4px;
}

.productpage-filter-btn {
    width: 100%;
    padding: 10px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.productpage-reset-btn {
    width: 100%;
    padding: 10px 16px;
    background-color: var(--footer-bg) !important;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.productpage-reset-btn:hover {
    background-color: var(--footer-bg) !important;
    color: white;
    transform: translateY(-1px);
}

.productpage-filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* ===== GRID SECTION ===== */
.productpage-grid-section {
    min-height: 400px;
}

/* ===== PRODUCT CARD ===== */
.productpage-product-card {
    background-color: var(--body-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.productpage-product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

/* ===== DISCOUNT BADGE ===== */
.product-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}
.productpage-product-original-price {
    margin-left: 6px;
    font-size: 13px;
}

.productpage-product-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f9faf7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productpage-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.productpage-product-card:hover .productpage-product-image {
    transform: scale(1.08);
}

.productpage-product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.productpage-product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.productpage-product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    flex: 1;
    line-height: 1.5;
}

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

.productpage-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.productpage-product-stock {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.productpage-in-stock {
    color: #27ae60;
    background-color: rgba(39, 174, 96, 0.1);
}

.productpage-low-stock {
    color: #f39c12;
    background-color: rgba(243, 156, 18, 0.1);
}

.productpage-sold-out {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .productpage-hero-title {
        font-size: 32px;
    }

    .productpage-product-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .productpage-sidebar-section {
        margin-bottom: 30px;
        order: -1;
    }

    .productpage-price-filter {
        display: flex;
        flex-direction: column;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .productpage-hero-title {
        font-size: 26px;
    }

    .productpage-hero-section {
        margin-bottom: 20px;
    }

    .productpage-product-image-wrapper {
        height: 180px;
    }

    .productpage-product-title {
        font-size: 14px;
    }

    .productpage-product-desc {
        font-size: 12px;
    }

    .productpage-product-price {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .productpage-hero-title {
        font-size: 22px;
    }

    .productpage-hero-subtitle {
        font-size: 13px;
    }

    .productpage-product-image-wrapper {
        height: 160px;
    }

    .productpage-category-header {
        padding: 12px 12px;
        font-size: 14px;
    }

    .productpage-subcategory-item {
        padding: 8px 12px;
    }
}

.btn-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.btn-custom:hover {
    background-color: var(--hover-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 48, 79, 0.3);
    text-decoration: none;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #20304f 0%, #2d4563 100%);
    color: white;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-section .btn-custom {
    background-color: var(--primary-color);
    display: inline-block;
    width: auto;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #80ba26;
}

.footer-social-icons a:hover {
    background-color: #000000;
    color: #fff;
    transform: translateY(-3px);
}

#otherField {
    transition: all 0.3s ease;
}

/* ============================================
   Back to Top Button
   ============================================ */

/* ===== BACK TO TOP BUTTON STYLE ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #131d32;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

#backToTop i {
    font-size: 25px;
    position: absolute;
    z-index: 2;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* SVG Circle Progress */
.progress-ring {
    position: absolute;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke: var(--primary-color);
    stroke-dasharray: 164;
    stroke-dashoffset: 164;
    transition: stroke-dashoffset 0.25s linear;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-align: center;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(128, 186, 38, 0.3);
}

.back-to-top:hover {
    background-color: var(--button-hover);
    transform: translateY(-3px);
}

.back-to-top.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .product-image {
        height: 200px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

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

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section-products {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

/* ===========================
   BLOG SECTION
   =========================== */

.blog-section {
    padding: 10px 0;
    /* background-color: var(--body-bg); */
    background-color: #ebfad6;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

/* ===========================
   BLOG CARD
   =========================== */

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation-delay: var(--delay, 0s);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

.blog-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #999;
}

.blog-category {
    background-color: rgba(128, 186, 38, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.read-time {
    display: flex;
    align-items: center;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.read-more-btn:hover {
    color: var(--hover-color);
    transform: translateX(5px);
}

/* ===========================
   LOAD MORE BUTTON
   =========================== */

.load-more-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.load-more-btn:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */

.newsletter-section {
    background: linear-gradient(
        135deg,
        var(--hover-color) 0%,
        rgba(32, 48, 79, 0.9) 100%
    );
    color: white;
    padding: 60px 0;
    margin: 60px 0;
}

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

.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-btn {
        width: 100%;
    }
}

/* Blog Detail Wrapper */
.blog-detail-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    /* padding: 60px 0 80px 0; */
}

/* Breadcrumb Navigation */
.blog-breadcrumb {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    margin-top: 60px;
}

.blog-breadcrumb .breadcrumb {
    padding: 0;
}

.blog-breadcrumb .breadcrumb-item a {
    color: #80ba26;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
    color: #20304f;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: #20304f;
}

/* Blog Detail Container */
.blog-detail-container {
    background: #ffffff;
}

.blog-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    /* padding: 40px 20px; */
}

/* Blog Header */
.blog-detail-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #20304f;
    line-height: 1.3;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.blog-date,
.blog-read-time {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-category {
    display: inline-block;
    background-color: #80ba26;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured Image */
.blog-featured-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Article Content */
.blog-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-section {
    margin-bottom: 10px;
}

.blog-article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.blog-article-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #20304f;
    margin-bottom: 30px;
}

/* Headings */
.blog-article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #20304f;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid #80ba26;
}

.blog-article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #20304f;
    margin-bottom: 15px;
    margin-top: 20px;
}

/* Lists */
.blog-article-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

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

.blog-article-content li strong {
    color: #80ba26;
}

/* Blockquote */
.blog-quote {
    border-left: 5px solid #80ba26;
    padding: 20px;
    margin: 30px 0;
    background-color: #f8f9fa;
    font-style: italic;
    color: #555;
    border-radius: 4px;
}

/* Inline Images */
.blog-inline-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 12px 16px;
    background-color: #f8f9fa;
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
    border-radius: 0 0 8px 8px;
}

/* Blog Conclusion */
.blog-conclusion {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

.blog-conclusion h2 {
    border-bottom-color: #20304f;
}

/* Call-to-Action Box */
.blog-cta {
    margin-top: 60px;
    margin-bottom: 40px;
}

.cta-box {
    background: linear-gradient(135deg, #20304f 0%, #2a3f5f 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    color: #80ba26;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #e9ecef;
}

.cta-box .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
}

.cta-box .btn-primary {
    background-color: #80ba26;
    border-color: #80ba26;
}

.cta-box .btn-primary:hover {
    background-color: #20304f;
    border-color: #20304f;
}

.cta-box .btn-outline-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.cta-box .btn-outline-secondary:hover {
    background-color: #ffffff;
    color: #20304f;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 1.8rem;
    }

    .blog-article-content h2 {
        font-size: 1.5rem;
    }

    .blog-article-content h3 {
        font-size: 1.2rem;
    }

    .blog-meta {
        gap: 10px;
    }

    .cta-box {
        padding: 25px 20px;
    }

    .cta-box .btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .blog-detail-content {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .blog-detail-title {
        font-size: 1.5rem;
    }

    .blog-article-content {
        font-size: 1rem;
    }

    .blog-article-content h2 {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .blog-article-content h3 {
        font-size: 1.1rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .blog-featured-image {
        margin: 25px 0;
    }

    .blog-quote {
        padding: 15px;
        margin: 25px 0;
    }

    .cta-box {
        padding: 20px 15px;
    }
}

/* =========================
   Contact Full Section
========================= */
.contact-full-section {
    padding: 80px 0;
    background-color: #fcfafa;
}

.contact-hero-section {
    background: linear-gradient(rgba(32, 48, 79, 0.6), rgba(32, 48, 79, 0.6)),
        url("../images/top-image.jpeg") center/cover no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #20304f;
    margin-bottom: 30px;
}

.contact-form-element input,
.contact-form-element select,
.contact-form-element textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-form-element input:focus,
.contact-form-element select:focus,
.contact-form-element textarea:focus {
    border-color: #80ba26;
    box-shadow: 0 0 0 3px rgba(128, 186, 38, 0.1);
    outline: none;
}

.contact-form-submit-btn {
    background-color: #80ba26;
    color: #fff;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-submit-btn:hover {
    background-color: #20304f;
    transform: translateY(-2px);
}

/* =========================
   Contact Info Right
========================= */
.contact-info-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80%;
}

.contact-intro-text {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: #fff;
    border-left: 5px solid #80ba26;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; /* overall vertical stacking */
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(128, 186, 38, 0.2);
}

/* Icon + h5 wrapper */
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon styling */
.contact-icon {
    font-size: 1.5rem;
    color: #80ba26;
}

/* Heading */
.contact-info-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Paragraph */
.contact-info-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-icon {
    font-size: 24px;
    color: #80ba26;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-info-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #20304f;
}

.contact-info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-info-card a {
    color: #80ba26;
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* =========================
   Full Width Map
========================= */
.contact-map-full iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
}
/* =========================
   Social Media Section
========================= */
.contact-social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ebfad6 0%, #fcfafa 100%);
    text-align: center;
}

.contact-social-title {
    font-size: 36px;
    font-weight: 700;
    color: #20304f;
    margin-bottom: 10px;
}

.contact-social-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 60px;
}

.contact-social-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-social-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    min-width: 500px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.contact-social-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(128, 186, 38, 0.25);
}

/* Social Icons */
.contact-social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    transition: all 0.4s ease;
}

.contact-social-icon.instagram {
    background: #e1306c;
}
.contact-social-icon.facebook {
    background: #3b5998;
}
.contact-social-icon.linkedin {
    background: #0077b5;
}
.contact-social-icon.twitter {
    background: #1da1f2;
}

.contact-social-card:hover .contact-social-icon {
    transform: rotate(-10deg) scale(1.1);
}

/* Social Name */
.contact-social-name {
    font-size: 18px;
    font-weight: 700;
    color: #20304f;
    margin-bottom: 15px;
}

/* Social Links */
.contact-social-link {
    display: inline-block;
    color: #80ba26;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 20px;
    border: 2px solid #80ba26;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background-color: #80ba26;
    color: #fff;
}

/* Terms & Conditions Page */
.tc-wrapper {
    background-color: #f8f9fa;
    padding: 80px 20px;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}

.tc-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.tc-title {
    font-size: 3rem;
    font-weight: 700;
    color: #20304f;
    text-align: center;
    margin-bottom: 30px;
}

.tc-intro {
    font-size: 1.2rem;
    color: #555555;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.8;
}

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

.tc-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #80ba26;
    margin-bottom: 15px;
    position: relative;
}

.tc-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background-color: #80ba26;
    border-radius: 2px;
}

.tc-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.tc-footer {
    margin-top: 50px;
    text-align: center;
}

.tc-footer a {
    color: #80ba26;
    text-decoration: none;
    font-weight: 500;
}

.tc-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tc-title {
        font-size: 2.5rem;
    }
    .tc-intro {
        font-size: 1rem;
    }
    .tc-subtitle {
        font-size: 1.3rem;
    }
    .tc-container {
        padding: 30px 20px;
    }
}
