/* Modern CSS Variables */
:root {
    --primary: #2c5530;
    --primary-light: #4a7c59;
    --accent: #d4af37;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #f9fafb;
    --gray-border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

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

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

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

.search-bar button:hover {
    background: var(--primary-light);
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.action-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--gray-light);
    color: var(--primary);
}

.count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Image Slider */
.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 500px;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Sections */
.section {
    padding: 1rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

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

.product-image {
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn-small {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.stars i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.stars i.active {
    color: var(--accent);
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

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

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

.btn-add-cart {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart:hover {
    background: var(--primary-light);
}

/* Categories Section */
.categories {
    background: var(--gray-light);
    padding: 4rem 0;
}

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

.category-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.category-image {
    height: fit-content;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 2rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Products Section */
.products-section {
    display: none;
    padding: 3rem 0;
}

.products-section.active {
    display: block;
}

.back-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.back-btn:hover {
    background: var(--gray-light);
    color: var(--primary-light);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.close-modal {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: var(--gray-light);
    color: var(--text-dark);
}

/* Product Modal */
.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-modal-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.product-modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-modal-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-modal-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-modal-original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-modal-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-modal-details {
    margin-bottom: 2rem;
}

.product-modal-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.benefits-list li i {
    color: var(--accent);
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-secondary {
    width: 100%;
    background: var(--gray-light);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--gray-border);
}

/* Cart Modal */
.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-border);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--gray-light);
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.remove-btn:hover {
    background: var(--gray-light);
    color: var(--error);
}

.cart-total {
    border-top: 2px solid var(--gray-border);
    padding-top: 1rem;
    text-align: center;
}

.cart-total h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-checkout {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: var(--primary-light);
}

/* Wishlist Modal */
/* Wishlist items matching cart style */
.wishlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-border);
}

.wishlist-item-image {
    width: 80px;ss
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-info h4 {
    margin-bottom: 0.5rem;
}

.wishlist-item-price {
    color: var(--primary);
    font-weight: 600;
}

.wishlist-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.wishlist-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.notification.success {
    background: #10b981;
}

.notification.error {
    background: #ef4444;
}

.notification.info {
    background: var(--primary);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: var(--accent);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

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

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-modal-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slider {
        height: 400px;
    }

    .slide-content {
        left: 5%;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-actions {
        justify-content: center;
    }
}

/* Navigation Menu */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-menu {
    display: flex;
    place-self: center;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    font-size: smaller;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(44, 85, 48, 0.05);
}

.nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--gray-border);
}

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

.dropdown-item {
    display: flex;
    align-items: center;    
    font-size: smaller;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-light);
}

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

.dropdown-item:hover {
    background: var(--gray-light);
    color: var(--primary);
}

.dropdown-item i {
    color: var(--primary-light);
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-border);
    margin: 0.1rem 0;
}

/* New Sections */
.section-content {
    display: none;
    padding: 4rem 0;
}

.section-content.active {
    display: block;
}

.about-section,
.company-section,
.contact-section {
    background: var(--gray-light);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.section-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

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

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

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

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

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-light);
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 1rem;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--gray-light);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Trending Slider Dots */
#trendingDots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

#trendingDots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
}

#trendingDots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Trending Slider */
@media (max-width: 1200px) {
    .trending-slide {
        flex: 0 0 calc(33.333% - 1.5rem);
    }
}

