:root {
    --black: #000000;
    --white: #ffffff;
    --gray: #f5f5f5;
    --dark-gray: #333333;
    /* --black: #d4af37; */
    --light-black: #f4e4b7;
}

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

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: 80px; /* Account for fixed header */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--white);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    top: 0;
    transition: padding 0.3s ease;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1002;
}

nav {
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

nav ul li {
    margin: 0 1.2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--black);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--black);
}

nav ul li a.active {
    color: var(--black);
}

nav ul li a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icons a {
    color: var(--dark-gray);
    margin-left: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-icons a:hover {
    color: var(--black);
}

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

/* Page Hero Section */
.page-hero {
    height: 50vh;
    min-height: 400px;
     background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./assests/aboutK.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    padding: 0 5%;
}

.contact-hero {
          background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./assests/aboutK.jpg') no-repeat center center/cover;
        }
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.contact-info h2::after, .contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--black);
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    font-size: 1.2rem;
    color: var(--black);
    margin-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input, .form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

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

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

.btn {
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    border: none;
    background-color: var(--black);
    color: var(--white);
}

.btn:hover {
    background-color: var(--dark-gray);
}

/* Map Section */
.map-section {
    padding: 3rem 0 5rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--black);
}

.map-placeholder {
    height: 400px;
    background-color: var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dark-gray);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.map-placeholder p {
    font-size: 1.1rem;
}

/* Shop Section */
.shop-section {
    padding: 5rem 0;
}

.shop-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

/* Shop Sidebar */
.shop-sidebar {
    padding: 1.5rem;
    background-color: var(--white);
    border-right: 1px solid #eee;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.filter-group ul {
    list-style: none;
}

.filter-group ul li {
    margin-bottom: 0.6rem;
}

.filter-group ul li a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.filter-group ul li a:hover, .filter-group ul li a.active {
    color: var(--black);
}

.price-range {
    margin-top: 1rem;
}

.slider {
    width: 100%;
    margin-bottom: 0.5rem;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.size-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.size-options input {
    margin-right: 0.4rem;
}

.color-options {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.color-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.color-dot:hover {
    transform: scale(1.1);
}

.color-dot.black {
    background-color: #000;
    border: 1px solid #eee;
}

.color-dot.white {
    background-color: #fff;
    border: 1px solid #ddd;
}

.color-dot.navy {
    background-color: #001f3f;
}

.color-dot.gray {
    background-color: #aaaaaa;
}

.color-dot.beige {
    background-color: #f5f5dc;
}

.filter-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Products Grid */
.products-grid {
    padding: 0 1rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.products-header p {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sort-options label {
    font-size: 0.9rem;
}

.sort-options select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
}

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

.product {
    background-color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.product-img {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product:hover .product-img img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    gap: 0.8rem;
}

.product:hover .product-overlay {
    opacity: 1;
}

.product-overlay a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.product-overlay a:hover {
    background: var(--black);
    color: var(--white);
}

.product-info {
    padding: 1.2rem 0;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.product-info p {
    font-weight: 500;
    color: var(--dark-gray);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.page-link {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.page-link:hover, .page-link.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Newsletter */
.newsletter {
    padding: 4rem 5%;
    text-align: center;
    background-color: var(--gray);
}

.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--dark-gray);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background-color: var(--black);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

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

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 1.8rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark-gray);
}

.cart-items {
    margin-bottom: 1.8rem;
    flex: 1;
}

.cart-item {
    display: flex;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 0.9rem;
}

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

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--dark-gray);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: #f5f5f5;
    border: none;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.quantity-input {
    width: 35px;
    text-align: center;
    border: 1px solid #eee;
    margin: 0 0.4rem;
    padding: 0.2rem;
    font-size: 0.85rem;
}

.remove-item {
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 0.8rem;
    font-size: 0.9rem;
}

.cart-total {
    margin-bottom: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.cart-total-label {
    color: var(--dark-gray);
}

.cart-total-value {
    font-weight: 500;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cart-btn {
    padding: 0.9rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

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

.cart-btn.primary:hover {
    background-color: var(--dark-gray);
}

.cart-btn.secondary {
    background-color: transparent;
    color: var(--dark-gray);
    border: 1px solid #ddd;
}

.cart-btn.secondary:hover {
    background-color: #f9f9f9;
}

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

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--black);
}

.footer-column p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .shop-content {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 2rem;
    }
    
    .cart-sidebar {
        width: 350px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    header {
        padding: 0.8rem 5%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
    
    .size-options, .color-options {
        justify-content: center;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-img {
        height: 280px;
    }
}
/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero.contact-hero {
        height: 25vh;
        min-height: 200px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    
    nav ul {
        gap: 0.8rem;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
    
    .page-hero.contact-hero {
        height: 20vh;
        min-height: 180px;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .contact-section .container {
        padding: 2rem 1rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
}
/* Add these styles to your existing CSS */

/* Cart Sidebar Scrolling */
.cart-sidebar {
    /* Existing styles... */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.cart-header {
    flex-shrink: 0;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    background: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-total {
    flex-shrink: 0;
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    background: var(--white);
}

.cart-buttons {
    flex-shrink: 0;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

/* Mobile-specific scrolling improvements */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
        height: 100vh;
    }
    
    .cart-items {
        padding: 1rem;
        max-height: calc(100vh - 300px); /* Adjust based on your header/total height */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    /* Custom scrollbar for mobile */
    .cart-items::-webkit-scrollbar {
        width: 4px;
    }
    
    .cart-items::-webkit-scrollbar-track {
        background: var(--light-gray);
    }
    
    .cart-items::-webkit-scrollbar-thumb {
        background: var(--dark-gray);
        border-radius: 2px;
    }
    
    .cart-items::-webkit-scrollbar-thumb:hover {
        background: var(--black);
    }
    
    /* Improve cart item spacing on mobile */
    .cart-item {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .cart-item:last-child {
        border-bottom: none;
    }
    
    /* Ensure cart buttons are easily tappable on mobile */
    .cart-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .quantity-btn, .remove-item {
        min-width: 44px; /* Minimum touch target size */
        min-height: 44px;
    }
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .cart-sidebar {
        height: 100vh;
    }
    
    .cart-items {
        max-height: calc(100vh - 280px);
        padding: 0.5rem;
    }
    
    .cart-header,
    .cart-total,
    .cart-buttons {
        padding: 1rem;
    }
    
    .cart-item {
        padding: 0.8rem 0;
    }
    
    /* Improve cart item layout for very small screens */
    .cart-item {
        display: flex;
        gap: 0.8rem;
    }
    
    .cart-item-img {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-details {
        flex: 1;
        min-width: 0; /* Prevent flex item from overflowing */
    }
    
    .cart-item-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
}

/* Prevent body scroll when cart is open */
body.cart-open {
    overflow: hidden;
    height: 100vh;
}

/* Smooth transitions */
.cart-sidebar,
.overlay {
    transition: all 0.3s ease;
}

/* Ensure overlay covers entire screen */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Cart sidebar positioning */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    transition: right 0.3s ease;
}

.cart-sidebar.open {
    right: 0;
}
/* Mobile-optimized quantity controls */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.quantity-input {
    width: 40px;
    height: 32px;
    border: 1px solid var(--light-gray);
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
}

.remove-item {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem;
}

/* Larger touch targets for mobile */
@media (max-width: 768px) {
    .quantity-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .quantity-input {
        width: 50px;
        height: 44px;
        font-size: 1rem;
    }
    
    .remove-item {
        padding: 0.8rem;
        font-size: 1.1rem;
    }
}