/* Base Styles */
:root {
    --primary-color: #5c3a21;
    --secondary-color: #8b5a2b;
    --accent-color: #d4a76a;
    --dark-leather: #3a2513;
    --light-leather: #e6d5b8;
    --text-color: #333;
    --light-text: #f8f8f8;
    --bg-color: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Leather Textures */
.leather-texture {
    background: url('https://www.transparenttextures.com/patterns/black-linen.png'), linear-gradient(to right, var(--dark-leather), var(--primary-color));
    color: var(--light-text);
    border-bottom: 1px solid var(--accent-color);
}

.leather-texture-dark {
    background: url('https://www.transparenttextures.com/patterns/black-linen.png'), linear-gradient(to right, var(--dark-leather), var(--primary-color));
    color: var(--light-text);
}

.leather-texture-light {
    background: url('https://www.transparenttextures.com/patterns/cream-paper.png'), var(--light-leather);
    color: var(--text-color);
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo h1 span {
    color: var(--accent-color);
    font-weight: 400;
}

.logo p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: -5px;
    text-align: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 1px;
}

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

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: var(--light-text);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--dark-leather);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    background-position: center;
    background-size: cover;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-leather);
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--text-color);
    padding: 12px 30px;
    border: 2px solid var(--text-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(92, 58, 33, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.quick-view {
    background-color: var(--accent-color);
    color: var(--dark-leather);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-view:hover {
    background-color: var(--light-text);
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

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

/* Craftsmanship Section */
.craftsmanship {
    padding: 80px 0;
    text-align: center;
}

.craft-content {
    max-width: 800px;
    margin: 0 auto;
}

.craft-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.craft-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 25px;
}

/* Footer */
footer {
    background-color: var(--dark-leather);
    color: var(--light-text);
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-col ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--light-text);
    font-size: 20px;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 24px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .craft-content h2, .newsletter-content h2 {
        font-size: 28px;
    }
}

/* Add these styles to your existing CSS */

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 25px;
    right: 20px;
    font-size: 24px;
    color: var(--light-text);
    z-index: 1100;
    cursor: pointer;
}

.main-nav {
    transition: all 0.3s ease-in-out;
}

.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--light-text);
    cursor: pointer;
    z-index: 1002;
}

/* Desktop Navigation */
@media (min-width: 993px) {
    .main-nav ul {
        display: flex;
        list-style: none;
    }
    
    .main-nav ul li {
        margin-left: 30px;
    }
    
    .main-nav ul li a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s;
        letter-spacing: 1px;
    }
    
    .main-nav ul li a:hover {
        color: var(--accent-color);
    }
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: url('https://www.transparenttextures.com/patterns/black-linen.png'), linear-gradient(to right, var(--dark-leather), var(--primary-color));
        z-index: 1001;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-close {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        list-style: none;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .main-nav ul li a {
        color: var(--light-text);
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s;
    }
    
    .main-nav ul li a:hover {
        color: var(--accent-color);
    }
}
    /* Make sure header doesn't get covered by mobile menu */
    header {
        z-index: 1000;
    }
}

/* Cart Section Styles */
.cart-section {
    padding: 100px 0 80px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px 100px 50px;
    gap: 20px;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
}

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

.cart-item-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cart-item-details .size {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-details .price {
    font-weight: 700;
    color: var(--secondary-color);
}

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

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.cart-item-total {
    font-weight: 700;
    color: var(--secondary-color);
    text-align: right;
}

.remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: var(--primary-color);
}

.cart-summary {
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 120px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    font-weight: 700;
    font-size: 18px;
    border-bottom: none;
    margin-top: 20px;
    padding-bottom: 0;
}

