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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #d0e0e3;
    min-height: 100vh;
    line-height: 1.6;
    transition: visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

body.loaded {
    visibility: visible;
}
.stock.available {
    color: #28a745;
    font-weight: 600;
}
.stock.unavailable {
    color: #dc3545;
    font-weight: 600;
}
button[disabled] {
    background: #d3d8e0;
    cursor: not-allowed;
    opacity: 0.6;
}
.palpite-card {
    background: var(--neu-bg);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem;
    box-shadow: 6px 6px 12px var(--neu-shadow-dark), -6px -6px 12px var(--neu-shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
}
.palpite-card:hover {
    transform: translateY(-2px);
}
.admin-section {
    margin: 20px;
}
.admin-section h2 {
    color: #3d4468;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    color: #6c7293;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #e0e5ec;
    box-shadow: inset 5px 5px 10px #bec3cf, inset -5px -5px 10px #ffffff;
}
#productsTable, #usersTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
#productsTable th, #productsTable td,
#usersTable th, #usersTable td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #d3d8e0;
}
/* Header */
        .header {
            background-color: #40444C;
            padding: 20px 40px;
            box-shadow: 8px 8px 20px #bec3cf, -8px -8px 20px #ffffff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        header h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-color);
        }


.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3d4468;
}

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

.nav-buttons .neu-button {
    padding: 10px 20px;
    font-size: 14px;
    position: relative;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    background: #00c896;
    color: #fff;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -5px;
}

.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #6fa8dc;
    border-radius: 20px;
    box-shadow: 12px 12px 30px #bec3cf, -12px -12px 30px #ffffff;
}

.hero h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0 0 15px;
    font-weight: 700;
}

.hero p {
    color: #ffffff;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: #e0e5ec;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 8px 8px 20px #bec3cf, -8px -8px 20px #ffffff;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 30px #bec3cf, -12px -12px 30px #ffffff;
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #3d4468;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card p {
    color: #9499b7;
    font-size: 1rem;
    margin-bottom: 15px;
}

.product-card .price {
    color: #00c896;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer {
    background: #6fa8dc;
    padding: 40px 20px;
    box-shadow: inset 8px 8px 20px #bec3cf, inset -8px -8px 20px #ffffff;
    text-align: center;
    color: #ffffff;
    width: 100%;
    font-size: 20px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    color: #16537e;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    overflow-y: auto;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.login-container, .signup-container, .cart-container {
    width: 100%;
    max-width: 420px;
    margin: 20px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.show .login-container, .modal.show .signup-container, .modal.show .cart-container {
    transform: scale(1);
}

.login-card, .signup-card, .cart-card {
    background: #e0e5ec;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 10px 10px 40px #d8dbe3, -20px -20px 60px #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.login-card:hover, .signup-card:hover, .cart-card:hover {
    transform: translateY(-5px);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: #6c7293;
}

.login-header, .signup-header, .cart-header {
    text-align: center;
    margin-bottom: 30px;
}

.neu-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #e0e5ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 20px #bec3cf, -8px -8px 20px #ffffff;
    transition: all 0.3s ease;
}

.neu-icon:hover {
    box-shadow: 4px 4px 10px #bec3cf, -4px -4px 10px #ffffff, inset 4px 4px 10px #bec3cf, inset -4px -4px 10px #ffffff;
}

.icon-inner {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5c8d9;
}

.icon-inner svg {
    width: 100%;
    height: 100%;
}

.login-header h2, .signup-header h2, .cart-header h2 {
    color: #3d4468;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-header p, .signup-header p, .cart-header p {
    color: #9499b7;
    font-size: 14px;
    font-weight: 400;
}

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

.neu-input {
    position: relative;
    background: #e0e5ec;
    border-radius: 15px;
    box-shadow: inset 8px 8px 16px #bec3cf, inset -8px -8px 16px #ffffff;
    transition: all 0.3s ease;
}

.neu-input:focus-within {
    box-shadow: inset 4px 4px 8px #bec3cf, inset -4px -4px 8px #ffffff;
}

.neu-input input {
  background: #c5c8d9; /* fundo claro dentro do campo */
  border: none;
  padding: 20px 24px 20px 55px;
  color: #3d4468;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 10px; /* opcional, para suavizar o campo */
}


.neu-input input::placeholder {
    color: transparent;
}

.neu-input label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    color: #9499b7;
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s ease;
}

.neu-input input:focus + label,
.neu-input input:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 12px;
    color: #6c7293;
    transform: translateY(0);
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9499b7;
    transition: all 0.3s ease;
}

.input-icon svg {
    width: 100%;
    height: 100%;
}

.neu-input:focus-within .input-icon {
    color: #6c7293;
}

.password-group {
    padding-right: 50px;
}