@media (max-width: 992px) {
    .trending-slide {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .trending-slider {
        margin: 0 40px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .trending-slide {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .trending-slider {
        margin: 0 30px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .trending-slider {
        margin: 0 20px;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
    }
}

/* Enhanced Product Card for Slider */
.trending-slider .product-card {
    margin: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    height: 100%;
}

.trending-slider .product-image {
    height: 200px;
}

.trending-slider .product-info {
    padding: 1.25rem;
}

.trending-slider .product-title {
    font-size: 1rem;
    line-height: 1.3;
}

.trending-slider .product-price {
    margin-bottom: 0.75rem;
}

.trending-slider .btn-add-cart {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Trending Slider - Show 3 products */
.trending-slider-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.trending-slider {
    overflow: hidden;
    position: relative;
    margin: 0 60px;
}

.trending-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    will-change: transform;
}

.trending-slide {
    flex: 0 0 calc(33.333% - 1.33rem); /* Exactly 3 products with proper gap calculation */
    min-width: 0; /* Important for flexbox sizing */
}

/* Navigation buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Dots indicator */
#trendingDots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

#trendingDots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
}

#trendingDots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .trending-slide {
        flex: 0 0 calc(50% - 1rem); /* Show 2 products on tablet */
    }
    
    .trending-slider {
        margin: 0 50px;
    }
}

@media (max-width: 768px) {
    .trending-slide {
        flex: 0 0 calc(100% - 0.5rem); /* Show 1 product on mobile */
    }
    
    .trending-slider {
        margin: 0 40px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Search Results Styling */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:hover {
    background: var(--gray-light);
}

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

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-info .price {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Enhanced Trending Slider with Centered Focus */
.trending-slider-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 80px; /* More padding for navigation buttons */
}

.trending-slider {
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 40px 0; /* Add padding for the scale effect */
}

.trending-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    align-items: center;
    padding: 0 20px;
}

.trending-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

/* Center slide styling - larger */
.trending-slide.center {
    transform: scale(1.1);
    z-index: 2;
}

.trending-slide.center .product-card {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary);
}

.trending-slide.center .product-image {
    height: 220px;
}

.trending-slide.center .product-title {
    font-size: 1.1rem;
}

.trending-slide.center .current-price {
    font-size: 1.4rem;
}

/* Side slides styling - smaller */
.trending-slide.side {
    transform: scale(0.9);
    opacity: 0.8;
    z-index: 1;
}

.trending-slide.side .product-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trending-slide.side .product-image {
    height: 180px;
}

.trending-slide.side .product-title {
    font-size: 0.95rem;
}

.trending-slide.side .current-price {
    font-size: 1.2rem;
}

/* Hidden slides */
.trending-slide.hidden {
    transform: scale(0.85);
    opacity: 0.6;
}

/* Enhanced navigation buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Dots indicator */
#trendingDots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

#trendingDots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

#trendingDots .dot.active {
    background: var(--primary);
    transform: scale(1.3);
    border-color: var(--primary-light);
}

#trendingDots .dot:hover {
    background: var(--primary-light);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .trending-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .trending-slide.center {
        transform: scale(1.05);
    }
    
    .trending-slide.side {
        transform: scale(0.95);
    }
}