.checkout-btn {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.continue-shopping:hover {
    text-decoration: underline;
}

/* Responsive Cart */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
        gap: 25px;
    }
    
    .cart-item-image {
        grid-row: 1 / 3;
    }
    
    .cart-item-details {
        grid-column: 2;
    }
    
    .cart-item-quantity {
        grid-column: 1;
        grid-row: 3;
    }
    
    .cart-item-total {
        grid-column: 2;
        grid-row: 3;
        text-align: right;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 15px;
        right: 15px;
    }
}

/* Header and Navigation Fixes */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Add this */
}

.logo {
    z-index: 1002; /* Ensure logo stays above mobile menu */
}

.cart-icon {
    position: relative;
    z-index: 1002; /* Ensure cart stays above mobile menu */
    margin-left: auto; /* Push cart to the right */
    padding-right: 20px; /* Add some spacing */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 25px;
    right: 20px;
    font-size: 24px;
    color: var(--light-text);
    z-index: 1100;
    cursor: pointer;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Navigation */
.main-nav {
    transition: all 0.3s ease-in-out;
}

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

/* Desktop Navigation */
@media (min-width: 993px) {
    .main-nav ul {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-close {
        display: none !important;
    }
    
    .main-nav ul li {
        margin-left: 30px;
    }
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: url('https://www.transparenttextures.com/patterns/black-linen.png'), 
                    linear-gradient(to right, var(--dark-leather), var(--primary-color));
        z-index: 1001;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 24px;
        color: var(--light-text);
        cursor: pointer;
        z-index: 1002;
    }
    
    .main-nav ul {
        flex-direction: column;
        margin-top: 40px;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .main-nav ul li a {
        color: var(--light-text);
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }
    
    /* Adjust header padding on mobile */
    header {
        padding: 15px 0;
    }
    
    /* Ensure cart icon is properly positioned */
    .cart-icon {
        position: absolute;
        right: 70px; /* Adjust based on your needs */
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Add this to your existing CSS */
.cart-link {
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.cart-icon {
    /* Ensure these styles are present */
    position: relative;
    cursor: pointer;
    margin-left: 20px; /* Add some spacing */
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: var(--dark-leather);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 80px 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.checkout-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.payment-method input[type="radio"] {
    margin-right: 10px;
}

.payment-method label {
    font-weight: 500;
    cursor: pointer;
}

.card-details,
.transfer-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.order-summary {
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-item-image {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

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

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

.order-item-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.order-item-details p {
    font-size: 14px;
    color: #666;
}

.order-item-price {
    font-weight: 700;
}

.summary-totals {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

/* Responsive Checkout */
@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.confirmation-section {
    padding: 100px 0;
    text-align: center;
}

.confirmation-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.order-details {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: left;
}

.order-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Cart Page Styles */
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px 100px 50px;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
}

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

.cart-item-remove .remove-btn {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.cart-item-remove .remove-btn:hover {
    background-color: #ffebee;
}

.cart-item-remove .remove-btn i {
    font-size: 16px;
}

.clear-cart-btn {
    background-color: #f44336;
    color: white;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.clear-cart-btn:hover {
    background-color: #d32f2f;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
    grid-column: 1 / -1;
}

.empty-cart .btn {
    margin-top: 20px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quantity-btn:hover {
    background-color: #f5f5f5;
}

.quantity {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas: 
            "image details"
            "quantity quantity"
            "total remove";
        gap: 10px;
        padding: 15px;
        background: #fff;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .cart-item-image {
        grid-area: image;
        width: 80px;
        height: 80px;
    }
    
    .cart-item-details {
        grid-area: details;
    }
    
    .cart-item-quantity {
        grid-area: quantity;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
    }
    
    .cart-item-total {
        grid-area: total;
        text-align: right;
    }
    
    .cart-item-remove {
        grid-area: remove;
        text-align: right;
    }
}

/* Add these styles to your style.css */
.cart-item-remove .remove-btn {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.cart-item-remove .remove-btn:hover {
    background-color: #ffebee;
}

.cart-item-remove .remove-btn i {
    font-size: 16px;
}