.neu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #e0e5ec;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9499b7;
    box-shadow: 4px 4px 10px #bec3cf, -4px -4px 10px #ffffff;
    transition: all 0.3s ease;
}

.neu-toggle:hover {
    color: #6c7293;
}

.neu-toggle:active {
    box-shadow: inset 2px 2px 5px #bec3cf, inset -2px -2px 5px #ffffff;
}

.neu-toggle svg {
    width: 18px;
    height: 18px;
}

.eye-closed {
    display: none;
}

.neu-toggle.show-password .eye-open {
    display: none;
}

.neu-toggle.show-password .eye-closed {
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 16px;
}

.remember-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    color: #6c7293;
    font-size: 14px;
    font-weight: 500;
}

.neu-checkbox {
    width: 22px;
    height: 22px;
    background: #e0e5ec;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 8px #bec3cf, -3px -3px 8px #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .neu-checkbox {
    box-shadow: inset 2px 2px 5px #bec3cf, inset -2px -2px 5px #ffffff;
}

.neu-checkbox svg {
    width: 14px;
    height: 14px;
    color: #00c896;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .neu-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.forgot-link {
    color: #6c7293;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #3d4468;
}

.neu-button {
    width: 100%;
    background: #e0e5ec;
    border: none;
    border-radius: 15px;
    padding: 18px 32px;
    color: #3d4468;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 8px 8px 20px #bec3cf, -8px -8px 20px #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.neu-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.neu-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 12px 12px 30px #bec3cf, -12px -12px 30px #ffffff;
}

.neu-button:hover:not(:disabled)::before {
    left: 100%;
}

.neu-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: inset 4px 4px 10px #bec3cf, inset -4px -4px 10px #ffffff;
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neu-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #bec3cf;
    border-top: 3px solid #6c7293;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.neu-button.loading .btn-text {
    opacity: 0;
}

.neu-button.loading .btn-loader {
    opacity: 1;
}

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    gap: 16px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #bec3cf, transparent);
}

.divider span {
    color: #9499b7;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.neu-social {
    width: 50px;
    height: 50px;
    background: #e0e5ec;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7293;
    box-shadow: 6px 6px 15px #bec3cf, -6px -6px 15px #ffffff;
    transition: all 0.3s ease;
}

.neu-social:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 20px #bec3cf, -8px -8px 20px #ffffff;
}

.neu-social:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 8px #bec3cf, inset -3px -3px 8px #ffffff;
}

.neu-social svg {
    width: 22px;
    height: 22px;
}

.signup-link, .login-link {
    text-align: center;
}

.signup-link p, .login-link p {
    color: #9499b7;
    font-size: 14px;
}

.signup-link a, .login-link a {
    color: #6c7293;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover, .login-link a:hover {
    color: #3d4468;
}

.error-message {
    color: #ff3b5c;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    margin-left: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error .neu-input,
.form-options.error .neu-checkbox {
    box-shadow: inset 8px 8px 16px #ffb8c4, inset -8px -8px 16px #ffffff, 0 0 0 2px #ff3b5c;
}

.form-options.error .checkbox-label {
    color: #ff3b5c;
    font-weight: bold;
    animation: pulse 1.5s infinite ease-in-out;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-message .neu-icon {
    background: #e0e5ec;
    color: #00c896;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #3d4468;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.success-message p {
    color: #9499b7;
    font-size: 14px;
}

.file-input {
    margin-bottom: 28px;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px 20px 55px;
    color: #9499b7;
    font-size: 16px;
    cursor: pointer;
    background: #e0e5ec;
    border-radius: 15px;
    box-shadow: inset 8px 8px 16px #bec3cf, inset -8px -8px 16px #ffffff;
    transition: all 0.3s ease;
}

.neu-input input[type="file"] {
    display: none;
}

.file-input-label span {
    flex-grow: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input-label:hover {
    color: #6c7293;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item img {
    border-radius: 8px;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
}

.cart-item p {
    color: #3d4468;
    font-size: 1rem;
}

.cart-total {
    text-align: right;
    margin-bottom: 20px;
}

.cart-total p {
    color: #3d4468;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-total span {
    color: #00c896;
}

.terms-modal-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
    background: #e0e5ec;
    border-radius: 12px;
    box-shadow: inset 8px 8px 16px #bec3cf, inset -8px -8px 16px #ffffff;
    margin-bottom: 20px;
    color: #3d4468;
    font-size: 14px;
    line-height: 1.8;
}

.terms-modal-content h3 {
    color: #3d4468;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.terms-modal-content p {
    color: #6c7293;
    margin-bottom: 15px;
}

.terms-modal-content::-webkit-scrollbar {
    width: 8px;
}

.terms-modal-content::-webkit-scrollbar-track {
    background: #e0e5ec;
    border-radius: 4px;
    box-shadow: inset 2px 2px 4px #bec3cf, inset -2px -2px 4px #ffffff;
}

.terms-modal-content::-webkit-scrollbar-thumb {
    background: #6c7293;
    border-radius: 4px;
}

.terms-modal-content::-webkit-scrollbar-thumb:hover {
    background: #3d4468;
}

.terms-agree-btn {
    width: 200px;
    margin: 0 auto;
    background: #e0e5ec;
    border: none;
    border-radius: 15px;
    padding: 18px 32px;
    color: #3d4468;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 8px 8px 20px #bec3cf, -8px -8px 20px #ffffff;
    transition: all 0.3s ease;
}

.terms-agree-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.terms-agree-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 12px 12px 30px #bec3cf, -12px -12px 30px #ffffff;
}

.terms-agree-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: inset 4px 4px 10px #bec3cf, inset -4px -4px 10px #ffffff;
}

