/* ========== BASE STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #00926b;
    --primary-dark: #055340;
    --text-color: #23292f;
    --white: #ffffff;
    --swiper-navigation-size: 44px;
    --swiper-theme-color: #007aff;
}

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

html {
    font-size: 16px;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

button {
    border: 1px solid var(--primary-dark);
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.wrapper {
    box-sizing: border-box;
    font-size: inherit;
    font-weight: inherit;
}

/* ========== HEADER STYLES ========== */
.header_fixed {
    display: inline;
    z-index: 102;
    top: 0;
    background-color: var(--white);
}

header {
    padding: 15px 0;
}

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

header .logo {
    line-height: 0;
}

header .contact_us_info .phone_and_messengers {
    display: flex;
    gap: 10px;
    align-items: center;
}

header .contact_us_info .phone_and_messengers button {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    border: none;
}

header .contact_us_info .phone_and_messengers button:hover {
    background-color: #033a2d;
    transform: translateY(-1px);
}

header .contact_us_info .work_time {
    font-size: 12px;
    font-weight: 300;
    text-align: right;
}

header .whatsapp {
    background: transparent;
    border: none;
    padding: 0;
}

/* ========== LANGUAGE SELECTOR ========== */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 5px;
}

.lang-button img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.lang-button:hover img {
    transform: scale(1.1);
}

.lang-button span {
    color: var(--text-color);
    display: none;
}

/* ========== FIXED MENU ========== */
.fixed_menu {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.fixed_menu .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.fixed_menu .wrapper a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    display: block;
    padding: 15.5px;
}

.fixed_menu .wrapper a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ========== BURGER MENU ========== */
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.burger-menu.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ========== MEDIA QUERIES ========== */
@media (min-width: 768px) {
    .lang-button span {
        display: inline;
    }
}

@media (min-width: 992px) {
    header {
        border-bottom: 1px solid #ececec;
    }
    
    header .contact_us_info .phone {
        display: block;
        font-size: 24px;
        font-weight: 700;
    }
}
@media (min-width: 992px) {
    .burger-menu {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .fixed_menu {
        flex-direction: column;
        padding: 0;
    }
    
    .fixed_menu .wrapper {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .fixed_menu .wrapper.active {
        display: flex;
    }
    
    .fixed_menu .wrapper a {
        padding: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .burger-menu {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    header .wrapper {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }
    
    header .contact_us_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    header .top-right {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    header .logo {
        margin-bottom: 10px;
    }
    
    .phone_and_messengers {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .lang-button img {
        width: 20px;
        height: 20px;
    }
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    color: white;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 77, 64, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-button {
    background-color: #055340;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #043a30;
}
.image-links .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.image-links .image-link img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 300px;
}

.image-links .image-link img:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .image-links .image-link img {
        width: 100%;
        max-width: 90vw;
    }
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background-color: #eef7f6;
    text-align: center;
}

.feature {
    padding: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.feature h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #055340;
}

.feature p {
    font-size: 16px;
    color: #333;
}

/* Contact Section */
#contact h2{
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
#contact p{
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;

}
/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

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

.contact-submit {
    padding: 12px;
    font-size: 16px;
    background-color: #055340;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-submit:hover {
    background-color: #04612e;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .contact-submit {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 10px;
        gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-submit {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form label {
        font-size: 14px;
    }
}

/* Footer */
footer {
    background-color: #00926b;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #80cbc4;
    text-decoration: none;
}

footer a:hover {
    color: #a7ffeb;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .contact-form {
        padding: 15px;
    }

    .cta-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .features-section {
        padding: 20px 10px;
    }

    .feature {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

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

    .contact-form {
        padding: 10px;
    }

    .cta-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .features-section {
        gap: 15px;
    }
}
/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: none; /* Initially hidden */
}

.cookie-consent-popup a {
    color: #00ffcc;
    text-decoration: underline;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    background-color: #00cc88;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.cookie-btn:hover {
    background-color: #00aa77;
}

/* Policy Section Styling */
.policy-section {
    max-width: 900px; /* Centered and restricted width for large screens */
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for a clean look */
}

.policy-section h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.policy-section p, .policy-section h2, .policy-section h3 {
    line-height: 1.6;
    color: #555;
}

.policy-section h2 {
    margin-top: 30px;
    font-size: 24px;
    color: #00926b;
}

.policy-section h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #666;
}

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

.policy-section a {
    color: #00926b;
    text-decoration: underline;
}

.policy-section a:hover {
    text-decoration: none;
}

.policy-section strong {
    font-weight: 600;
}

/* Mobile-Friendly Styles */
@media (max-width: 768px) {
    .policy-section {
        padding: 20px 15px; /* Reduced padding for smaller screens */
    }

    .policy-section h1 {
        font-size: 26px; /* Smaller font size for main heading */
    }

    .policy-section h2 {
        font-size: 20px; /* Adjust sub-heading size */
    }

    .policy-section h3 {
        font-size: 18px;
    }

    .policy-section p {
        font-size: 14px; /* Slightly smaller paragraph text */
    }

    /* Ensure proper spacing for small screens */
    .policy-section p,
    .policy-section h2,
    .policy-section h3 {
        margin-bottom: 20px;
    }
}

/* Even smaller screen adjustments for mobile phones */
@media (max-width: 480px) {
    .policy-section {
        padding: 15px 10px; /* Tighter padding for very small screens */
    }

    .policy-section h1 {
        font-size: 24px;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-section p {
        font-size: 13px;
    }
}


/* Categories Container */
.categories-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--category-bg);
    box-shadow: 0 4px 8px var(--shadow-color);
    border-radius: 8px;
}


/* Grid Layout */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category {
    background-color: var(--category-bg);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow-color);
}

.category a {
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.category span {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.category:hover span {
    color: var(--primary-color);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .categories-container {
        padding: 15px;
    }

    .category-grid {
        gap: 15px;
    }

    .category span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 18px;
    }

    .category img {
        border-radius: 5px;
    }

    .category span {
        font-size: 12px;
    }
}

/* Item Card */
.item-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow-color);
}