@media (max-width: 992px) {
    .trending-slider-container {
        padding: 0 60px;
    }
    
    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .trending-slide {
        flex: 0 0 calc(100% - 0.5rem);
    }
    
    .trending-slider-container {
        padding: 0 50px;
    }
    
    /* On mobile, show all slides same size */
    .trending-slide.center,
    .trending-slide.side,
    .trending-slide.hidden {
        transform: scale(1);
        opacity: 1;
    }
    
    .trending-slide.center .product-image,
    .trending-slide.side .product-image {
        height: 200px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trending-slider-container {
        padding: 0 40px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* Enhanced product card transitions for the slider */
.trending-slider .product-card {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    height: 100%;
}

.trending-slider .product-image {
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trending-slider .product-title {
    transition: font-size 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trending-slider .current-price {
    transition: font-size 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure proper z-index layering */
.trending-slider-track {
    position: relative;
}

.trending-slide {
    position: relative;
}

.howtouse-list {
    list-style-type: disc;   /* circle bullet */
    padding-left: 20px;
}

.howtouse-list li {
    margin-bottom: 8px;      /* space between lines */
}

/* Product Modal Layout */
.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-height: 80vh;
    overflow-y: auto;
}

/* Sticky image */
.product-modal-image {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.product-modal-image img {
    width: 100%;
    border-radius: 14px;
}

/* Sticky action buttons */
.modal-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 16px 0;
    margin-top: 24px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    z-index: 10;
}

/* Mobile & Tablet Responsive Layout */
@media (max-width: 768px) {
    .product-modal-content {
        display: flex;
        flex-direction: column; /* Stack image above details */
        gap: 20px;
        max-height: none; /* let it scroll naturally */
        overflow-y: visible;
    }

    .product-modal-image {
        position: relative; /* remove sticky on mobile */
        top: auto;
        align-self: stretch;
    }

    .modal-actions {
        position: sticky; /* keep actions at bottom */
        bottom: 0;
        background: #fff;
        padding: 16px 0;
        margin-top: 0;
        border-top: 1px solid #eee;
        z-index: 10;
    }
}


.trending-slider-track {
    display: flex;
    gap: 2rem;
    transition: none !important; /* Remove transform transition for loop */
}

.trending-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 0;
    transition: all 0.3s ease; /* Keep individual slide transitions */
}

/* When reordering slides, we need to handle the initial state */
.trending-slide.hidden {
    opacity: 0.3;
    transform: scale(0.8);
}

.trending-slide.side {
    opacity: 0.7;
    transform: scale(0.9);
}

.trending-slide.center {
    opacity: 1;
    transform: scale(1.1);
    z-index: 2;
}

.trending-slider-track {
    transition: none !important;
}

.trending-slide {
    transition: none !important;
}

/* Remove transform animations */
.trending-slide.center,
.trending-slide.side,
.trending-slide.hidden {
    transition: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .trending-slider-track {
        gap: 1rem;
    }

    .trending-slide {
        flex: 0 0 50%; /* 2 slides */
        opacity: 1;
        transform: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trending-slider-track {
        gap: 1rem;
    }

    .trending-slide {
        flex: 0 0 100%; /* 1 slide */
        opacity: 1;
        transform: none;
    }
}

/* =============================================
   Terms & Conditions and Privacy Policy Pages
   ============================================= */

/* Terms & Conditions Page */
.terms-page,
.policy-page {
    background: var(--gray-light);
    padding: 4rem 0;
    min-height: 70vh;
}

.terms-content,
.policy-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-top: 2rem;
}

.terms-content h1,
.policy-content h1 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.terms-content h1::after,
.policy-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.terms-section h2,
.policy-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-border);
}

.terms-section h3,
.policy-section h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-section p,
.policy-section p {
    text-align: justify;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-list {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-light);
}

.policy-list strong {
    color: var(--text-dark);
}

.terms-page .back-btn,
.policy-page .back-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terms-page .back-btn:hover,
.policy-page .back-btn:hover {
    background: var(--primary-light);
}

/* Terms & Conditions specific content */
.terms-section {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

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

.terms-section::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

.terms-section::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

/* Privacy Policy specific content */
.policy-section {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.policy-section::-webkit-scrollbar {
    width: 8px;
}

.policy-section::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

.policy-section::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

/* Responsive design */
@media (max-width: 768px) {
    .terms-content,
    .policy-content {
        padding: 2rem 1.5rem;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .terms-content h1,
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2,
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-page,
    .policy-page {
        padding: 2rem 0;
    }
    
    .terms-section,
    .policy-section {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .terms-content,
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .terms-content h1,
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-section p,
    .policy-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .policy-list {
        margin-left: 1.5rem;
    }
}

/* =============================================
   Company & About Section Text Alignment
   ============================================= */

/* Center headers in company and about sections */
.company-section .section-text h2,
.about-section .section-text h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    position: relative;
}

/* Add decorative underline */
.company-section .section-text h2::after,
.about-section .section-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Justify paragraph text in company and about sections */
.company-section .section-text p,
.about-section .section-text p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Improve text readability and hyphenation */
.company-section .section-text p,
.about-section .section-text p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Add some spacing around justified text for better readability */
.company-section .section-text,
.about-section .section-text {
    padding: 0 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-section .section-text h2,
    .about-section .section-text h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .company-section .section-text h2::after,
    .about-section .section-text h2::after {
        width: 60px;
        height: 2px;
        margin: 1rem auto 0;
    }
    
    .company-section .section-text p,
    .about-section .section-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* =============================================
   Terms & Conditions and Privacy Policy Pages
   ============================================= */

/* Terms & Conditions Page */
.terms-page,
.policy-page {
    background: var(--gray-light);
    padding: 4rem 0;
    min-height: 70vh;
}

.terms-content,
.policy-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-top: 2rem;
}

.terms-content h1,
.policy-content h1 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.terms-content h1::after,
.policy-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.terms-section h2,
.policy-section h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-border);
}

.terms-section h3,
.policy-section h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.terms-section p,
.policy-section p {
    text-align: justify;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-list {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: var(--text-light);
}

.policy-list strong {
    color: var(--text-dark);
}

.terms-page .back-btn,
.policy-page .back-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terms-page .back-btn:hover,
.policy-page .back-btn:hover {
    background: var(--primary-light);
}

/* Terms & Conditions specific content */
.terms-section {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

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

.terms-section::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

.terms-section::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

/* Privacy Policy specific content */
.policy-section {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.policy-section::-webkit-scrollbar {
    width: 8px;
}

.policy-section::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 4px;
}

.policy-section::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

/* Responsive design */
@media (max-width: 768px) {
    .terms-content,
    .policy-content {
        padding: 2rem 1.5rem;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .terms-content h1,
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2,
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-page,
    .policy-page {
        padding: 2rem 0;
    }
    
    .terms-section,
    .policy-section {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 480px) {
    .terms-content,
    .policy-content {
        padding: 1.5rem 1rem;
    }
    
    .terms-content h1,
    .policy-content h1 {
        font-size: 1.8rem;
    }
    
    .terms-section p,
    .policy-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .policy-list {
        margin-left: 1.5rem;
    }
}