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

body {
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
    overflow-x: hidden;
    background: #f5fff3;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(to top right, #008213b7, #007011e0);
    border-bottom: 5px solid #00bb1ce0;
    border-bottom-left-radius: 50% 30%;
    border-bottom-right-radius: 50% 30%;
    padding: 20px 30px 80px;
    color: white;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, height, border-radius;
}

header.scrolled {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 2px solid #00bb1ce0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 80px !important;
    padding-bottom: 20px !important;
}

header.scrolled .header-content {
    transform: scale(0.95);
    transform-origin: top center;
}

header.scrolled .header-top {
    margin-bottom: 0;
    transform: scale(0.95);
    transform-origin: top center;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.header-text {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 50px 10px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    pointer-events: none;
}

.tagline {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

.shop-button {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    background: white;
    color: #2ED146;
    border: none;
    border-radius: 25px;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    will-change: opacity, transform;
}

.shop-button:hover {
    background: #f8f8f8;
    transform: translateX(-50%) translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.shop-button:active {
    transform: translateX(-50%) translateY(1px) scale(0.98);
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-right: 10px;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.login-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 10px;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.cart-icon:hover {
    transform: scale(0.97);
}

.cart-icon:active {
    transform: scale(0.95);
}

.cart-icon.has-items {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.menu-icon:active {
    transform: scale(0.95);
}

.menu-icon .dot {
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-actions .nav-icon {
    position: relative;
    font-size: 1.3rem;
    margin-left: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 5px;
}

.header-actions .wishlist-icon {
    font-size: 1.4rem;
    margin-right: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95em;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #666;
}

.fa-heart{
    position: relative;
}

.wishlist-count-small {
    position: absolute;
    top: 136px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 10px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #2e7d32;
    padding-left: 25px;
}

.dropdown-item:hover .wishlist-count-small {
    background: #ff6b6b;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 10px;
}

.menu-icon:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #0aaa1a;
    padding-left: 22px;
}

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

.settings-container h1 {
    color: #2e7d32;
    margin-bottom: 10px;
    text-align: center;
}

.settings-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

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

@media screen and (max-width: 480px) {
    .settings-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.settings-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.settings-header i {
    font-size: 1.5em;
    color: #2e7d32;
    width: 30px;
    text-align: center;
}

.settings-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.settings-content {
    padding: 20px;
}

.settings-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 10px;
}

.settings-group:last-child {
    border-bottom: none;
}

.settings-group label {
    font-weight: 500;
    color: #333;
    flex: 1;
    min-width: 150px;
}

.settings-value {
    color: #666;
    font-size: 0.95em;
    margin: 5px 0;
    flex: 1;
    min-width: 150px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    margin-left: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background-color: #ccc;
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2e7d32;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2e7d32;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.btn-edit, .btn-view {
    background: none;
    border: 1px solid #2e7d32;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-edit:hover, .btn-view:hover {
    background: #e8f5e9;
}

.btn-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1em;
    padding: 5px;
    transition: color 0.2s ease;
}

.btn-remove:hover {
    color: #f44336;
}

.btn-add-payment, .btn-add-address {
    width: 100%;
    padding: 10px;
    background: #f8f9fa;
    border: 1px dashed #ccc;
    border-radius: 4px;
    color: #666;
    cursor: pointer;
    font-size: 0.95em;
    margin-top: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-payment:hover, .btn-add-address:hover {
    background: #f0f0f0;
    border-color: #999;
}

/* Payment Methods */
.payment-method {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 10px;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5em;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.payment-details {
    flex: 1;
}

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

.payment-expiry {
    font-size: 0.85em;
    color: #777;
}

/* Address Book */
.address-card {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    position: relative;
}

.address-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 500;
}

.address-details {
    color: #555;
    line-height: 1.5;
    margin: 5px 0 15px;
    font-size: 0.95em;
}

.address-actions {
    display: flex;
    gap: 10px;
}

/* Danger Zone */
.danger-zone .settings-header {
    background: #ffebee;
    border-color: #ffcdd2;
}

.danger-zone .settings-header i {
    color: #d32f2f;
}

.btn-danger {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.btn-danger:hover {
    background: #b71c1c;
}

/* About Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../assets/product home page/2.png') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #2e7d32;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.mission-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

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

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: #2e7d32;
    color: white;
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: white;
}

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

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-member:hover .team-img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2e7d32;
}

.team-member .position {
    color: #ff6f00;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .bio {
    color: #666;
    padding: 0 20px;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.testimonial {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

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

.customer-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.customer-info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 0.9rem;
}

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

.cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after, .contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #2e7d32;
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #2e7d32;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #2e7d32;
    font-size: 1.1rem;
    transition: all 0.3s ease-in-out;
}

.social-links a:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2e7d32;
}

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

.submit-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1b5e20;
}

/* Profile Section */
.profile-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.profile-sidebar {
    width: 300px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: fit-content;
}

.profile-pic {
    text-align: center;
    margin-bottom: 25px;
}

.profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2e7d32;
    margin-bottom: 15px;
}

.change-photo-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-photo-btn:hover {
    background: #e0e0e0;
}

.change-photo-btn i {
    margin-right: 5px;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: none;
    background: none;
    text-align: left;
    font-size: 0.95rem;
    color: #555;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-nav-btn i {
    width: 20px;
    text-align: center;
    color: #2e7d32;
}

.profile-nav-btn:hover, .profile-nav-btn.active {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 500;
}

.profile-nav-btn.active {
    background: #2e7d32;
    color: white;
}

.profile-nav-btn.active i {
    color: white;
}

.profile-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Profile Header */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-header h1 {
    margin: 0;
    color: #2e7d32;
    font-size: 1.8rem;
}

.profile-header p {
    margin: 8px 0 0;
    color: #666;
    font-size: 0.95rem;
}

/* Profile Card */
.profile-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.profile-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #81c784);
    border-radius: 4px 4px 0 0;
}

/* Form Elements */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    padding-left: 45px !important;
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    outline: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn i {
    font-size: 0.9em;
}

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

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #555;
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
    margin: 20px 0;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: #f0f7f0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-state-icon i {
    font-size: 32px;
    color: #2e7d32;
}

.empty-state h4 {
    margin: 15px 0 10px;
    color: #333;
    font-size: 1.3rem;
}

.empty-state p {
    color: #666;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }
    
    .profile-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .profile-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .empty-state {
        padding: 40px 20px;
    }
}

.profile-section {
    display: none;
}

.profile-section.active {
    display: block;
}

.profile-section h2 {
    color: #2e7d32;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

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

.profile-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="tel"],
.profile-form input[type="password"],
.profile-form select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.profile-form input:focus,
.profile-form select:focus {
    outline: none;
    border-color: #2e7d32;
}

.dob-fields {
    display: flex;
    gap: 10px;
}

.dob-fields select {
    flex: 1;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    margin: 0;
}

.btn-save, .btn-update-password {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-save:hover, .btn-update-password:hover {
    background: #1b5e20;
}

/* Addresses Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.btn-add-address {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.btn-add-address:hover {
    background: #1b5e20;
}

.addresses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.address-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.address-card.default {
    border: 2px solid #2e7d32;
    background: #f8f9f8;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.address-header h3 {
    margin: 0;
    color: #333;
}

.default-badge {
    background: #2e7d32;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.address-card p {
    margin: 5px 0;
    color: #555;
    line-height: 1.5;
}

.address-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-edit, .btn-remove, .btn-set-default {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-edit {
    background: #f0f7f0;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.btn-edit:hover {
    background: #e0f0e0;
}

.btn-remove {
    background: #fff5f5;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

.btn-remove:hover {
    background: #ffebee;
}

.btn-set-default {
    background: #f8f9f8;
    color: #555;
    border: 1px solid #ddd;
}

.btn-set-default:hover {
    background: #f0f0f0;
}

/* Wishlist Section */
.wishlist-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.empty-wishlist, .empty-orders {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    grid-column: 1 / -1;
}

.empty-wishlist i, .empty-orders i {
    font-size: 3rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.empty-wishlist h3, .empty-orders h3 {
    color: #333;
    margin-bottom: 10px;
}

.empty-wishlist p, .empty-orders p {
    color: #777;
    margin-bottom: 20px;
}

.btn-shop-now {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-shop-now:hover {
    background: #1b5e20;
}

/* Security Section */
.password-strength {
    margin: 15px 0 25px;
}

.strength-bar {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.strength-segment {
    height: 5px;
    flex: 1;
    background: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.85rem;
    color: #777;
}

.strength-text span {
font-weight: 500;
}

/* Settings Page Styles */
.settings-login-prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
    text-align: center;
}

.settings-login-prompt .login-prompt-content {
    max-width: 450px;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.settings-login-prompt i {
    font-size: 3.5rem;
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.settings-login-prompt h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.settings-login-prompt p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Settings Container */
.settings-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.settings-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.settings-header h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.settings-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.settings-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.settings-card .settings-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    margin: 0;
    text-align: left;
}

.settings-card .settings-header i {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-right: 1rem;
    background: #e8f5e9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-card .settings-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #2c3e50;
}

.settings-content {
    padding: 1.5rem;
}

.settings-group {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.settings-group:hover {
    background: #f1f1f1;
}

.settings-group label {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-value {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Buttons */
.btn-edit {
    background: #e8f5e9;
    color: #2e7d32;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

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

.btn-edit:hover {
    background: #d4edda;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
    }
    
    .settings-container {
        padding: 0 1rem;
    }
    
    .settings-login-prompt {
        padding: 1rem;
    }
    
    .settings-login-prompt .login-prompt-content {
        padding: 2rem 1.5rem;
    }
}

.profile-tab{
    padding: 10px;
}

/* Profile Page Styles */
.profile-container {
max-width: 800px;
margin: 0 auto;
padding: 30px 20px;
min-height: 60vh;
}

/* Login Prompt */
.profile-login-prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
}

.login-prompt-content {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    animation: fadeIn 0.3s ease-out;
}

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

.login-prompt-content i {
font-size: 48px;
color: #4CAF50;
margin-bottom: 20px;
}

.login-prompt-content h2 {
margin: 15px 0 10px;
color: #333;
}

.login-prompt-content p {
color: #666;
margin-bottom: 25px;
}

/* Profile Card */
.profile-card {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.profile-avatar {
margin-bottom: 25px;
}

.profile-avatar img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #f5f5f5;
}

.profile-info {
width: 100%;
max-width: 500px;
margin: 0 auto;
}

.info-row {
display: flex;
justify-content: space-between;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
border-bottom: none;
}

.info-label {
font-weight: 600;
color: #555;
}

.info-value {
color: #333;
}

.profile-actions {
margin-top: 30px;
display: flex;
gap: 15px;
justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.profile-card {
padding: 20px 15px;
}
  
.info-row {
flex-direction: column;
gap: 5px;
padding: 15px 0;
}
  
.info-label {
font-size: 0.9em;
}
  
.info-value {
font-size: 1em;
}
}

/* Orders Section */
.orders-container {
max-width: 1200px;
margin: 0 auto;
padding: 30px 20px;
}

.orders-container h1 {
color: #2e7d32;
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.order-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.order-info {
    display: flex;
    flex-direction: column;
}

.order-id {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.order-date {
    font-size: 0.85rem;
    color: #777;
}

.order-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
}

.order-status.pending {
    background: #fff3e0;
    color: #f57c00;
}

.order-status.processing {
    background: #e3f2fd;
    color: #1976d2;
}

.order-status.shipped {
    background: #e8f5e9;
    color: #2e7d32;
}

.order-status.delivered {
    background: #e8f5e9;
    color: #2e7d32;
}

.order-status.cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.order-items {
    padding: 15px 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item .item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #eee;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
}

.item-quantity, .item-price {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #666;
}

.item-price {
    font-weight: 600;
    color: #2e7d32;
}

.order-summary {
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.order-total {
    display: flex;
    justify-content: flex-end;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.order-total .amount {
    margin-left: 15px;
    color: #2e7d32;
}

.order-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-track, .btn-cancel, .btn-view-details, .btn-buy-again, .btn-rate {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-track, .btn-view-details, .btn-rate {
    background: #2e7d32;
    color: white;
    border: 1px solid #2e7d32;
}

.btn-track:hover, .btn-view-details:hover, .btn-rate:hover {
    background: #1b5e20;
    border-color: #1b5e20;
}

.btn-cancel {
    background: #fff5f5;
    color: #d32f2f;
    border: 1px solid #d32f2f;
}

.btn-cancel:hover {
    background: #ffebee;
}

.btn-buy-again {
    background: #f0f7f0;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.btn-buy-again:hover {
    background: #e0f0e0;
}

/* Order Status Tooltips */
.status-tooltip {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.2s, transform 0.2s;
}

.status-tooltip::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #333;
}

.order-status:hover + .status-tooltip,
.status-tooltip:hover {
    opacity: 1;
    transform: translateY(0);
}

/* Disabled Buttons */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .profile-container {
        flex-direction: column;
    }
    
    .profile-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .about-grid, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-image {
        order: -1;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-actions {
        justify-content: flex-start !important;
    }
    
    .order-item {
        flex-direction: column;
    }
    
    .order-item .item-image {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }
    
    .order-filters {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .order-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .order-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .profile-form .form-row {
        flex-direction: column;
    }
    
    .profile-form .form-row > * {
        width: 100%;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.2rem;
    }
    
    .about-content h2,
    .section-header h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .about-section, 
    .mission-section, 
    .team-section, 
    .testimonials-section, 
    .contact-section {
        padding: 50px 0;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Auth Modal */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
}

.auth-modal.active {
    display: flex;
    opacity: 1;
}

.auth-modal .modal-content {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #888;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-modal:hover {
    color: #333;
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: #2c3e50;
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
}

.auth-header p {
    color: #7f8c8d;
    margin: 0;
    font-size: 15px;
}

/* Google Sign In Button */
.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #fff;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin: 15px 0;
}

.google-signin-btn:hover {
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.google-signin-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Logout Button */
.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: #f8f9fa;
    color: #dc3545;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.logout-btn:hover {
    background-color: #fff5f5;
    border-color: #f8d7da;
}

.logout-btn i {
    margin-right: 8px;
}

/* Auth Forms */
.auth-forms {
    margin-top: 20px;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.close-modal:hover {
    color: #000;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #000;
}

.modal h2 {
    margin-top: 0;
    color: #2e7d32;
    margin-bottom: 25px;
}

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

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

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 30px;
}

.btn-cancel {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #555;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: #eee;
}

/* For mobile touch devices */
@media (hover: none) {
    .menu-icon:active .dropdown-menu,
    .menu-icon:focus .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Main Content */
main {
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* Cart & Wishlist */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.section-header h2 {
    padding: 15px 25px;
    margin: 0 10px 0 0;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.section-header h2.active {
    color: #2e7d32;
    border-bottom-color: #2e7d32;
}

.cart-content {
    display: none;
}

.cart-content.active {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cart-items {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-cart, .empty-wishlist {
    text-align: center;
    padding: 50px 20px;
}

.empty-cart i, .empty-wishlist i {
    font-size: 48px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-cart h3, .empty-wishlist h3 {
    color: #333;
    margin-bottom: 10px;
}

.empty-cart p, .empty-wishlist p {
    color: #666;
    margin-bottom: 20px;
}

.cart-summary {
    width: 350px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: fit-content;
}

.cart-summary h3 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #555;
}

.summary-row.total {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin: 20px 0;
    transition: background 0.3s ease;
}

.btn-checkout:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.btn-checkout:not(:disabled):hover {
    background: #1b5e20;
}

.payment-methods {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 24px;
    color: #555;
}

.btn-primary {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1b5e20;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cart-content.active {
        flex-direction: column;
    }
    
    .cart-summary {
        width: 100%;
    }
}

.hidden{
    display: none;
}

#products {
    padding: 100px 5px;
    max-width: 1100px;
    margin: 0 auto;
    scroll-margin-top: 80px; /* Helps with anchor links */
    position: relative;
    
}

/* Featured Products */
.featured-products {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.featured-products .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-title {
    text-align: center;
    margin-bottom: 40px;
}

.featured-title span {
    color: #2ED146;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.featured-title h2 {
    color: #333;
    font-size: 2.2rem;
    margin: 0;
    position: relative;
    display: inline-block;
}

.featured-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2ED146;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.featured-card {
    position: relative;
    border-radius: 79px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(203, 236, 206, 0.29) 0%, rgba(214, 236, 213, 0.37) 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 567px;
    display: flex;
    flex-direction: column;
    cursor: grab;
}

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

.featured-content {
    padding: 30px;
    width: 100%;
    height: 100%;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(15px);
    z-index: 2;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.46));
}

.featured-content h3 {
    font-size: 1.8rem;
    margin: 0 0 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured-content .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 10px 0 20px;
    display: block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured-btn {
    background: #2ED146;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-btn:hover {
    background: #25b83a;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Sections */
.section {
    padding: 60px 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #2ED146;
}

/* Products Section */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-container input:focus {
    border-color: #2ED146;
    outline: none;
    box-shadow: 0 0 10px rgba(46, 209, 70, 0.2);
}

.search-container i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

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

.product-card {
    position: relative;
    cursor: grab;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    border-color: rgba(244, 255, 234, 0.08);
}

.product-card__image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #f9f9f9;
}

.product-card__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    backface-visibility: hidden;
}

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

.product-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4d4d;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-card__wishlist {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.product-card__wishlist:hover {
    transform: scale(1.1);
    background: #fff;
}

.product-card__wishlist:hover {
    background: #ff4d4d;
    color: white;
    transform: scale(1.1);
}

.product-card__wishlist.active {
    background: #ff4d4d;
    color: white;
}

.product-card__content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin-top: -100px;
    padding-top: 40px;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%, #ffffff7d 10%, #ffffffeb 20%, #ffffff 50%, #ffffff 100%);
}

.product-card__price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
    margin-bottom: 5px;
}

.product-card h3 {
    color: #1a2e22;
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #0aaa1a;
}

.product-card__price {
    color: #0aaa1a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-card__original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.product-card__discount {
    background: rgba(255, 255, 255, 0.2);
    color: #ffcc80;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 6px;
    backdrop-filter: blur(5px);
}

.product-card__add-to-cart {
    font-family: "bricolage grotesque", sans-serif;
    background: #0aaa1a;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card__add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0aaa1a, #048e12);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.product-card__add-to-cart:hover::before {
    opacity: 0.9;
}

.product-card__add-to-cart:active {
    transform: translateY(1px);
}

.product-card__add-to-cart:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.product-card__category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #0aaa1a;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Testimonials Section */
#testimonials {
    background: #007011e0;
    color: #ffffff;
    margin-top: 125px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    position: relative;
    cursor: grab;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial span {
    font-weight: bold;
    color: #2ED146;
}

/* Promise Section */
#promise {
    margin-top: 100px; 
}

.promise-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.promise-item {
    text-align: center;
    padding: 30px 20px;
    background: rgb(227, 255, 227);
    border-radius: 40px;
    border: 1px solid rgba(0, 255, 13, 0.292);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    cursor: grab;
    transition: transform 0.3s ease;
}

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

.promise-item i {
    font-size: 2.5rem;
    color: #2ED146;
    margin-bottom: 15px;
}

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

.promise-item p {
    color: #777;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #191919;
    color: white;
    position: relative;
    padding: 0 40px;
    margin-top: 100px;
}

footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: #191919;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2ED146;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2ED146;
}

.social-links {
    margin: 30px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2ED146;
}

.copyright {
    margin-top: 30px;
    color: #777;
    font-size: 0.9rem;
}

.copyrightmain {
    margin-top: 290px; /* Match initial header height */
    transition: margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Adjust main content margin when header is scrolled */
header.scrolled + main {
    margin-top: 100px; /* Reduced height for scrolled header */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .promise-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .promise-item {
        min-width: 200px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    header {
        height: 320px;
        padding-bottom: 70px;
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .subtext {
        font-size: 1rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .featured-card {
        height: 280px;
        border-radius: 50px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .featured-content .price {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .featured-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .featured-products {
        padding: 30px 10px;
    }
    
    .featured-title {
        margin-bottom: 25px;
    }
    
    .featured-title h2 {
        font-size: 1.5rem;
    }
    
    .featured-title span {
        font-size: 0.8rem;
    }
    
    .featured-grid {
        gap: 12px;
        padding: 0 5px;
    }
    
    .featured-card {
        min-height: 100px;
        border-radius: 40px;
    }
    
    .featured-content {
        padding: 15px;
    }
    
    .featured-content h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .featured-content .price {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .featured-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        border-radius: 15px;
    }
    
    .about-content h2,
    .section-header h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 10px;
    }
    
    .promise-content {
        flex-direction: column;
        align-items: center;
    }
}

/* Auth Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
    display: flex;
}

.modal.show .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

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

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.auth-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #666;
    position: relative;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #007011;
    font-weight: 600;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007011;
}

/* Auth Forms */
.auth-form {
    margin-top: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #007011;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 112, 17, 0.1);
}

.auth-button {
    width: 100%;
    padding: 12px;
    background-color: #007011;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-button:hover {
    background-color: #005a0e;
    transform: translateY(-1px);
}

/* Google Sign-In Button */
.google-button {
    background-color: white;
    color: #444;
    border: 1px solid #ddd !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.google-button:hover {
    background-color: #f8f8f8;
    border-color: #ccc !important;
}

.google-icon {
    width: 18px;
    height: 18px;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #777;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.divider:not(:empty)::before {
    margin-right: 1em;
}

.divider:not(:empty)::after {
    margin-left: 1em;
}

.auth-links {
    margin-top: 15px;
    text-align: center;
}

.auth-links a {
    color: #007011;
    text-decoration: none;
    font-size: 14px;
}

/* User Section */
.user-info {
    text-align: center;
    padding: 20px 0;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar i {
    font-size: 40px;
    color: #666;
}

.user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.user-actions a, .user-actions button {
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.user-actions a {
    color: #007011;
    border: 1px solid #007011;
}

.user-actions a:hover {
    background: rgba(0, 112, 17, 0.1);
}

.logout-button {
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #e74c3c;
    cursor: pointer;
}

.logout-button:hover {
    background: #f0f0f0;
}

/* Admin Panel */
.admin-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.admin-panel.active {
    right: 0;
}

.admin-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.admin-content {
    padding: 20px;
}

.admin-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.stat-card h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 24px;
    font-weight: 600;
    color: #007011;
}

.table-responsive {
    overflow-x: auto;
}

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

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

tr:hover {
    background: #f8f9fa;
}

.promise-item {
    width: 100%;
    max-width: 300px;
}

/* Product Card Responsive Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card__content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #333;
    font-weight: 600;
}

.product-card__price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
}

.product-card__original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .product-card__content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .product-card__price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Hide section subtitles on small screens */
    .section-subtitle {
        display: none;
    }
    
    /* Base font size for all text */
    html {
        font-size: 12px;
    }
    
    /* Settings section fixes for small screens */
    #settings {
        overflow-x: hidden;
        width: 100%;
    }
    
    .settings-container {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .settings-container h1 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    /* Testimonials Section */
    #testimonials {
        margin-top: 25px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-card {
        display: flex;
        flex-direction: column;
    }
    
    .product-card__image-container {
        margin-bottom: 10px;
    }
    
    .product-card__content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .product-card__price {
        font-size: 1.2rem;
    }
    
    .product-card__add-to-cart {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .menu-icon {
        padding: 5px;
    }
    
    .dropdown-menu {
        min-width: 160px;
        right: -10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 5px;
    }
    
    .product-card {
        min-height: 160px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .product-card__image {
        height: 160px;
    }
    
    .product-card__content {
        padding: 10px;
        margin-top: -70px;
    }
    
    .product-card h3 {
        font-size: 0.75rem;
        margin-bottom: 4px;
        line-height: 1.2;
        min-height: 1.2em;
    }
    
    .product-card__price {
        font-size: 0.8rem !important;
        font-weight: 600;
    }
    
    .product-card__original-price {
        font-size: 0.65rem !important;
        text-decoration: line-through;
        opacity: 0.8;
    }
    
    .product-card__add-to-cart {
        padding: 5px 0;
        font-size: 1rem;
        margin-top: 4px;
    }
    
    .product-card__category {
        font-size: 0.4rem;
        padding: 1px 3px;
    }
    
    .product-card__wishlist {
        top: 5px;
        right: 5px;
    }
    
    .product-card__wishlist img {
        filter: hue-rotate(120deg);
        width: 30px;
        height: 30px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    header {
        height: 280px;
        padding: 10px 12px 40px;
    }

    header.scrolled {
        height: 50px !important;
    }
    
    .shop-button {
        bottom: -60px;
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .cart-icon {
        font-size: 1.5rem;
    }
    
    .product-card__category {
        font-size: 7px;
        padding: 2px 5px;
        top: 7px;
        left: 7px;
    }
    
    .product-card__wishlist {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.65rem !important;
    }
    
    .product-card__wishlist img {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.65rem !important;
    }
    
    .product-card__badge {
        font-size: 0.5rem !important;
        padding: 1px 3px !important;
        border-radius: 2px !important;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    /* Additional mobile text sizing */
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1.1rem; }
    p, li, a, button, input, label {
        font-size: 0.85rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .subtext {
        font-size: 0.9rem;
    }
}
