:root {
    --green: #2f6b3f;
    --green-50:rgb(47, 107, 63, 0.5);
    --green-30:rgb(47, 107, 63, 0.3);
    --green-bg:rgb(47, 107, 63, 0.05);
    --ciotolandia-green: #2f6b3f;
    --orange: #f26b2a;
    --orange-50: rgb(242, 107, 42, 0.5);
    --ciotolandia-orange: #f26b2a;
    --text: #2b2b2b;
}

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

html,
body {
    font-family:
        system-ui,
        -apple-system,
        sans-serif;
    color: var(--text);
    background-color: white;
    overflow-x: hidden !important;
}

#gif-loader {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("/gifs/dog-boxes.gif");
    position: fixed;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: 15%;
    background-color: white;
    background-position: center;
    top: 0;
    transition: 0.3s;
}

#gif-loader.shown {
    opacity: 1;
    z-index: 1001;
}

.color-green {
    color: var(--ciotolandia-green) !important;
}
.color-orange {
    color: var(--ciotolandia-orange) !important;
}

section.hero {
    height: 70dvh;
    background-image: url(/images/home/hero.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.hero h2 {
    font-size: 4.5rem;
    font-family: Jost;
    font-weight: 800;
    color: var(--ciotolandia-orange);
    text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.8);
}

section.hero p {
    font-size: 3rem;
    font-family: Jost;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

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

.hero-image img {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
}

.btn {
    padding: 0.9rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn.primary {
    background: var(--orange);
    color: white;
    transition: all 0.3s;
}

.btn.primary:hover {
    transform: translateY(-5%);
    transform: scale(105%);
}

.btn.secondary {
    background: var(--green);
    color: white;
    border: none;
}

.btn.link {
    color: var(--green);
}

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

.card {
    background: #fff9;
    padding: 1.5rem;
    border-radius: 16px;
}

.card.profile {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    padding: 20px;
    transform: rotateZ(-1.5deg);
}

.why h3 {
    color: var(--ciotolandia-green);
    font-weight: 800;
    font-size: 2rem;
    font-family: Jost;
}

.card.profile ul {
    padding: 0;
    list-style: none;
}

.dog-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dog-info img {
    width: 25%;
}

.dog-info .dog-name {
    font-weight: 550;
    font-size: 23px;
    color: #2f6b3f;
}

.cta {
    text-align: center;
    margin-top: 3rem;
}

/* Cursore personalizzato per elementi clickabili */
a,
button,
[role="button"],
.btn,
input[type="submit"],
input[type="button"],
select,
[onclick],
[cursor="pointer"],
*[style*="cursor:pointer"],
*[style*="cursor: pointer"] {
    /* cursor: url('/images/paw-cursor.png'), pointer !important; */
    /* cursor: url('/images/paw-cursor-orange.webp'), pointer !important; */
    cursor: url("/images/paw-cursor-inv.webp"), pointer !important;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.mobile .hero-image img {
    position: relative;
    width: 100vw;
    top: unset;
    right: unset;
    z-index: 1;
}

.mobile .hero h1 {
    font-size: 2.5rem;
    text-shadow: 1px 1px 10px white;
}

.mobile .hero-actions {
    justify-content: center;
}

@media (max-width: 900px) {
    .hero {
        padding: 0;
    }
}

.first-topnav {
    background-color: #f26b2a;
}

.second-topnav {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}

.second-topnav .navbar-brand:hover svg {
    transform: scale(1.05) rotate(5deg);
    transition: transform 0.3s ease;
}

.nav-link-custom {
    color: var(--green) !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link-custom:hover {
    color: var(--green) !important;
    transform: translateY(-2px);
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link-custom:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown-toggle-custom {
    color: var(--green) !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-toggle-custom:hover {
    color: var(--green) !important;
    transform: translateY(-2px);
}

.dropdown-toggle-custom::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.dropdown-toggle-custom:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.second-topnav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-top: 8px;
    overflow: hidden;
}

.second-topnav .dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.second-topnav .dropdown-item:hover {
    background: linear-gradient(
        90deg,
        rgba(47, 107, 63, 0.1),
        rgba(242, 107, 42, 0.05)
    );
    color: var(--green);
    transform: translateX(8px);
}

.btn-cta-outline {
    border: 2px solid var(--green);
    color: var(--green);
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--orange));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-cta-outline:hover::before {
    left: 0;
}

.btn-cta-outline:hover {
    color: white;
    border-color: var(--green);
}

.btn-cta-solid {
    background: var(--ciotolandia-green);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 63, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-solid:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 107, 63, 0.4);
    background: linear-gradient(135deg, var(--orange), var(--green));
}

.second-topnav .navbar-toggler {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.second-topnav .navbar-toggler:hover {
    background-color: rgba(47, 107, 63, 0.1);
    transform: scale(1.05);
}

.third-topnav {
    background: linear-gradient(135deg, var(--orange) 0%, #e55a1f 80%);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.third-topnav .promo-text {
    flex: 1;
}

.newsletter-input {
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border: none;
    outline: none;
}

.newsletter-input::placeholder {
    color: #666;
    font-weight: 500;
}

.btn-newsletter {
    background: var(--green);
    border: none;
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transition: left 0.3s ease;
}

.btn-newsletter:hover {
    background: #245a34;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-newsletter:hover::before {
    left: 0;
}

@media (max-width: 768px) {
    .third-topnav .promo-text .small {
        display: none;
    }

    .third-topnav .promo-text span {
        font-size: 0.9rem;
    }

    .newsletter-input {
        max-width: 150px !important;
    }

    /* Header Mobile Improvements */
    .second-topnav {
        padding: 8px 0;
    }

    .second-topnav .navbar-brand svg {
        width: 160px;
        height: 32px;
    }

    .second-topnav .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
        border: 2px solid var(--green);
        border-radius: 6px;
    }

    .second-topnav .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(47, 107, 63, 0.25);
    }

    .second-topnav .navbar-collapse {
        margin-top: 1rem;
        border-top: 1px solid #e9ecef;
        padding-top: 1rem;
    }

    .second-topnav .navbar-nav {
        margin-bottom: 1rem;
    }

    .second-topnav .nav-item {
        margin-bottom: 0.5rem;
    }

    .nav-link-custom {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        background: rgba(47, 107, 63, 0.05);
        margin-bottom: 0.25rem;
        display: block;
        text-align: center;
    }

    .nav-link-custom:hover {
        background: rgba(47, 107, 63, 0.1);
        transform: none;
    }

    .nav-link-custom::after {
        display: none;
    }

    .dropdown-toggle-custom {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        background: rgba(47, 107, 63, 0.05);
        margin-bottom: 0.25rem;
        display: block;
        text-align: center;
    }

    .dropdown-toggle-custom:hover {
        background: rgba(47, 107, 63, 0.1);
        transform: none;
    }

    .dropdown-toggle-custom::after {
        display: none;
    }

    .second-topnav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0.5rem 0;
        border: none;
        box-shadow: none;
        background: rgba(47, 107, 63, 0.02);
        border-radius: 8px;
    }

    .second-topnav .dropdown-item {
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 6px;
        margin: 0.25rem;
    }

    /* CTA Buttons Mobile */
    .second-topnav .d-flex.gap-2 {
        flex-direction: column;
        gap: 0.75rem !important;
        margin-top: 0.5rem;
    }

    .btn-cta-outline,
    .btn-cta-solid {
        width: 100%;
        padding: 0.875rem 1.5rem !important;
        text-align: center;
        font-size: 1rem;
    }

    /* Third topnav mobile */
    .third-topnav {
        padding: 0.75rem 0;
    }

    .third-topnav .container .row {
        text-align: center;
    }

    .third-topnav span {
        font-size: 0.85rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .second-topnav .navbar-brand svg {
        width: 140px;
        height: 28px;
    }

    .third-topnav span {
        font-size: 0.8rem !important;
    }

    .nav-link-custom,
    .dropdown-toggle-custom {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.95rem;
    }

    .btn-cta-outline,
    .btn-cta-solid {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.footer {
    background: url("/images/bg-patt.jpg"), #f8f9fa;
    background-size: 15%;
    background-attachment: fixed;
    position: relative;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.65);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--green);
    text-decoration: none;
}

.contact-info {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.contact-info strong {
    color: var(--text);
}

.social-links {
    display: flex;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green);
    color: white;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.payment-info strong {
    color: var(--text);
    font-size: 0.95rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.payment-logo {
    height: 36px;
    width: auto;
    border-radius: 6px;
    background: white;
    padding: 8px 13px;
    border: 1px solid #999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-divider {
    border-color: #dee2e6;
    margin: 2rem 0 1.5rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    color: var(--orange) !important;
    font-weight: 700;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.syrus-link {
    color: var(--green);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.syrus-link:hover {
    color: var(--orange);
    text-decoration: underline;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legal-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--green);
    text-decoration: none;
}

.copyright {
    font-size: 0.85rem;
    color: #6c757d;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .social-links {
        justify-content: flex-start;
        margin-bottom: 1rem;
    }

    .legal-links {
        justify-content: center;
        gap: 0.75rem;
    }

    .legal-link {
        font-size: 0.8rem;
    }

    .payment-methods {
        justify-content: flex-start;
    }

    .payment-logo {
        height: 31px;
        padding: 6px 10px;
    }
}

.second-topnav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Pulsante arancione normale */
.dogbone-btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 107, 42, 0.3);
}

.dogbone-btn:hover {
    background: #e55a1f;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 107, 42, 0.4);
}

/* Sezione How It Works */
.how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why h2,
.how-it-works h2 {
    color: #4e4e4e;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why .subtitle,
.how-it-works .subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

section.how-it-works > .container {
    max-width: 800;
}

.step-card {
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
    height: 100%;
}

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

.step-image {
    position: relative;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.step-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.step-card:hover .step-image img {
    transform: scale(1.02);
}

.step-number {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(47, 107, 63, 0.2);
}

.step-title {
    color: var(--ciotolandia-green);
    font-weight: 800;
    font-size: 1.3rem;
    font-family: Jost;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

section.empty-bowls {
    height: 250px;
    background-image: url(/images/home/empty-bowls-2.webp);
    background-position: 0px -70px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.empty-bowls::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(13, 96, 0, 0.4);
}

section.empty-bowls > .container {
    z-index: 2;
}

section.empty-bowls h2 {
    color: white;
    font-family: Jost;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

section.empty-bowls p {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

section.our-meals {
    background-color: var(--ciotolandia-orange);
}

section.our-meals * {
    color: white;
}

section.our-meals .subtitle {
    font-size: 1.5rem;
}

section.our-meals h3 {
    font-weight: 800;
    font-size: 3rem;
}

section.our-meals ul {
    list-style: none;
    padding: 0;
}

section.our-meals ul li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
}

section.our-meals ul li .recipe-number {
    font-size: 1.5rem;
    background-color: #e34a00;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-family: Jost;
    line-height: 1;
    border: 1px solid white;
    aspect-ratio: 1;
}

section.our-meals .recipe-image > img {
    filter: drop-shadow(4px 10px 3px rgba(0, 0, 0, 0.3));
}

/* AUTH */

/* FORM */

.ciot-checkbox-primary:checked {
    accent-color: var(--ciotolandia-orange);
    background-color: var(--ciotolandia-orange);
    border-color: var(--ciotolandia-orange);
}

.ciot-checkbox-secondary:checked {
    accent-color: var(--ciotolandia-green);
    background-color: var(--ciotolandia-green);
    border-color: var(--ciotolandia-orange);
}

.auth-panel-h {
    position: relative;
}

.auth-panel-h .background {
    background: rgb(255 107 53 / 0.1); 
    transform: rotate(-2deg) scale(103%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.auth-panel-h img {
    position: relative;
    z-index: 2;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1;
}

/* User Widget */
.user-widget {
    z-index: 1050;
}

.user-widget-trigger {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.user-widget-trigger:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.user-widget-trigger.show {
    background-color: rgba(255, 255, 255, 0.25);
}

.user-widget-avatar {
    border: 2px solid rgba(255, 255, 255, 0.5);
    object-fit: cover;
}

.user-widget-text {
    color: #333;
    font-size: 0.9rem;
}

.user-widget-dropdown {
    min-width: 220px;
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.user-widget-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.user-widget-dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--ciotolandia-orange);
    transform: translateX(4px);
}

.user-widget-dropdown-item.active {
    background-color: rgba(242, 107, 42, 0.1);
    color: var(--ciotolandia-orange);
    font-weight: 600;
}

.user-widget-dropdown-item.text-danger:hover {
    color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1);
}

.user-widget-dropdown-item i {
    width: 16px;
    flex-shrink: 0;
}

.user-widget-dropdown .badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
}

@media (max-width: 991px) {
    .user-widget-text {
        display: none !important;
    }

    .user-widget-dropdown {
        min-width: 200px;
        right: 0 !important;
        left: auto !important;
    }
}

.checkout {
    min-height: 100vh;
    background-color: antiquewhite;
}

.checkout .real-price {
    opacity: .5;
    font-size: 14px;
}

.checkout .price-applied {
    font-size: 22px;
    color: var(--ciotolandia-green);
    font-weight: bold;
    letter-spacing: 1px;
}

.checkout .coupon-link {
    display: block;
    text-align: end;
}

.checkout .trial-terminated {
    color: grey;
    font-size: 12px;
    text-align: center;
    margin-bottom: 3rem;
}

.row-product-checkout {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 10px 0;
}

.row-product-checkout:not(:last-child) {
    border-bottom: 1px solid lightgray;
}

.row-product-checkout img {
    width: 17%;
}

.row-product-checkout p:first-child {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.row-product-checkout p:last-child {
    font-size: 14px;
    margin: 0;
}

.row-product-checkout .qty {
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-left: auto;
}

.row-product-checkout .qty .num {
    border: 1px solid lightgray;
    width: 50%;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.row-product-checkout .qty .arrows {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    gap: 5px;
}

.row-product-checkout .qty .arrows i {
    border: 1px solid lightgray;
    padding: 0 3px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

.row-product-checkout .qty .arrows i.disabled {
    opacity: .3;
    background-color: lightgray;
    cursor: not-allowed;
}

.checkout .remaining {
    color: var(--ciotolandia-orange);
    margin: 30px 0;
    text-align: center;
    font-size: 13px;
}