/* Wellness Tools - Custom Styles */

/* Override all button colors to brown theme */
.btn, .button, input[type="submit"], input[type="button"], button, 
.add-to-cart, .wishlist-btn, .quantity-btn, .cta-button {
    background: linear-gradient(135deg, #8B5A3C, #966F54) !important;
    color: #FFFFFF !important;
    border: none !important;
}

.btn:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover, button:hover,
.add-to-cart:hover, .wishlist-btn:hover, .quantity-btn:hover, .cta-button:hover {
    background: linear-gradient(135deg, #966F54, #A07A5C) !important;
    color: #FFFFFF !important;
}


/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    color: #666;
}

.top-bar .offer {
    font-weight: 600;
    color: #e74c3c;
}

.main-header {
    padding: 15px 0;
}

.container {
    max-width: 1600px;
    margin: 0 60px;
    padding: 0 5px;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo span {
    color: #966F54;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #966F54;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #966F54;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

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

.header-actions a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.header-actions a:hover {
    color: #966F54;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: relative;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.nav {
    background: #2c3e50;
    padding: 0;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav li {
    position: relative;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    transition: background 0.3s;
}

.nav a:hover {
    background: #34495e;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    color: #333;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #966F54;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #8B5A3C 0%, #966F54 50%, #A07A5C 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 90, 60, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #966F54 0%, #A07A5C 50%, #CD853F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(150, 111, 84, 0.4);
}

/* Promotional Banners */
.promo-banners {
    padding: 40px 0;
    background: #f8f9fa;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

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

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

.banner i {
    font-size: 48px;
    color: #966F54;
    margin-bottom: 15px;
}

.banner h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.banner p {
    color: #666;
    font-size: 16px;
}

/* Categories Section */
.categories {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.category-content p {
    color: #666;
    font-size: 14px;
}

/* Features Section */
.features {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
}

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

.feature {
    text-align: center;
}

.feature i {
    font-size: 48px;
    color: #966F54;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #34495e;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #966F54;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #966F54;
}

.footer-bottom {
    border-top: 1px solid #4a5f7a;
    padding-top: 30px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .search-bar {
        margin: 0;
        max-width: 100%;
    }

    .nav ul {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .banner-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

