/*
Theme Name: Sattvo
Author: Your Name
Version: 1.0
*/
.sattvo-shop-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sattvo-shop-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f5dc;
    color: #1f2937;
}

.sattvo-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
    margin-bottom: 2rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff6b35;
    cursor: pointer;
    user-select: none;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: #ff6b35;
}

.search-btn {
    padding: 0.75rem 1.25rem;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.search-btn svg {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff6b35;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    position: relative;
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.cart-btn svg {
    display: block;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.admin-badge {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-logout {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-logout:hover {
    background: #dc2626;
}

.sattvo-shop-wrapper .page {
    display: none;
    min-height: calc(100vh - 80px);
}

.sattvo-shop-wrapper .page.active {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    color: #1f2937;
    border-radius: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.hero-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    background: #e55a2b;
}

.categories-section {
    margin: 3rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #f3f4f6;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #ff6b35;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info-card {
    padding: 1.25rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.product-original-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-rating {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.product-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ff6b35;
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.back-btn {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #e5e7eb;
}

.product-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #ff6b35;
}

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.reviews {
    color: #6b7280;
    font-size: 0.875rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.original-price {
    font-size: 1.25rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

.size-section,
.quantity-section {
    margin-bottom: 2rem;
}

.size-options {
    display: flex;
    gap: 1rem;
}

.size-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: #ff6b35;
}

.size-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s;
}

.qty-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.qty-display {
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.features {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 1.5rem;
}

.description-section {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
}

.description-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.description-text {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-list li {
    color: #374151;
}

.cart-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

.cart-header {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.cart-item-details {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: 0.5rem;
}

.remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.remove-btn:hover {
    background: #dc2626;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.cart-summary {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
    margin-top: 2rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.total-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

.checkout-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

.checkout-header {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.form-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.payment-option {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #ff6b35;
}

.payment-option.active {
    background: #fff7ed;
    border-color: #ff6b35;
}

.order-summary-box {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #374151;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.success-container {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    max-width: 600px;
    margin: 4rem auto;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.login-container {
    max-width: 450px;
    margin: 4rem auto;
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.login-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.login-subtitle {
    color: #6b7280;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: none;
}

.back-to-home {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #ff6b35;
}

.admin-dashboard {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 1.75rem;
    color: #1f2937;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.stat-card h3 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.admin-product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
}

.admin-product-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-actions {
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    border-top: 2px solid #f3f4f6;
}

.btn-edit {
    flex: 1;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-edit:hover {
    background: #2563eb;
}

.btn-delete {
    flex: 1;
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-delete:hover {
    background: #dc2626;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.close-btn {
    background: #f3f4f6;
    color: #374151;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.close-btn:hover {
    background: #e5e7eb;
}

.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .product-detail-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .image-section {
        position: static;
    }

    .container {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
        order: 1;
    }

    .search-container {
        order: 3;
        margin: 0.75rem 0 0 0;
        max-width: 100%;
        width: 100%;
        flex-basis: 100%;
    }

    .nav-menu {
        order: 2;
        gap: 1rem;
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .header-actions {
        order: 2;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .category-card {
        padding: 0.75rem 0.25rem;
        min-height: 50px;
    }

    .category-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .hero {
        padding: 2.5rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: auto;
    }

    .product-detail-grid {
        gap: 1.5rem;
    }

    .main-image {
        height: 300px;
    }

    .size-options {
        flex-wrap: wrap;
    }

    .size-btn {
        padding: 0.6rem 1.2rem;
    }

    .container {
        padding: 1rem;
    }

    h2 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .cart-btn {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .category-card {
        padding: 0.6rem 0.2rem;
        min-height: 45px;
        border-radius: 0.5rem;
    }

    .category-name {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== FOOTER STYLES START ==================== */

.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #d1d5db;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.6rem 1rem;
    flex: 1 1 140px;
    max-width: 200px;
}

.trust-badge-icon {
    font-size: 1.4rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.brand-logo {
    font-size: 1.75rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(4px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1rem;
    color: #ff6b35;
    min-width: 18px;
    margin-top: 2px;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-3px);
    border-color: #ff6b35;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: 2px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: white;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ff6b35;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s;
    width: 100%;
}

.newsletter-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Track Order — hidden by default */
.footer-track-section {
    display: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-bottom-content a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom-content a:hover { color: #ff6b35; }

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.payment-label {
    color: #9ca3af;
    font-weight: 600;
    font-size: 0.8rem;
}

.payment-icon {
    background: white;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==================== RESPONSIVE FOOTER ==================== */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid > .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-content {
        padding: 2rem 1rem 1rem;
    }

    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        justify-content: unset;
    }

    .trust-badge {
        flex: unset;
        max-width: none;
        font-size: 0.78rem;
        padding: 0.5rem 0.75rem;
        width: 100%;
    }

    .trust-badge-icon {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-grid > .footer-section:first-child {
        grid-column: auto;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 0.75rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 380px) {
    .trust-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.5rem;
        gap: 0.4rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ==================== FOOTER STYLES END ==================== */

/* ==================== TOAST NOTIFICATION - FIXED ==================== */

/* Hide any WordPress/WooCommerce default notices that appear at bottom */
.woocommerce-message,
.woocommerce-info,
.woocommerce-notice,
.wp-admin-notice,
.notice,
.updated,
.update-nag {
    display: none !important;
}

/* Sattvo Custom Toast - TOP RIGHT position */
#sattvoToast {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
    background: #111827;
    color: #fff;
    padding: 14px 18px;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    min-width: 270px;
    max-width: 360px;
    border-left: 4px solid #ff6b35;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show state - slide in from right */
#sattvoToast.show {
    display: flex;
    transform: translateX(0);
}

.sattvo-toast-icon {
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.sattvo-toast-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 2px;
    line-height: 1.2;
}

.sattvo-toast-msg {
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.3;
}

/* Mobile toast adjustment */
@media (max-width: 480px) {
    #sattvoToast {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
        min-width: unset;
        transform: translateY(-120%);
    }

    #sattvoToast.show {
        transform: translateY(0);
    }
}

/* ==================== TOAST NOTIFICATION END ==================== */