/* Date created: Sep 24, 2021 */
/* Date modified: Jan 4, 2022 */
/* Updated: 2024 - Responsive Design */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* Utility Classes */
.flex_stuff {
    display: flex;
}

.center_stuff {
    justify-content: center;
    align-items: center;
}

.horiz {
    flex-direction: row;
}

.vertic {
    flex-direction: column;
}

.spaceEven {
    justify-content: space-evenly;
}

.hide_stuff {
    display: none !important;
}

.hideOverflow {
    overflow: hidden;
}

.whiteColor {
    background-color: #ffffff;
    color: #333;
}

.greenColor {
    background-color: #2e7d32;
    color: white;
}

.colorWhiteText {
    color: white !important;
}

.addBorderRadius {
    border-radius: 10px;
}

.changeColor {
    filter: invert(100%);
}

/* Navigation */
.navigationContainer {
    width: 100%;
    height: 60px;
    background-color: #2e7d32;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 20px;
}

.stickyDiv {
    position: fixed;
    z-index: 1000;
}

.myTopLinks {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.pageLinksContainer {
    gap: 20px;
}

.pageLinksContainer > div {
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.pageLinksContainer > div:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.main_background {
    min-height: 500px;
    width: 100%;
    padding: 100px 20px 60px;
    margin-top: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./img/img_background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.portfolioText h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolioText h2 {
    font-size: 1.2rem;
    font-weight: normal;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
}

.tagline {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #c8e6c9;
}

.cta_btn {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta_btn:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
.separator_element {
    padding: 40px 20px;
    text-align: center;
    background-color: #f1f8e9;
}

.separator_element h2 {
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 20px;
}

.separator_element h2 i {
    margin-right: 10px;
}

/* Product Cards */
.tabbed_menu_container {
    padding: 20px;
    background-color: #ffffff;
}

.card_container {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.card_container::-webkit-scrollbar {
    height: 8px;
}

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

.card_container::-webkit-scrollbar-thumb {
    background: #4caf50;
    border-radius: 10px;
}

.card_container::-webkit-scrollbar-thumb:hover {
    background: #388e3c;
}

.card {
    min-width: 250px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.product_card .img_stuff {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product_card:hover .img_stuff {
    transform: scale(1.05);
}

.product_info {
    padding: 20px;
}

.product_info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2e7d32;
    margin: 10px 0;
}

.product_rating {
    color: #ffb300;
    margin: 10px 0;
}

.product_rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.product_actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.add_to_cart {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.add_to_cart:hover {
    background-color: #388e3c;
}

.wishlist_btn {
    background: none;
    border: none;
    color: #e91e63;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.wishlist_btn:hover {
    transform: scale(1.2);
}

/* Features */
.features_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature_card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.feature_card i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.feature_card h3 {
    color: #333;
    margin-bottom: 10px;
}

.feature_card p {
    color: #666;
}

/* Terms & Conditions */
.terms_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#termsandconditions {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 20px;
}

#termsandconditions h3, 
#termsandconditions h4 {
    color: #2e7d32;
    margin: 20px 0 10px;
}

#termsandconditions h3 i,
#termsandconditions h4 i {
    margin-right: 10px;
}

#termsandconditions p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Social Media */
.contact_support {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.socialsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.social_media_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.social_media_card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.social_media_card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.social_media_card span {
    color: white;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter_container {
    text-align: center;
    padding: 40px 20px;
    background: #f1f8e9;
}

.newsletter_container h3 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.newsletter_container p {
    color: #666;
    margin-bottom: 20px;
}

.newsletter_form {
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    gap: 10px;
}

.newsletter_form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter_form input:focus {
    border-color: #4caf50;
}

.newsletter_form button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.newsletter_form button:hover {
    background-color: #388e3c;
}

/* Footer */
.companyInfo {
    padding: 20px;
    background-color: #1b5e20;
    color: white;
    text-align: center;
}

.companyInfo p {
    margin: 0;
}

.companyInfo i {
    margin-right: 5px;
}

/* Sidebar */
.sideBar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 280px;
    height: calc(100vh - 60px);
    background-color: #2e7d32;
    z-index: 999;
    overflow-y: auto;
    padding: 20px 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.sideBar.show {
    transform: translateX(0);
}

.sidebar_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.sidebar_item i {
    font-size: 1.2rem;
    width: 30px;
}

.sidebar_item span {
    font-size: 1rem;
}

/* Login/Register Forms */
.opaqueBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    display: none;
}

.opaqueBg.show {
    display: block;
}

.accessTablinks {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 15px 15px 0 0;
    z-index: 999;
    overflow: hidden;
    display: none;
}

.accessTablinks.show {
    display: flex;
}

.loginTablink,
.registerTablink {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loginTablink.active,
.registerTablink.active {
    background-color: #4caf50;
    color: white;
}

.accessTabContents {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 0 0 15px 15px;
    z-index: 999;
    display: none;
    padding: 30px;
}

.accessTabContents.show {
    display: block;
}

.usrLogin,
.usrRegister {
    width: 100%;
}

.usrLogin label,
.usrRegister label {
    display: block;
    margin: 15px 0 5px;
    color: #333;
    font-weight: 500;
}

.usrLogin label i,
.usrRegister label i {
    margin-right: 8px;
    color: #4caf50;
}

.execInput {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.execInput:focus {
    border-color: #4caf50;
    outline: none;
}

.form_options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.forgot_pass {
    color: #4caf50;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot_pass:hover {
    text-decoration: underline;
}

.execSubmit {
    width: 100%;
    padding: 12px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.execSubmit:hover {
    background-color: #388e3c;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #666;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social_icon {
    padding: 10px;
    border-radius: 50%;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s;
}

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

.terms {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.terms a {
    color: #4caf50;
    text-decoration: none;
}

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

/* Shopping Cart */
.cart_container {
    position: fixed;
    top: 60px;
    right: 0;
    width: 90%;
    max-width: 350px;
    height: calc(100vh - 60px);
    background: white;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart_container.show {
    transform: translateX(0);
}

.cart_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart_item_icon img {
    border-radius: 8px;
    object-fit: cover;
}

.cart_item_details {
    flex: 1;
}

.cart_item_details h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
}

.cart_item_details p {
    margin: 0;
    color: #4caf50;
    font-weight: bold;
}

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

.cart_item_remove {
    color: #f44336;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cart_item_remove:hover {
    background-color: #ffebee;
}

.cart_checkout {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #4caf50;
}

.checkout_btn {
    width: 100%;
    padding: 12px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.checkout_btn:hover {
    background-color: #388e3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolioText h1 {
        font-size: 2rem;
    }
    
    .portfolioText h2 {
        font-size: 1rem;
    }
    
    .card {
        min-width: 200px;
    }
    
    .features_container {
        grid-template-columns: 1fr;
    }
    
    .socialsContainer {
        gap: 10px;
    }
    
    .social_media_card {
        min-width: 100px;
    }
    
    .newsletter_form {
        flex-direction: column;
    }
    
    .newsletter_form input,
    .newsletter_form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .navigationContainer {
        padding: 0 10px;
    }
    
    .pageLinksContainer {
        gap: 10px;
    }
    
    .main_background {
        padding: 80px 15px 40px;
    }
    
    .separator_element h2 {
        font-size: 1.5rem;
    }
    
    .card_container {
        padding: 10px;
    }
    
    .social_media_card {
        min-width: 80px;
        padding: 15px 10px;
    }
    
    .social_media_card i {
        font-size: 1.5rem;
    }
    
    .social_media_card span {
        font-size: 0.8rem;
    }
}

/* Animation Keyframes */
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* Additional CSS for page navigation and user menu */

/* Page Containers */
.page-container {
    padding-top: 60px; /* Account for fixed header */
}

/* User Menu */
.user_menu {
    animation: slideDown 0.2s ease;
}

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

.user_menu_header {
    padding: 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.user_menu_header i {
    font-size: 2.5rem;
    color: #4caf50;
}

.user_info h4 {
    margin: 0;
    color: #333;
}

.user_info p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.user_menu_items {
    padding: 10px 0;
}

.menu_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.menu_item:hover {
    background-color: #f5f5f5;
}

.menu_item i {
    width: 20px;
    color: #666;
}

.menu_item.logout {
    color: #f44336;
}

.menu_item.logout i {
    color: #f44336;
}

.menu_divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

/* Auth Pages */
.auth_container {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f5f5, #e8f5e9);
}

.auth_card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

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

.auth_header h1 {
    color: #2e7d32;
    margin-bottom: 10px;
}

.auth_header .subtitle {
    color: #666;
    font-size: 1.1rem;
}

.auth_form .form_group {
    margin-bottom: 20px;
}

.auth_form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.auth_form label i {
    margin-right: 8px;
    color: #4caf50;
}

.auth_form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.auth_form input:focus {
    border-color: #4caf50;
    outline: none;
}

.form_options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.remember_me,
.terms_agree {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.forgot_password {
    color: #4caf50;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot_password:hover {
    text-decoration: underline;
}

.auth_btn {
    width: 100%;
    padding: 14px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth_btn:hover {
    background: #388e3c;
}

.auth_divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #666;
}

.auth_divider::before,
.auth_divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.auth_divider::before {
    left: 0;
}

.auth_divider::after {
    right: 0;
}

.social_auth {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social_btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social_btn:hover {
    border-color: #4caf50;
    background: #f5f5f5;
}

.auth_footer {
    text-align: center;
    color: #666;
}

.auth_footer a {
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

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

/* Password strength meter */
.password_strength {
    margin-top: 8px;
}

.strength_meter {
    height: 4px;
    background: #f44336;
    border-radius: 2px;
    margin-bottom: 4px;
    transition: width 0.3s, background-color 0.3s;
}

.strength_text {
    font-size: 0.8rem;
    color: #f44336;
    transition: color 0.3s;
}

/* Password toggle */
.password_toggle {
    position: absolute;
    right: 15px;
    top: 40px;
    cursor: pointer;
    color: #666;
}

.form_group {
    position: relative;
}

/* Products Page */
.products_header {
    padding: 40px 20px 20px;
    background: white;
    text-align: center;
}

.products_header h1 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.products_filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.products_filter select {
    padding: 10px 15px;
    border: 2px solid #4caf50;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
}

.products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #f5f5f5;
}

.pagination button {
    padding: 10px 20px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.pagination button:hover {
    background: #388e3c;
}

.page_number {
    font-weight: 500;
    color: #333;
}

/* About Page */
.about_header {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-align: center;
}

.about_header h1 {
    margin-bottom: 10px;
}

.about_header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about_content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about_section {
    margin-bottom: 40px;
}

.about_section h2 {
    color: #2e7d32;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about_section p {
    line-height: 1.8;
    color: #555;
}

.team_section {
    margin-top: 60px;
}

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

.team_member {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.member_avatar {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.team_member h3 {
    margin: 10px 0 5px;
    color: #333;
}

.role {
    color: #4caf50;
    font-weight: 500;
    margin-bottom: 10px;
}

.bio {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Page */
.contact_header {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2196f3, #21cbf3);
    color: white;
    text-align: center;
}

.contact_header h1 {
    margin-bottom: 10px;
}

.contact_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact_info h2,
.contact_form_container h2 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_info p {
    margin: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact_form_container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form_group textarea {
    resize: vertical;
}

.form_group input:focus,
.form_group textarea:focus {
    border-color: #2196f3;
    outline: none;
}

.submit_btn {
    background: #2196f3;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit_btn:hover {
    background: #1976d2;
}

.map_section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.map_section h2 {
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map_placeholder {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    color: #666;
}

.map_placeholder i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auth_card {
        padding: 30px 20px;
    }
    
    .products_filter {
        flex-direction: column;
        align-items: center;
    }
    
    .contact_container {
        grid-template-columns: 1fr;
    }
    
    .user_menu {
        min-width: 200px;
        right: 10px !important;
    }
}

@media (max-width: 480px) {
    .products_grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .team_grid {
        grid-template-columns: 1fr;
    }
    
    .social_auth {
        flex-direction: column;
    }
}