/* Maryam's Furniture Shop - Main Styles */

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --dark-color: #2c2c2c;
    --light-color: #f8f8f8;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Navigation Arrows Styles */
.page-nav-arrows {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 900;
    padding: 0 20px;
    max-width: 100%;
}

.nav-arrow {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color, #2c3e50);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
    background: var(--accent-color, #e74c3c);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.nav-arrow:active {
    transform: scale(0.95);
}

.nav-arrow-left {
    left: 0;
}

.nav-arrow-right {
    right: 0;
}

.nav-arrow i {
    pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-nav-arrows {
        padding: 0 10px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Dark mode support */
body.dark-mode .nav-arrow {
    background: #34495e;
}

body.dark-mode .nav-arrow:hover {
    background: #e74c3c;
}

/* Search Suggestions Styles */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

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

.suggestion-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.suggestion-icon.category-icon {
    background: var(--primary-color, #2c3e50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-type {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
}

.suggestion-price {
    color: var(--accent-color, #e74c3c);
    font-weight: 600;
    font-size: 14px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
}

.no-results i {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}

/* Dark mode for search suggestions */
body.dark-mode .search-suggestions {
    background: #2c3e50;
    border-color: #34495e;
}

body.dark-mode .suggestion-item {
    border-bottom-color: #34495e;
}

body.dark-mode .suggestion-item:hover {
    background: #34495e;
}

body.dark-mode .suggestion-name {
    color: #ecf0f1;
}

body.dark-mode .suggestion-type {
    color: #95a5a6;
}

/* Additional Styles for Home Page */
.welcome-section {
    padding: 60px 0;
}

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

.quick-link-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-link-card i {
    font-size: 48px;
    color: var(--primary-color, #2c3e50);
    margin-bottom: 20px;
}

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

.quick-link-card p {
    color: #7f8c8d;
    font-size: 14px;
}

.features-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 40px;
    color: var(--accent-color, #e74c3c);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Deal Timer Styles */
.deal-timer-container {
    text-align: center;
    margin: 30px 0;
}

.deal-timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.deal-timer i {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.countdown {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Dark mode for additional sections */
body.dark-mode .quick-link-card,
body.dark-mode .feature-card {
    background: #34495e;
}

body.dark-mode .quick-link-card h3,
body.dark-mode .feature-card h3 {
    color: #ecf0f1;
}

body.dark-mode .quick-link-card p,
body.dark-mode .feature-card p {
    color: #95a5a6;
}

body.dark-mode .features-section {
    background: #2c3e50;
}

body.dark-mode .quick-link-card i {
    color: var(--accent-color, #e74c3c);
}

/* Dark Theme */
body.dark-theme {
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --text-light: #aaa;
    --light-color: #2c2c2c;
    --dark-color: #f8f8f8;
    --border-color: #444;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background: var(--light-color);
    line-height: 1.6;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.loader p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

body.dark-theme .header {
    background: var(--light-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--secondary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* User Section */
.user-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-section .login-btn,
.user-section .signup-btn {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.user-section .user-menu {
    display: none;
    visibility: hidden;
}

.theme-toggle,
.cart-btn,
.login-btn,
.signup-btn,
.admin-btn,
.user-btn {
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.theme-toggle:hover,
.cart-btn:hover,
.login-btn:hover,
.signup-btn:hover,
.admin-btn:hover,
.user-btn:hover {
    background: var(--primary-color);
    color: white;
}

.signup-btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.signup-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    margin-right: 1rem;
    order: -1;
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        margin-right: 0.5rem;
    }
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    padding: 0;
}

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

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

.nav-links li a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
}

.mobile-menu .close-menu:hover {
    color: #f0f0f0;
    transform: rotate(90deg);
}

.mobile-menu-header {
    padding: 2rem 1.5rem 1rem;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
}

.mobile-menu-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 16px;
}

.mobile-menu ul li a i {
    font-size: 18px;
    color: #8B4513;
    width: 24px;
}

.mobile-menu ul li a:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(210, 105, 30, 0.05));
    padding-left: 2rem;
}

.mobile-menu-actions {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-login-btn,
.mobile-signup-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-login-btn {
    background: white;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.mobile-login-btn:hover {
    background: #8B4513;
    color: white;
}

.mobile-signup-btn {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
}

.mobile-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* User Dropdown */
.user-menu {
    position: relative;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 200px;
    overflow: hidden;
}

.user-dropdown.active {
    display: block;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.user-dropdown a:hover {
    background: var(--light-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(-45deg, #8B4513, #D2691E, #CD853F, #DEB887);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(210, 180, 140, 0.15) 0%, transparent 50%);
    animation: floatShapes 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatShapes {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    33% {
        transform: translateY(-20px) scale(1.05);
    }

    66% {
        transform: translateY(10px) scale(0.95);
    }
}

.hero-slider {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 4rem 0;
}

.hero-slide {
    text-align: center;
    animation: fadeIn 1s ease;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 1s ease, textGlow 3s ease-in-out infinite;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(218, 165, 32, 0.3);
    }

    50% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 30px rgba(218, 165, 32, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInUp 1s ease, fadeInOut 4s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.95;
    }

    50% {
        opacity: 1;
    }
}

.hero-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, #FFFFFF, #F5F5DC);
    color: #8B4513;
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: slideInUp 1s ease 0.5s both, buttonPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    background: linear-gradient(135deg, #F5F5DC, #FFFFFF);
    border-color: rgba(218, 165, 32, 0.6);
}

/* Section Styles */
.categories-section,
.products-section,
.deals-section,
.about-section,
.location-section,
.contact-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-line {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Products Grid */
.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filters select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.filters select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.products-grid,
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card,
.deal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover,
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image,
.deal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image,
.deal-card:hover .deal-image {
    transform: scale(1.1);
}

.product-info,
.deal-info {
    padding: 1.5rem;
}

.product-name,
.deal-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.product-description,
.deal-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price,
.deal-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--error-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.deal-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: timerPulse 2s ease-in-out infinite;
}

.deal-timer i {
    font-size: 1rem;
}

@keyframes timerPulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }

    50% {
        box-shadow: 0 2px 15px rgba(255, 107, 107, 0.6);
    }
}

.product-actions,
.deal-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart,
.btn-wishlist {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.btn-add-cart {
    background: var(--primary-color);
    color: white;
}

.btn-add-cart:hover {
    background: var(--secondary-color);
}

.btn-wishlist {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-wishlist:hover {
    background: var(--primary-color);
    color: white;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Location Section */
.location-section {
    background: var(--light-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.info-card i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.info-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Ad Placements */
.ad-section {
    padding: 2rem 0;
    background: #f5f5f5;
}

.ad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px dashed #ccc;
    border-radius: 10px;
    margin: 0 auto;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ad-placeholder:hover {
    border-color: #8B4513;
    background: #fafafa;
}

.ad-placeholder i {
    font-size: 3rem;
    color: #999;
    margin-bottom: 1rem;
}

.ad-placeholder p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.ad-horizontal {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
}

.ad-rectangular {
    width: 100%;
    max-width: 300px;
    min-height: 250px;
}

@media (max-width: 768px) {
    .ad-horizontal {
        max-width: 320px;
        min-height: 50px;
    }

    .ad-rectangular {
        max-width: 250px;
        min-height: 200px;
    }

    .ad-placeholder i {
        font-size: 2rem;
    }

    .ad-placeholder p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.info-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px 0 0 8px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 20px 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
}

.modal-content.small {
    max-width: 400px;
}

.modal-content.large {
    max-width: 1000px;
}

body.dark-theme .modal-content {
    background: var(--light-color);
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-footer {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.modal-footer small {
    display: block;
    margin-top: 0.5rem;
}

/* Admin Login Modal Styles */
#adminLoginModal .modal-content {
    max-width: 450px;
}

#adminLoginModal .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

#adminLoginModal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

#adminLoginModal .form-group label i {
    margin-right: 5px;
    color: var(--primary-color);
}

#adminLoginModal .form-group input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

#adminLoginModal .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

#adminLoginModal .password-toggle {
    position: absolute;
    right: 15px;
    top: 42px;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

#adminLoginModal .password-toggle:hover {
    color: var(--primary-color);
}

#adminLoginModal .btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

#adminLoginModal .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

#adminLoginModal .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close:hover {
    color: var(--text-color);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 4000;
    animation: slideInRight 0.3s ease;
}

.toast.show {
    display: block;
}

.toast.success {
    background: var(--success-color);
}

.toast.error {
    background: var(--error-color);
}

.toast.warning {
    background: var(--warning-color);
}

.toast.info {
    background: var(--info-color);
}

/* Skeleton Loaders */
.skeleton-box,
.skeleton-text,
.skeleton-img,
.skeleton-badge {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.category-skeleton,
.product-skeleton,
.deal-skeleton {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.skeleton-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin: 0 auto 1rem;
}

.skeleton-text {
    height: 20px;
    border-radius: 5px;
    margin: 10px 0;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.skeleton-badge {
    width: 60px;
    height: 30px;
    border-radius: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {

    .products-grid,
    .deals-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 1rem;
    }

    .search-bar {
        margin: 0 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .navbar {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .login-btn span,
    .signup-btn span,
    .admin-btn span,
    .user-btn span {
        display: none;
    }

    .user-section {
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .search-bar {
        display: none;
    }

    .header-container {
        padding: 0.8rem;
    }

    .logo span {
        display: none;
    }

    .section-title span {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-slider {
        min-height: 300px;
    }

    .categories-grid,
    .products-grid,
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Right Side Drawer */
.right-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 9999;
}

.drawer-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 15px 12px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.drawer-toggle:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.drawer-content {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 10001;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.right-drawer.active .drawer-content {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.right-drawer.active .drawer-overlay {
    opacity: 1;
    visibility: visible;
}

.drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    color: #8B4513;
    transform: rotate(90deg);
}

.drawer-title {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(-45deg, #8B4513, #D2691E, #CD853F, #DEB887);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-content-section {
    padding: 4rem 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text-content h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-text-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image-content {
    position: sticky;
    top: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.team-section {
    background: var(--light-color);
    padding: 4rem 0;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
}

.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Location Page Styles */
.location-hero {
    background: linear-gradient(-45deg, #8B4513, #D2691E, #CD853F, #DEB887);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.main-map-section {
    padding: 4rem 0;
}

.showrooms-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.showrooms-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.showroom-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.showroom-image {
    height: 100%;
}

.showroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showroom-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.showroom-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
    margin-top: 2px;
}

.detail-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.showroom-btn {
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    align-self: flex-start;
}

.showroom-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.visit-info-section {
    padding: 4rem 0;
}

.visit-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.directions-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.directions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.transport-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.transport-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.transport-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 40px;
}

.transport-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.transport-item p {
    color: var(--text-light);
    margin: 0;
}

.parking-info h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.parking-info ul {
    list-style: none;
    padding: 0;
}

.parking-info li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.parking-info li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(-45deg, #8B4513, #D2691E, #CD853F, #DEB887);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.contact-main-section {
    padding: 4rem 0;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-info-sidebar h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-sidebar>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    margin-top: 2px;
}

.method-info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.method-info p {
    color: var(--text-color);
    margin: 0.2rem 0;
    font-size: 0.95rem;
}

.method-info small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.method-info small a {
    color: var(--primary-color);
    text-decoration: none;
}

.method-info small a:hover {
    text-decoration: underline;
}

.social-contact h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
}

.social-contact .social-links a {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-contact .social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-main {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-main h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-main>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .form-actions {
    margin-top: 2rem;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form .form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact-faq-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-cta p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.departments-section {
    padding: 4rem 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.department-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.department-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.department-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.department-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.department-contact {
    color: var(--primary-color) !important;
    font-weight: 600;
    margin: 0.5rem 0 !important;
}

/* Responsive Design */
@media (max-width: 992px) {

    .about-content-grid,
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-sidebar {
        position: static;
    }

    .showroom-card {
        grid-template-columns: 1fr;
    }

    .directions-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {

    .about-hero-content h1,
    .location-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

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

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

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team-grid,
    .features-grid,
    .visit-info-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .about-hero,
    .location-hero,
    .contact-hero {
        padding: 4rem 0 2rem;
    }

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

.drawer-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(210, 105, 30, 0.05));
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #333;
    text-align: left;
}

.drawer-btn:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1));
    border-color: #D2691E;
    transform: translateX(-5px);
}

.drawer-btn i {
    font-size: 24px;
    color: #8B4513;
    min-width: 30px;
}

.drawer-btn span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .drawer-content {
        width: 280px;
        right: -280px;
    }

    .drawer-toggle {
        padding: 12px 10px;
        font-size: 16px;
    }
}

/* Print Styles */
@media print {

    .header,
    .navbar,
    .mobile-menu,
    .footer,
    .theme-toggle,
    .cart-btn,
    .login-btn,
    .admin-btn {
        display: none;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

/* ============================================
   Enhanced Features Styles
   ============================================ */

/* Expandable Search Bar */
.search-bar {
    transition: all 0.3s ease;
}

.search-bar.expanded {
    max-width: 700px;
    z-index: 1000;
}

.search-bar.expanded input {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Scroll Navigation Buttons */
.scroll-nav-btn {
    position: fixed;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-up {
    bottom: 100px;
}

.scroll-down {
    bottom: 30px;
}

@media (max-width: 768px) {
    .scroll-nav-btn {
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-up {
        bottom: 90px;
    }
}

/* Image Hover Zoom */
.product-card img,
.category-card img,
.deal-card img {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card,
.category-card,
.deal-card {
    overflow: hidden;
}

/* Word Counter */
.word-counter {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    text-align: right;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Left Sidebar Navigation */
.left-sidebar {
    position: fixed;
    left: 0;
    top: 120px;
    width: 250px;
    height: calc(100vh - 120px);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s ease;
}

.left-sidebar.hidden {
    transform: translateX(-100%);
}

.left-sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-sidebar nav ul li {
    border-bottom: 1px solid #eee;
}

.left-sidebar nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.left-sidebar nav ul li a:hover,
.left-sidebar nav ul li a.active {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.left-sidebar-toggle {
    position: fixed;
    left: 0;
    top: 120px;
    width: 40px;
    height: 40px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Advertisement Area */
.right-ad-area {
    position: fixed;
    right: 0;
    top: 120px;
    width: 300px;
    height: calc(100vh - 120px);
    background: #f8f9fa;
    border-left: 1px solid #eee;
    overflow-y: auto;
    z-index: 100;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar-ads-header {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-ads-header h4 {
    margin: 0;
    font-size: 1rem;
}

.sidebar-ads-container {
    padding: 20px;
}

.ad-wrapper {
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-ad-item {
    position: relative;
    width: 100%;
}

.sidebar-ad-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.sidebar-ad-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ad-title {
    padding: 10px 15px;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    background: white;
}

.ad-placeholder-vertical {
    width: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-size: 0.9rem;
    padding: 20px;
}

.ad-placeholder-vertical i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Main Content Area Adjustment */
.main-content-wrapper {
    margin-left: 0;
    margin-right: 0;
    transition: margin 0.3s ease;
}

.main-content-wrapper.with-left-sidebar {
    margin-left: 250px;
}

.main-content-wrapper.with-right-ad {
    margin-right: 300px;
}

.main-content-wrapper.with-both {
    margin-left: 250px;
    margin-right: 300px;
}

@media (max-width: 1024px) {

    .left-sidebar,
    .right-ad-area {
        display: none;
    }

    .main-content-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Accessibility Improvements */
*:focus {
    outline: 2px solid #e67e22;
    outline-offset: 2px;
}

[role="button"],
button,
a {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading-pulse {
    animation: pulse 2s ease-in-out infinite;
}