@keyframes gentleShake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

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

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .nav-buttons .neu-button {
        width: 100%;
        max-width: 200px;
    }

    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 2rem;
        margin: 0 0 12px;
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-card {
        padding: 15px;
    }

    .product-card img {
        height: 180px;
    }

    .login-container, .signup-container, .cart-container {
        max-width: 50%;
        margin: 1px;
    }

    .login-card, .signup-card, .cart-card {
        padding: 25px;
        border-radius: 15px;
    }

    .login-header h2, .signup-header h2, .cart-header h2 {
        font-size: 1.5rem;
    }

    .login-header p, .signup-header p, .cart-header p {
        font-size: 13px;
    }

    .neu-icon {
        width: 60px;
        height: 60px;
    }

    .icon-inner {
        width: 30px;
        height: 30px;
    }

    .neu-input input {
        padding: 18px 20px 18px 50px;
        font-size: 14px;
    }

    .neu-input label {
        left: 50px;
        font-size: 14px;
    }

    .neu-input input:focus + label,
    .neu-input input:not(:placeholder-shown) + label {
        top: 6px;
        font-size: 10px;
    }

    .input-icon {
        left: 15px;
        width: 18px;
        height: 18px;
    }

    .password-group {
        padding-right: 40px;
    }

    .neu-toggle {
        width: 30px;
        height: 30px;
        right: 10px;
    }

    .neu-toggle svg {
        width: 16px;
        height: 16px;
    }

    .form-options {
        margin-bottom: 20px;
        gap: 10px;
    }

    .checkbox-label {
        font-size: 12px;
    }

    .neu-checkbox {
        width: 20px;
        height: 20px;
    }

    .neu-checkbox svg {
        width: 12px;
        height: 12px;
    }

    .forgot-link {
        font-size: 12px;
    }

    .neu-button {
        padding: 14px 28px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .divider {
        margin: 20px 0;
        gap: 10px;
    }

    .divider span {
        font-size: 11px;
    }

    .social-login {
        gap: 10px;
    }

    .neu-social {
        width: 45px;
        height: 45px;
    }

    .neu-social svg {
        width: 20px;
        height: 20px;
    }

    .signup-link p, .login-link p {
        font-size: 12px;
    }

    .error-message {
        font-size: 11px;
        margin-left: 15px;
    }

    .success-message {
        padding: 30px 15px;
    }

    .success-message h3 {
        font-size: 1.3rem;
    }

    .success-message p {
        font-size: 13px;
    }

    .file-input-label {
        padding: 18px 20px 18px 50px;
        font-size: 14px;
    }

    .cart-items {
        max-height: 200px;
    }

    .cart-item p {
        font-size: 0.9rem;
    }

    .cart-total p {
        font-size: 1.1rem;
    }

    .terms-modal-content {
        max-height: 300px;
        padding: 15px;
        font-size: 13px;
    }

    .terms-modal-content h3 {
        font-size: 1.1rem;
    }

    .terms-modal-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .terms-agree-btn {
        width: 150px;
        padding: 14px 28px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .header {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav a {
        margin: 0 10px;
        font-size: 14px;
    }

    .hero {
        padding: 20px 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin: 0 0 10px;
    }

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

    .product-grid {
        gap: 15px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 100px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .product-card .price {
        font-size: 1rem;
    }

    .login-container, .signup-container, .cart-container {
        max-width: 50%;
        margin: 1px;
    }

    .login-card, .signup-card, .cart-card {
        padding: 20px;
        border-radius: 12px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .social-login {
        flex-direction: column;
        align-items: center;
    }

    .neu-social {
        width: 50px;
        height: 50px;
    }

    .file-input-label {
        padding: 16px 18px 16px 45px;
        font-size: 13px;
    }

    .terms-modal-content {
        max-height: 250px;
        padding: 10px;
        font-size: 12px;
    }

    .terms-modal-content h3 {
        font-size: 1rem;
    }

    .terms-modal-content p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .terms-agree-btn {
        width: 120px;
        padding: 12px 24px;
        font-size: 12px;
    }
}