.item-card img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

/* Item Details */
.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-description h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
}

.item-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--price-color);
    margin: 10px 0;
}

/* Item Properties */
.item-properties {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.item-properties label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.item-properties select, 
.item-properties input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.item-properties select:focus, 
.item-properties input:focus {
    border-color: var(--primary-color);
}

.item-quantity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    padding: 10px 20px;
    font-size: 14px;
    color: #ffffff;
    background-color: var(--button-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--button-hover-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .item-card {
        flex-direction: column;
        gap: 10px;
    }

    .item-card img {
        max-width: 100%;
        border-radius: 8px;
    }

    .item-details {
        padding-top: 10px;
    }

    .item-description h2 {
        font-size: 16px;
    }

    .item-price {
        font-size: 14px;
    }

    .item-properties {
        flex-direction: column;
        gap: 10px;
    }

    .add-to-cart-btn {
        font-size: 14px;
        padding: 10px;
    }}
    /* Video Section */
.video-section {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically if needed */
    padding: 50px 20px;        /* Add spacing around the video */
    background-color: #f9f9f9; /* Optional: light background for contrast */
}

/* Video Styling */
video {
    width: 100%;               /* Full width of the container */
    max-width: 800px;          /* Limit max width on large screens */
    height: auto;              /* Maintain aspect ratio */
    border-radius: 10px;       /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.3s ease;          /* Smooth hover effect */
}

/* Optional Hover Effect */
video:hover {
    transform: scale(1.02);
}

/* Responsive Adjustments for Small Screens */
@media (max-width: 768px) {
    .video-section {
        padding: 30px 10px;    /* Adjust padding for smaller devices */
    }

    video {
        max-width: 100%;       /* Ensure the video fits narrow screens */
        border-radius: 5px;    /* Slightly smaller border-radius on mobile */
    }
}

 