* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f7f7f7;
    color: #2c2c2c;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #f2385a;
}

.logo span {
    color: #212121;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #212121;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f2385a;
}

.header-actions {
    display: flex;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 0 1 300px; 
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    height: 38px;
    padding: 8px 40px 8px 40px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background-color: #f5f5f6;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #282c3f;
    outline: none;
    transition: all 0.2s ease;
}

.search-box input::placeholder {
    color: #7e818c;
    font-size: 14px;
}

.search-box input:focus {
    border-color: #d4d5d9;
    background-color: #fff;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #696e79;
    font-size: 16px;
    pointer-events: none;
}


.action-item {
    margin-left: 15px;
    position: relative;
    cursor: pointer;
}

.action-item i {
    font-size: 22px;
    color: #212121;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #f2385a;
    color: #fff;
    font-size: 11px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.hero-slide-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-slide-content .btn {
    background-color: #f2385a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-slide-content .btn:hover {
    background-color: #d32f45;
    transform: translateY(-2px);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: #f2385a;
}

.hero-prev {
    left: 15px;
}

.hero-next {
    right: 15px;
}

/* Categories */
.categories {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #212121;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px;
    font-size: 18px;
    color: #212121;
    font-weight: 600;
}

/* Products */
.products {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.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-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f2385a;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-actions button {
    background-color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.product-actions button:hover {
    background-color: #f2385a;
    color: #fff;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212121;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #f2385a;
    margin-right: 10px;
}

.original-price {
    font-size: 16px;
    color: #95a5a6;
    text-decoration: line-through;
}

.product-rating i {
    color: #f1c40f;
    margin-right: 2px;
}

.rating-count {
    margin-left: 5px;
    color: #7f8c8d;
    font-size: 14px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: #212121;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #333;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 20px;
    color: #212121;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #212121;
}

.cart-item-price {
    color: #f2385a;
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity {
    margin: 0 10px;
    font-weight: 600;
}

.remove-item {
    margin-left: auto;
    color: #f2385a;
    cursor: pointer;
    font-size: 14px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background-color: #f2385a;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.checkout-btn:hover {
    background-color: #d32f45;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #7f8c8d;
}

.empty-cart i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ddd;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Customer Modal */
.customer-modal {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    z-index:1001;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition: all 0.3s;
}

.customer-modal.active {
    opacity:1;
    visibility:visible;
}

.customer-modal-content {
    background:#fff;
    border-radius:10px;
    width:90%;
    max-width:600px;
    max-height:90vh;
    overflow-y:auto;
    padding:30px;
    transform:scale(0.9);
    transition: transform 0.3s;
}

.customer-modal.active .customer-modal-content {
    transform:scale(1);
}

.customer-modal-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.customer-modal-header h3 {
    font-size:24px;
    color:#212121;
}

.close-modal {
    background:none;
    border:none;
    font-size:24px;
    cursor:pointer;
    color:#7f8c8d;
}

.form-group {
    margin-bottom:20px;
}

.form-group label {
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#212121;
}

.form-group input,
.form-group textarea,
.form-group select {
    width:100%;
    padding:10px 15px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:16px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.order-summary h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-weight: 600;
    font-size: 18px;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.back-btn {
    flex: 1;
    padding: 12px;
    background-color: #95a5a6;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn {
    flex: 2;
    padding: 12px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

/* Product Details Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.close-product-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-modal-images {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-images img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
}

.product-modal-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-modal-header {
    border-bottom: 1px solid #eaeaec;
    padding-bottom: 20px;
}

.product-modal-header h2 {
    font-size: 14px;
    color: #e74c3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-modal-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-modal-price .current-price {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

.product-modal-price .original-price {
    font-size: 18px;
    color: #95a5a6;
    text-decoration: line-through;
}

.product-modal-price .discount {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.product-modal-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-modal-section p {
    font-size: 14px;
    color: #535766;
    line-height: 1.6;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 14px;
    color: #535766;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.specifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-key {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.spec-value {
    color: #535766;
    font-size: 14px;
}

.product-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eaeaec;
}

.add-to-cart-modal {
    flex: 2;
    padding: 15px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.wishlist-btn-modal {
    flex: 1;
    padding: 15px;
    background: #f5f5f6;
    color: #2c3e50;
    border: 1px solid #d4d5d9;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 40px 30px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.success-modal.active .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.order-details {
    text-align: left;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.order-details p {
    margin-bottom: 8px;
}

.success-message {
    font-size: 14px;
    color: #535766;
    margin: 16px 0;
    line-height: 1.5;
}

.continue-shopping-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
}

.continue-shopping-btn:hover {
    background: #c0392b;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo .logo-image {
    max-height: 35px;
    width: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: #404040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #ff3f6c;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff3f6c;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.4;
}

.contact-item i {
    color: #ff3f6c;
    margin-top: 2px;
    min-width: 16px;
}

.payment-methods h4 {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 24px;
    color: #b0b0b0;
    transition: color 0.3s;
}

.payment-icons i:hover {
    color: #ff3f6c;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff3f6c;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
        gap: 30px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / 2;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-item {
        font-size: 13px;
    }
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    nav ul {
        display: none;
    }
    
    .cart-sidebar {
        width: 350px;
    }
    
    .product-modal-body {
        grid-template-columns: 1fr;
    }
    
    .product-modal-images {
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 768px) {

    .logo-image {
        height: 28px;
    }

    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .search-box {
        display: none;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .product-modal-content {
        width: 95%;
    }
    
    .product-modal-details {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-modal-actions {
        flex-direction: column;
    }
}

.logo {
    flex-shrink: 0;
}

.logo-image {
    height: 36px;
    width: auto;
}

#cartSidebar {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#cartSidebar.open {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .cart-sidebar {
    width: 80%;
    transform: translateX(100%);
  }

  .cart-sidebar.open {
    transform: translateX(0);
  }
}

.price-details {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #535766;
}

.price-row.total {
    font-weight: 700;
    color: #282c3f;
    font-size: 16px;
    border-top: 1px dashed #d4d5d9;
    padding-top: 8px;
    margin-top: 8px;
}

.discount-text {
    color: #03a685;
}

/* --- Buy Now Buttons --- */
.buy-now-btn,
.buy-now-btn-modal {
  background-color: #ff3f6c; /* Myntra pink */
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buy-now-btn:hover,
.buy-now-btn-modal:hover {
  background-color: #e91e63;
}

/* Adjust in modal */
.product-modal-actions {
  display: flex;
  gap: 10px;
}

.add-to-cart-modal,
.buy-now-btn-modal {
  flex: 1;
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
  .product-card .product-buttons {
    flex-direction: column;
  }

  .add-to-cart,
  .buy-now-btn {
    width: 100%;
  }
}
/* Dual Button Layout for Product Cards */
.product-actions-dual {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.add-to-cart {
    flex: 1;
    padding: 10px;
    background-color: #ff3f6c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #e6395f;
}

.add-to-cart.added {
    background-color: #24a887;
}

.buy-now-btn {
    flex: 1;
    padding: 10px;
    background: linear-gradient(135deg, #ff3f6c, #ff6b9c);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.buy-now-btn:hover {
    background: linear-gradient(135deg, #e6395f, #ff527e);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 63, 108, 0.3);
}

.buy-now-btn i {
    font-size: 14px;
}