/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}



/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

.small-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: sticky;
    z-index: 1000;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: #ff523b;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff523b;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}

.cart-icon i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.cart-icon:hover i {
    color: #ff523b;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff523b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Menu Icon */
.menu-icon {
    width: 28px;
    display: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    transform: scale(1.1);
}

/* Layout */
.row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-around;

}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-4 {
    flex-basis: 25%;
    padding: 15px;
    min-width: 200px;
    margin-bottom: 50px;
    display: flex;
    align-items: stretch;
}

/* Header */
.header {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 214, 214, 0.8)), url('bg-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.header .row {
    margin-top: 0;
}

.col-2 h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 25px 0;
    color: #333;
    font-weight: 700;
}

.col-2 p {
    font-size: 1.1rem;
    color: #666;
    margin: 20px 0;
    line-height: 1.8;
}

.col-2 img {
    max-width: 100%;
    padding: 50px 0;
    transition: transform 0.3s ease;
}

.col-2 img:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff523b, #ff6b6b);
    color: #fff;
    padding: 15px 40px;
    margin: 30px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 82, 59, 0.3);
}

.btn:hover {
    background: linear-gradient(45deg, #e63946, #ff523b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 82, 59, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ff523b;
    padding: 15px 40px;
    margin: 30px 0;
    border: 2px solid #ff523b;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #ff523b;
    color: #fff;
    transform: translateY(-2px);
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h4 {
    color: #333;
    font-weight: 600;
    margin: 10px 0;
    font-size: 1.1rem;
}

.product-rating {
    color: #ffa500;
    margin: 5px 0;
    font-size: 14px;
}

.rating-count {
    color: #666;
    font-size: 12px;
}

.price {
    color: #ff523b;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 10px 0;
}

.add-to-cart {
    background: linear-gradient(45deg, #ff523b, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #e63946, #ff523b);
    transform: translateY(-2px);
}

.add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Section Titles */
.title {
    text-align: center;
    margin: 0 auto 60px;
    position: relative;
    line-height: 80px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

.title::after {
    content: '';
    background: linear-gradient(45deg, #ff523b, #ff6b6b);
    width: 100px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Offer Section */
.offer {
    background: linear-gradient(135deg, #fff 0%, #ffd6d6 100%);
    margin-top: 80px;
    padding: 60px 0;
}

.exclusive-tag {
    color: #ff523b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.col-2 .offer-img {
    padding: 50px;
    transition: transform 0.3s ease;
}

.col-2 .offer-img:hover {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 24px;
    color: #ff523b;
    margin-right: 20px;
    min-width: 30px;
}

.feature-item h4 {
    margin-bottom: 5px;
    color: #333;
}

.feature-item p {
    color: #666;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #ff523b 0%, #ff6b6b 100%);
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #fff;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form button {
    margin: 0;
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}

.footer p {
    color: #8a8a8a;
    line-height: 1.8;
}

.footer h3 {
    color: #fff;
    font-weight: 600;
    padding-top: 7px;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
    min-width: 250px;
}

.footer-col-1 {
    flex-basis: 30%;
}

.footer-col-2 {
    flex: 1;
    text-align: center;
}

.footer-col-2 img {
    width: 250px;
    margin-bottom: 20px;
}

.footer-col-3, .footer-col-4 {
    flex-basis: 12%;
    text-align: center;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #ff523b;
}

.app-logo {
    margin-top: 20px;
}

.app-logo img {
    width: 140px;
    margin: 5px;
    transition: transform 0.3s ease;
}

.app-logo img:hover {
    transform: scale(1.05);
}

.footer hr {
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}

.copyright {
    text-align: center;
    color: #8a8a8a;
}

/* Products Page Styles */
.products-header {
    background: linear-gradient(135deg, #fff 0%, #ffd6d6 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.filter-section {
    margin-bottom: 40px;
}

.search-box {
    position: relative;
    max-width: 400px;
    margin: 0 auto 30px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e1e1e1;
    border-radius: 50px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff523b;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-controls select {
    padding: 10px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 25px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.price-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-filter label {
    font-size: 14px;
    margin-bottom: 5px;
}

.price-filter input[type="range"] {
    width: 150px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.load-more-section {
    text-align: center;
}

/* Product Card Enhancements */
.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.quick-view-btn:hover {
    transform: scale(1.05);
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.color-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: transform 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-dot.black { background: #000; }
.color-dot.brown { background: #8B4513; }
.color-dot.beige { background: #F5F5DC; }
.color-dot.multicolor { background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff); }
.color-dot.blue { background: #0000FF; }
.color-dot.red { background: #FF0000; }
.color-dot.natural { background: #D2B48C; }
.color-dot.white { background: #FFFFFF; }
.color-dot.grey { background: #808080; }
.color-dot.olive { background: #808000; }
.color-dot.navy { background: #000080; }
.color-dot.khaki { background: #F0E68C; }
.color-dot.pink { background: #FFC0CB; }
.color-dot.purple { background: #800080; }
.color-dot.yellow { background: #FFFF00; }
.color-dot.green { background: #008000; }
.color-dot.tan { background: #D2691E; }

.out-of-stock {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-spinner {
    text-align: center;
}

.loading-spinner i {
    font-size: 48px;
    color: #ff523b;
    margin-bottom: 20px;
}

.loading-spinner p {
    color: #333;
    font-weight: 600;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.show {
    opacity: 1;
    visibility: visible;
}

.quick-view-modal .modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.quick-view-modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.quick-view-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.quick-view-image {
    flex: 1;
}

.quick-view-image img {
    width: 100%;
    border-radius: 15px;
}

.quick-view-details {
    flex: 1;
}

.color-selection {
    margin: 20px 0;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.color-option {
    cursor: pointer;
}

.color-option input {
    display: none;
}

.color-option .color-dot {
    width: 25px;
    height: 25px;
    border: 3px solid transparent;
}

.color-option input:checked + .color-dot {
    border-color: #ff523b;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Cart Page Styles */
.cart-page {
    padding: 80px 0;
    min-height: 70vh;
}

.cart-container {
    margin-bottom: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 100px 50px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.item-image img {
    width: 100%;
    border-radius: 10px;
}

.item-details h3 {
    color: #333;
    margin-bottom: 5px;
}

.item-price {
    color: #ff523b;
    font-weight: 600;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 2px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #f0f0f0;
}

.quantity-input {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.item-total {
    font-weight: 600;
    color: #333;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background: #c0392b;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: #666;
    margin-bottom: 10px;
}

.cart-summary {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    margin-left: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    border-top: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.coupon-section {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-section input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.apply-coupon-btn {
    background: #ff523b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.apply-coupon-btn:hover {
    background: #e63946;
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cart-actions .btn,
.cart-actions .btn-secondary {
    flex: 1;
    text-align: center;
    margin: 0;
    padding: 15px;
}

/* Cart Notifications */
.cart-notification {
    position: fixed;
    top: 20px;
    right: -300px;
    background: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    z-index: 10000;
    transition: right 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cart-notification.show {
    right: 20px;
}

.cart-notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.cart-notification.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.cart-notification.info {
    background: linear-gradient(135deg, #17a2b8, #007bff);
}

/* Checkout Page Styles */
.checkout-page {
    padding: 80px 0;
}

.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    color: #999;
    transition: color 0.3s ease;
}

.progress-step.active {
    color: #ff523b;
}

.progress-step.completed {
    color: #28a745;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.progress-step.active .step-number {
    background: #ff523b;
    color: white;
}

.progress-step.completed .step-number {
    background: #28a745;
    color: white;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-section h2 {
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #ff523b;
}

.input-group input.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.payment-option input:checked + label {
    border-color: #ff523b;
    background: #fff5f5;
}

.checkout-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.checkout-actions .btn,
.checkout-actions .btn-secondary {
    flex: 1;
    text-align: center;
    margin: 0;
}

.order-summary {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.order-summary h3 {
    color: #333;
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.order-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.order-item-details h4 {
    color: #333;
    margin-bottom: 5px;
}

.order-item-details p {
    color: #666;
    font-size: 14px;
    margin: 2px 0;
}

.order-item-price {
    color: #ff523b;
    font-weight: 600;
}

.order-totals {
    margin: 20px 0;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #28a745;
    font-size: 14px;
    margin-top: 20px;
}

/* Success Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.show {
    display: flex;
}

.modal .modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.success-icon i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions .btn,
.modal-actions .btn-secondary {
    flex: 1;
    margin: 0;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, #fff 0%, #ffd6d6 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.contact-page {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff523b, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-content h3 {
    color: #333;
    margin-bottom: 5px;
}

.contact-content p {
    color: #666;
    margin: 2px 0;
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #ff523b;
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #333;
    margin-bottom: 30px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #ff523b;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    background: white;
    display: none;
}

.faq-answer p {
    padding: 20px 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, #fff 0%, #ffd6d6 100%);
    padding: 80px 0 40px;
    text-align: center;
}

.about-page {
    padding: 80px 0;
}

.story-section {
    margin-bottom: 80px;
}

.story-image {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: scale(1.02);
}

.values-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 20px;
}

.section-title {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff523b, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.value-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff523b;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

.team-section {
    margin: 80px 0;
}

.team-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #333;
    margin-bottom: 5px;
}

.member-role {
    color: #ff523b;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #ff523b;
    color: white;
}

.sustainability-section {
    background: #f9f9f9;
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 20px;
}

.sustainability-features {
    margin-top: 30px;
}

.sustainability-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.sustainability-item i {
    font-size: 24px;
    color: #28a745;
    margin-top: 5px;
    min-width: 30px;
}

.sustainability-item h4 {
    color: #333;
    margin-bottom: 5px;
}

.sustainability-item p {
    color: #666;
    line-height: 1.6;
}

.sustainability-image {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.sustainability-image:hover {
    transform: scale(1.02);
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #ff523b 0%, #ff6b6b 100%);
    border-radius: 20px;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    background: white;
    color: #ff523b;
    margin: 0;
}

.cta-buttons .btn:hover {
    background: #f0f0f0;
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
    margin: 0;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #ff523b;
}

/* Account Page */
.account-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #ffd6d6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.account-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-opacity="1"/><stop offset="100%" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="%23ff523b" fill-opacity="0.1"/><circle cx="30" cy="10" r="8" fill="%23ff6b6b" fill-opacity="0.08"/><circle cx="50" cy="10" r="6" fill="%23ff523b" fill-opacity="0.06"/><circle cx="70" cy="10" r="4" fill="%23ff6b6b" fill-opacity="0.1"/><circle cx="90" cy="10" r="2" fill="%23ff523b" fill-opacity="0.12"/></svg>') repeat;
    opacity: 0.4;
    animation: floatingBg 20s ease-in-out infinite;
}

@keyframes floatingBg {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(20px); }
}

.account-page .row {
    position: relative;
    z-index: 2;
}

.form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 450px;
    min-height: 820px;
    position: relative;
    text-align: center;
    padding: 40px 20px 130px;
    margin: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(255, 82, 59, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff523b, #ff6b6b, #ff8a80, #ff523b);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.form-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 6px;
    position: relative;
    margin: 30px auto 40px;
    width: 280px;
}

.form-container span {
    font-weight: 600;
    padding: 12px 24px;
    color: #666;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-size: 15px;
}

.form-container span.active {
    color: #fff;
    background: linear-gradient(135deg, #ff523b, #ff6b6b);
    box-shadow: 0 4px 15px rgba(255, 82, 59, 0.3);
    transform: translateY(-1px);
}

.form-container span:hover:not(.active) {
    color: #ff523b;
    background: rgba(255, 82, 59, 0.1);
}

.form-container form {
    max-width: 380px;
    padding: 0 35px;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
    height: auto;
    min-height: 580px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

#RegForm .input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    padding-left: 5px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
    font-size: 16px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    height: 52px;
    padding: 0 20px 0 50px;
    border: 2px solid #e8ecf0;
    border-radius: 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
    font-weight: 500;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #ff523b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 82, 59, 0.1);
    transform: translateY(-1px);
}

.input-wrapper input:focus ~ i,
.input-wrapper input:not(:placeholder-shown) ~ i {
    color: #ff523b;
}

.input-wrapper input::placeholder {
    color: #aaa;
    font-weight: 400;
}

form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0 12px;
    height: 52px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 82, 59, 0.3);
    position: relative;
    overflow: hidden;
}

#RegForm .btn {
    margin: 15px 0 10px;
}

form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

form .btn:hover::before {
    left: 100%;
}

form .btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 82, 59, 0.4);
}

form .btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 82, 59, 0.3);
}

.forgot-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 12px;
    display: inline-block;
}

.forgot-link:hover {
    color: #ff523b;
    background: rgba(255, 82, 59, 0.1);
}

#LoginForm {
    left: 50%;
    transform: translateX(-150%);
    opacity: 0;
    visibility: hidden;
}

#LoginForm.active {
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
}

#RegForm {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
}

#RegForm.active {
    transform: translateX(-50%);
    opacity: 1;
    visibility: visible;
}

#RegForm:not(.active) {
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
}

#Indicator {
    display: none;
}

/* Security Features */
.security-features {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 10px;
    display: flex;
    gap: 3px;
    font-size: 11px;
    color: #666;
    justify-content: space-evenly;
    align-items: center;
}

.security-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    max-width: 90px;
}

.security-feature i {
    color: #28a745;
    font-size: 14px;
    margin-bottom: 1px;
}

.security-feature span {
    font-size: 9px;
    font-weight: 600;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    line-height: 1.2;
    max-width: 80px;
}

/* Social Login Options */
.social-login {
    margin: 20px 0;
    position: relative;
}

.divider {
    text-align: center;
    margin: 20px 0 15px;
    position: relative;
    color: #999;
    font-size: 14px;
}

#RegForm .divider {
    margin: 15px 0 12px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8ecf0;
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 15px;
    position: relative;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    height: 45px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.social-btn:hover {
    border-color: #ff523b;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.google {
    color: #4285f4;
}

.social-btn.facebook {
    color: #1877f2;
}

.social-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Enhanced Input Focus States */
.input-wrapper.focused i {
    color: #ff523b;
    transform: translateY(-50%) scale(1.1);
}

.input-group.focused label {
    color: #ff523b;
}

/* Loading states */
.btn:disabled {
    opacity: 0.7;
    transform: none !important;
    cursor: not-allowed;
}

.btn:disabled:hover {
    box-shadow: 0 4px 15px rgba(255, 82, 59, 0.3) !important;
    transform: none !important;
}

/* Enhanced security badge styling */

.security-feature {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.security-features:hover .security-feature {
    opacity: 1;
}

.security-feature:hover {
    transform: translateY(-1px);
}

/* Enhanced form animations */
@keyframes slideInFromRight {
    from {
        transform: translateX(50%) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-150%) translateX(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%);
        opacity: 1;
    }
}

#RegForm.active {
    animation: slideInFromRight 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#LoginForm.active {
    animation: slideInFromLeft 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Responsive Design */
@media only screen and (max-width: 800px) {
    .navbar {
        padding: 15px 0;
        position: relative;
    }
    
    nav ul {
        position: absolute;
        left: 50px;
        right: 0;
        background: linear-gradient(135deg, #333 0%, #444 100%);
        width: calc(100% - 60px);
        margin-right: 60px;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        z-index: 999;
        max-height: 0px;
    }
    
    nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        color: #fff;
        display: block;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    
    nav ul li a:hover {
        background: rgba(255, 82, 59, 0.2);
        color: #ff523b;
        padding-left: 40px;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .menu-icon {
        display: block;
        filter: brightness(0.8);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1001;
        padding: 5px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        margin-left: 7px;
    }
    
    .menu-icon:hover {
        filter: brightness(1);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .cart-icon {
        margin-right: 15px;
        position: relative;
        z-index: 1001;
    }
    
    .cart-icon i {
        font-size: 26px;
    }
    
    .cart-count {
        width: 22px;
        height: 22px;
        font-size: 13px;
        top: -10px;
        right: -10px;
    }
    
    .header {
        padding: 30px 0;
        min-height: 60vh;
    }
    
    .col-2 {
        flex-basis: 100%;
        min-width: auto;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .col-2 h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin: 20px 0;
        padding: 0 15px;
    }
    
    .col-2 p {
        font-size: 1rem;
        margin: 15px 0;
        padding: 0 20px;
        line-height: 1.6;
    }
    
    .col-2 img {
        max-width: 85%;
        padding: 30px 0;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 16px;
        margin: 25px 10px;
        min-height: 48px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .btn-secondary {
        padding: 16px 35px;
        font-size: 16px;
        margin: 25px 10px;
        min-height: 48px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .title {
        font-size: 2rem;
        line-height: 1.3;
        margin: 0 auto 60px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        margin-bottom: 15px;
    }

    .filter-controls {
        flex-direction: column;
        gap: 15px;
    }

    .small-container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .col-4 {
        flex-basis: 100%;
        padding: 10px;
        margin-bottom: 30px;
        min-width: auto;
    }
    
    .product-card {
        padding: 15px;
        margin: 0 auto;
        max-width: 320px;
    }
    
    .product-card img {
        margin-bottom: 12px;
    }
    
    .product-card h4 {
        font-size: 1rem;
        margin: 8px 0;
    }
    
    .add-to-cart {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
        border-radius: 25px;
    }
    
    .feature-item {
        margin-bottom: 20px;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .feature-item i {
        font-size: 20px;
        margin-right: 15px;
        min-width: 25px;
    }

    .cart-item {
        grid-template-columns: 70px 1fr 90px 60px 35px;
        gap: 8px;
        padding: 15px 10px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .item-image img {
        border-radius: 8px;
    }
    
    .item-details h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }
    
    .item-price {
        font-size: 13px;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .quantity-input {
        width: 45px;
        padding: 3px;
        font-size: 13px;
    }
    
    .item-total {
        font-size: 14px;
    }
    
    .remove-item {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .cart-summary {
        margin: 20px auto;
        max-width: 100%;
        padding: 20px;
    }
    
    .coupon-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .coupon-section input {
        margin-bottom: 10px;
    }
    
    .apply-coupon-btn {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-summary {
        position: static;
        margin-top: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .input-group input,
    .input-group select,
    .contact-form textarea,
    .search-box input,
    .newsletter-form input {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 12px;
        min-height: 48px;
        border: 2px solid #e1e1e1;
    }
    
    .search-box input {
        padding-left: 50px;
    }
    
    .search-box i {
        left: 18px;
        font-size: 18px;
    }
    
    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .filter-controls select {
        padding: 14px 18px;
        font-size: 16px;
        min-height: 48px;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-option label {
        padding: 18px 15px;
        font-size: 16px;
        border-radius: 12px;
    }

    .quick-view-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .quick-view-modal .modal-content {
        padding: 25px 20px;
        margin: 20px;
        max-height: 85vh;
    }
    
    .newsletter-section {
        padding: 40px 20px;
    }

    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer .row {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
        flex-basis: 100%;
        min-width: auto;
        text-align: center;
    }
    
    .footer-col-2 img {
        width: 200px;
        margin-bottom: 0px;
        bottom: 25px;
        position: relative;
    }
    
    .app-logo {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .app-logo img {
        width: 120px;
        margin: 5px;
    }
    
    .footer ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 10px;
        margin-top: 7px;
    }
    
    .footer ul li {
        margin-bottom: 5px;
    }
    
    .footer ul li a {
        padding: 1px 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 44px;
        justify-content: center;
    }
    
    .footer ul li a:hover {
        background: rgba(255, 82, 59, 0.1);
    }

    .cart-actions,
    .checkout-actions,
    .modal-actions,
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .container, .small-container {
        padding: 0 15px;
    }
    
    .row {
        text-align: center;
        margin: 0;
    }
    
    .col-2, .col-3, .col-4 {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    
    .header {
        padding: 20px 0;
        min-height: 50vh;
    }
    
    .col-2 h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 15px 0;
        padding: 0 10px;
    }
    
    .col-2 p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 15px;
        margin: 12px 0;
    }
    
    .col-2 img {
        max-width: 90%;
        padding: 20px 0;
    }
    
    .title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin: 0 auto 40px;
        padding: 0 10px;
        padding-top: 10px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .form-container {
        width: 95%;
        max-width: 400px;
        min-height: 750px;
        padding: 30px 15px 110px;
    }
    
    .form-container form {
        max-width: 90%;
        padding: 0 20px;
        top: 130px;
        min-height: 520px;
    }

    .form-btn {
        width: 250px;
        margin: 20px auto 30px;
    }

    .form-container span {
        font-size: 14px;
        padding: 10px 20px;
    }

    .input-wrapper input {
        height: 48px;
        padding: 0 18px 0 45px;
        font-size: 14px;
    }

    .input-wrapper i {
        left: 16px;
        font-size: 15px;
    }

    form .btn {
        height: 48px;
        font-size: 15px;
    }

    .social-buttons {
        gap: 10px;
        bottom: 12px;
        position: relative;
    }

    .social-btn {
        width: 100%;
    }

    .security-features {
        flex-direction: row;
        gap: 8px;
        bottom: 5px;
        padding-left: 20px;
    }

    .security-feature {
        font-size: 10px;
        max-width: 100%;
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
        text-align: left;
    }

    .security-feature span {
        font-size: 9px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: none;
        line-height: 1.3;
    }

    .security-feature i {
        font-size: 14px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-card {
        max-width: 100%;
        margin: 0 auto 20px;
        padding: 15px;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr 70px 50px 30px;
        gap: 6px;
        padding: 12px 8px;
    }
    
    .newsletter-form {
        padding: 0 10px;
    }
    
    .newsletter-form input {
        width: 100%;
        margin-bottom: 15px;
        min-height: 50px;
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .newsletter-form button {
        width: 100%;
        min-height: 50px;
        font-size: 16px;
        margin: 0;
    }
    
    .about-section, .offer, .newsletter-section {
        padding: 40px 0;
    }
    
    .value-card, .team-member {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .social-icons a,
    .member-social a {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 16px;
    }
    
    .progress-step {
        margin: 0 15px;
        font-size: 14px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .account-page {
        padding: 30px 0;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Ensure all interactive elements meet 44px minimum touch target */
    .color-dot {
        width: 20px;
        height: 20px;
        margin: 2px;
    }
    
    .quick-view-btn {
        padding: 12px 24px;
        min-height: 44px;
        font-size: 15px;
    }
    
    .close-modal {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        font-size: 20px;
    }
    
    /* Better spacing for mobile sections */
    .features {
        margin: 20px 0;
    }
    
    .sustainability-features {
        margin-top: 20px;
    }
    
    .sustainability-item {
        margin-bottom: 25px;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

/* Additional touch-friendly improvements for very small screens */
@media only screen and (max-width: 480px) {
    .btn, .btn-secondary {
        padding: 18px 30px;
        font-size: 15px;
        min-height: 50px;
        margin: 20px 5px;
    }
    
    .add-to-cart {
        min-height: 50px;
        font-size: 15px;
        padding: 15px 20px;
    }
    
    .nav ul li a {
        padding: 20px 25px;
        font-size: 17px;
    }
    
    .filter-controls {
        padding: 0 10px;
    }
    
    .filter-controls select {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .price-filter {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .search-box {
        margin: 0 10px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


/* Account Page Enhancements */
.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: #999;
    font-size: 14px;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #e8ecf0;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.social-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-btn {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn:hover {
    background: #f8f9fa;
    border-color: #ff523b;
    color: #ff523b;
}

.security-features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8ecf0;
}

.security-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #666;
}

.security-feature i {
    color: #2ecc71;
    font-size: 18px;
}

.input-wrapper.focused {
    border-color: #ff523b !important;
    box-shadow: 0 0 0 3px rgba(255, 82, 59, 0.1);
}

#user-profile {
    padding: 40px;
}

#user-profile .title {
    margin-bottom: 30px;
    font-size: 2rem;
}

.profile-info h3 {
    margin: 10px 0 5px;
    color: #333;
}

.profile-info p {
    font-size: 14px;
}

.profile-actions {
    margin-top: 20px;
}


/* Premium Profile Styles */
.profile-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('bg-image.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: -50px;
}

.profile-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.profile-container {
    padding-bottom: 80px;
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.profile-card-premium {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0.05, 0.1);
    padding: 30px;
    position: relative;
    z-index: 2;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.user-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.user-avatar i {
    font-size: 80px;
    color: #ff523b;
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #2ecc71;
    border: 3px solid #fff;
    border-radius: 50%;
}

.profile-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.profile-header p {
    color: #888;
    font-size: 0.9rem;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    color: #555;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.nav-item:hover, .nav-item.active {
    background: #fff5f3;
    color: #ff523b;
}

.nav-item.logout {
    color: #ff523b;
}

.nav-item.logout:hover {
    background: #fff0ef;
}

.profile-nav hr {
    display: none;
}

.profile-main {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0.05, 0.1);
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.dashboard-header {
    margin-bottom: 40px;
    text-align: center;
}

.dashboard-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.dashboard-header p {
    color: #777;
    margin-bottom: 20px;
}

.welcome-box {
    text-align: center;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #ff523b;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box.orders { background: #eef2ff; }
.stat-box.shipping { background: #fff7ed; }
.stat-box.wishlist { background: #fef2f2; }

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-box.orders .stat-icon { color: #4f46e5; }
.stat-box.shipping .stat-icon { color: #f59e0b; }
.stat-box.wishlist .stat-icon { color: #ef4444; }

.stat-info h3 {
    font-size: 1.8rem;
    color: #333;
    line-height: 1;
}

.stat-info p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.profile-main .title::after {
    left: 50%;
    transform: translateX(-50%);
}

.dashboard-content .title {
    text-align: center;
}

.content-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-link {
    color: #ff523b;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.empty-state {
    text-align: center;
    padding: 40px 0;
}

.empty-state i {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
}

.empty-state p {
    color: #999;
    margin-bottom: 25px;
}

.btn-small {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
    }
    .profile-hero {
        padding: 60px 0;
    }
    .profile-hero h1 {
        font-size: 2.2rem;
    }
}
