:root {
    --primary-color: #DE5D83;
    --primary-hover: #c94d72;
    --secondary-color: #FFFFFF;
    --bg-light: #FFF9FA;
    --text-dark: #2D2D2D;
    --text-light: #6D6D6D;
    --white: #FFFFFF;
    --shadow: 0 15px 35px rgba(222, 93, 131, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    /* Subtle floral pattern overlay */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DE5D83' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Decorative Background Elements */
.decor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decor-bg i {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.05;
    animation: floatAnim 15s ease-in-out infinite;
}

.decor-1 { font-size: 15rem; top: 10%; right: -5%; transform: rotate(15deg); }
.decor-2 { font-size: 12rem; bottom: 5%; left: -5%; transform: rotate(-20deg); animation-delay: -5s !important; }
.decor-3 { font-size: 18rem; top: 20%; left: -10%; transform: rotate(45deg); animation-delay: -2s !important; }
.decor-4 { font-size: 10rem; bottom: 10%; right: 5%; transform: rotate(-10deg); animation-delay: -8s !important; }

@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(222, 93, 131, 0.3);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    height: 85px;
    transition: var(--transition);
}

#main-header.scrolled .logo img {
    height: 65px;
}

#navbar ul {
    display: flex;
    gap: 2rem;
}

#navbar ul li a {
    font-weight: 500;
    color: var(--text-dark);
}

#navbar ul li a:hover {
    color: var(--primary-color);
}

#navbar.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease;
}

#navbar.active ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding-top: 200px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

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

.badge {
    background-color: rgba(222, 93, 131, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

#hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

#hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    top: 30px;
    right: -30px;
    border-radius: 20px;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Portfolio Section */
#portfolio {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.portfolio-slider-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
    padding: 0 10px;
}

.portfolio-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.portfolio-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.portfolio-item {
    flex: 0 0 calc(33.3333% - 30px);
    margin: 0 15px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.slider-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .portfolio-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .portfolio-item {
        flex: 0 0 calc(100% - 30px);
    }
    .portfolio-slider-container {
        padding: 0;
        display: block;
    }
    .portfolio-slider-wrapper {
        width: 100%;
    }
    .slider-btn {
        position: absolute;
        top: 175px;
        margin-top: -17px;
        width: 35px;
        height: 35px;
        font-size: 16px;
        z-index: 20;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
}

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

.item-img {
    height: 350px;
    overflow: hidden;
}

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

.portfolio-item:hover .item-img img {
    transform: scale(1.1);
}

.item-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-info h3 {
    position: absolute;
    top: 350px;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
    background-color: rgba(222, 93, 131, 0.85);
    color: var(--white);
    padding: 10px 15px;
    margin: 0;
    font-size: 1.15rem;
    z-index: 5;
    box-sizing: border-box;
}

.item-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    max-height: 4.6rem;
    transition: max-height 0.3s ease;
}

.item-info p.truncatable {
    cursor: pointer;
}

.item-info p.truncatable:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
    pointer-events: none;
}

.item-info p.expanded {
    max-height: 20rem;
}

/* Services Section */
.item-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.service-list {
    margin-top: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.district-link {
    color: inherit;
    transition: var(--transition);
}

.district-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

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

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

.stat-card span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

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

/* Contact Section */
#contact {
    padding: 100px 0;
    background: linear-gradient(to top, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.info-items {
    margin: 3rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(222, 93, 131, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: #1a1a1a;
    color: var(--white);
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-content p {
    opacity: 0.5;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.agency-signature {
    display: flex;
    align-items: center;
}

.agency-logo {
    width: 140px;
    height: auto;
    /* Filter to match #DE5D83 (pink) */
    filter: invert(65%) sepia(48%) saturate(541%) hue-rotate(301deg) brightness(91%) contrast(93%);
    opacity: 0.8;
    transition: var(--transition);
}

.agency-logo:hover {
    filter: brightness(0) invert(1); /* Turns white on hover for contrast */
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(222, 93, 131, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #c94d72; /* Slightly darker pink */
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 { font-size: 2.4rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-text p { margin-left: auto; margin-right: auto; font-size: 1rem; }
    .hero-btns { justify-content: center; }
    .hero-image { order: -1; margin-bottom: 2rem; }
    .image-accent { right: 0; top: 20px; left: 20px; }
    .services-wrapper { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    #navbar { display: none; }
    .mobile-menu-btn { display: block; }
    .header-cta { display: none; }
    #hero { padding-top: 180px; }
    .hero-image { margin-top: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    #hero h1 { font-size: 2rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 1rem; }
    .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* Lightbox Modal */
.modal {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
}
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}
#modalCaption {
    margin: 15px auto 0;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #f1f1f1;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}
.close-modal {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}
.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}
.clickable-img {
    cursor: pointer;
}
@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Order Form Modal */
.form-modal {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.close-order-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}
.close-order-modal:hover {
    color: var(--primary-color);
}
.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}
.modal-header h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Product Detail Page Styles */
.product-detail-page {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: var(--bg-light);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-image-col img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.product-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

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

.product-description-large {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: var(--primary-color);
}

.product-action-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price-large {
        font-size: 1.5rem;
    }
    
    .product-description-large {
        font-size: 0.95rem;
    }
    
    .product-features li {
        font-size: 0.9rem;
    }
    
    .product-action-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .product-detail-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

.order-product-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
}
.order-form .form-group {
    margin-bottom: 0.8rem;
    text-align: left;
}
.order-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.order-form .required {
    color: var(--primary-color);
}
.order-form input[type="text"],
.order-form input[type="tel"],
.order-form input[type="date"],
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9f9f9;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(222, 93, 131, 0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.checkbox-group label {
    margin-bottom: 0;
    font-weight: 500;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-light);
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}
.divider span {
    padding: 0 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.submit-order-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    border: none;
}
@media (max-width: 768px) {
    .form-row, .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .checkbox-group {
        margin-top: -0.5rem;
    }
    .form-modal {
        padding: 1.5rem;
    }
}

/* Portfolio Grid for Aranjmanlar Page */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
.loading-spinner {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    display: none;
}

/* Filters for Aranjmanlar Page */
.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}
.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
}
.filter-select {
    padding: 0.6rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--white);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}
.filter-select:focus {
    border-color: var(--primary-color);
}
.item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
