        :root {
            --primary-color: #D64545;
            --secondary-color: #2C3E50;
            --accent-color: #F0C869;
            --background-color: #F5F5F5;
            --text-color: #333;
        }

        body {
            scroll-behavior: smooth;
            font-family: 'Noto Sans JP', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: var(--text-color);
            line-height: 1.6;
        }



        footer {
            background-color: var(--secondary-color);
            color: #fff;
            padding: 3em 0;
            margin-top: 3em;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2em;
            box-sizing: border-box;
        }

        .footer-contact {
            margin-bottom: 2em;
        }

        .footer-contact h4,
        .footer-map h4 {
            font-size: 1.2em;
            margin-bottom: 1em;
            position: relative;
            padding-bottom: 0.5em;
            display: inline-block;

        }

        .footer-contact h4::after,
        .footer-map h4::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
            transform: translateX(-50%);
        }

        .footer-contact p {
            margin-bottom: 0.5em;
        }

        .social-links {
            display: flex;
            display: none;
            gap: 1em;
            margin-top: 1em;
            justify-content: center;
        }

        .social-links a {
            color: #fff;
            text-decoration: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent-color);
        }

        .social-links svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-map {
            width: 100%;
            max-width: 600px;
        }

        .footer-map h4 {
            font-size: 1.2em;
            margin-bottom: 1em;
        }

        .footer-map iframe {
            width: 100%;
            height: 250px;
            border: none;
            border-radius: 10px;
        }

        main {
            max-width: none;
            margin: 0px auto 0 !important;
            padding: 0em;
        }

        .cart-hero {
            background-image: url(../img/johny\ web\ brána\ barva\ 4.3\(1\).png);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .cart-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(240, 200, 105, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
            pointer-events: none;
        }

        .cart-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            max-width: 850px;
            padding: 50px 60px;
            background: linear-gradient(rgba(46, 46, 46, 0.85), rgba(49, 49, 49, 0.85));
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .cart-hero-content:hover {
            transform: translateY(-5px);
        }

        h1 {
            font-size: 3.2em;
            margin: 0 0 0.4em 0;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            color: #fff;
        }

        .cart-hero p {
            font-size: 1.3em;
            margin: 0;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            line-height: 1.6;
        }

        .cart-content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2em 6rem;
        }

        #cart-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .cart-item {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(214, 69, 69, 0.1);
            position: relative;
            overflow: hidden;
        }

        .cart-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            border-radius: 20px 20px 0 0;
        }

        .cart-item:hover::before {
            transform: scaleX(1);
        }

        .cart-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(214, 69, 69, 0.15);
            border-color: rgba(214, 69, 69, 0.3);
        }

        .cart-item-content {
            display: flex;
            flex-direction: column;
        }

        .cart-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: transform 0.5s ease, filter 0.3s ease;
            filter: brightness(1);
        }

        .cart-item:hover img {
            transform: scale(1.05);
            filter: brightness(1.05);
        }

        .cart-item-details {
            flex-grow: 1;
        }

        .cart-item h3 {
            margin: 0 0 15px;
            font-size: 1.5em;
            font-weight: 700;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        .cart-item:hover h3 {
            color: var(--primary-color);
            transform: translateX(3px);
        }

        .cart-item p {
            margin: 8px 0;
            font-size: 1.1em;
            color: #666;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            margin: 15px 0;
            justify-content: center;
            gap: 15px;
        }

        .quantity-control button {
            background: linear-gradient(135deg, var(--secondary-color), #1a2634);
            color: #fff;
            border: none;
            width: 45px;
            height: 45px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50%;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
        }

        .quantity-control button:hover {
            background: linear-gradient(135deg, var(--primary-color), #BE3232);
            transform: scale(1.15);
            box-shadow: 0 8px 20px rgba(214, 69, 69, 0.4);
        }

        .quantity-control button:active {
            transform: scale(0.95);
        }

        .quantity-control .quantity {
            min-width: 50px;
            text-align: center;
            font-size: 1.3em;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .remove-button {
            background: linear-gradient(135deg, var(--primary-color), #BE3232);
            color: #fff;
            border: none;
            padding: 12px 24px;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-top: 15px;
            font-size: 1em;
            font-weight: 600;
            align-self: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(214, 69, 69, 0.3);
        }

        .remove-button::before {
            content: '×';
            font-size: 1.5em;
            line-height: 1;
        }

        .remove-button:hover {
            background: linear-gradient(135deg, #BE3232, var(--primary-color));
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(214, 69, 69, 0.4);
        }

        .remove-button:active {
            transform: scale(0.95);
        }

        #cart-summary {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2.5rem;
            margin-bottom: 3rem;
            border: 2px solid rgba(214, 69, 69, 0.1);
            position: relative;
            overflow: hidden;
        }

        #cart-summary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 20px 20px 0 0;
        }

        #cart-summary h2 {
            color: var(--secondary-color);
            font-size: 1.8em;
            margin: 0 0 1.5rem 0;
            font-weight: 700;
            text-align: center;
        }

        #cart-summary p {
            font-size: 1.3em;
            font-weight: 600;
            color: var(--text-color);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        #cart-summary #total-price {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 1.3em;
        }

        #checkout-button {
            background: linear-gradient(135deg, var(--accent-color) 0%, #E6B84D 100%);
            color: var(--text-color);
            border: none;
            padding: 18px 40px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin: 0 auto;
            box-shadow: 0 8px 25px rgba(240, 200, 105, 0.4);
            position: relative;
            overflow: hidden;
        }

        #checkout-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        #checkout-button:hover::before {
            left: 100%;
        }

        #checkout-button:hover {
            background: linear-gradient(135deg, #E6B84D 0%, var(--accent-color) 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(240, 200, 105, 0.5);
        }

        #checkout-button:active {
            transform: scale(0.95);
        }

        #checkout-form {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2.5rem;
            margin-bottom: 3rem;
            border: 2px solid rgba(214, 69, 69, 0.1);
            position: relative;
            overflow: hidden;
        }

        #checkout-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 20px 20px 0 0;
        }

        #checkout-form h2 {
            color: var(--secondary-color);
            font-size: 2em;
            margin: 0 0 2rem 0;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        #order-form {
            display: grid;
            gap: 25px;
        }

        #order-form label {
            font-weight: 600;
            font-size: 1.05em;
            color: var(--secondary-color);
            margin-bottom: 8px;
            display: block;
        }

        #order-form input,
        #order-form textarea {
            width: 97%;
            padding: 14px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1em;
            transition: all 0.3s ease;
            background: white;
            font-family: inherit;
        }

        #order-form input:focus,
        #order-form textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.1);
        }

        #order-form button[type="submit"] {
            background: linear-gradient(135deg, var(--primary-color), #BE3232);
            color: #fff;
            border: none;
            padding: 18px 40px;
            font-size: 1.2em;
            font-weight: 700;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 25px rgba(214, 69, 69, 0.4);
            margin-top: 1rem;
        }

        #order-form button[type="submit"]:hover {
            background: linear-gradient(135deg, #BE3232, var(--primary-color));
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 35px rgba(214, 69, 69, 0.5);
        }

        #order-form button[type="submit"]:active {
            transform: scale(0.95);
        }

        .empty-cart {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(214, 69, 69, 0.1);
            position: relative;
            overflow: hidden;
        }

        .empty-cart::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 20px 20px 0 0;
        }

        .empty-cart h2 {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2.2em;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .empty-cart p {
            color: var(--text-color);
            font-size: 1.2em;
            margin-bottom: 2rem;
            opacity: 0.85;
        }

        .continue-shopping {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), #BE3232);
            color: #fff;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1em;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 20px rgba(214, 69, 69, 0.3);
        }

        .continue-shopping:hover {
            background: linear-gradient(135deg, #BE3232, var(--primary-color));
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 30px rgba(214, 69, 69, 0.4);
        }

        #address-suggestions {
            position: relative;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            max-height: 200px;
            overflow-y: auto;
            width: 99%;
            margin-top: 5px;
            z-index: 1000;
        }

        #address-suggestions div {
            padding: 10px 15px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        #address-suggestions div:hover {
            background-color: #f0f0f0;
        }

        #address-suggestions div:not(:last-child) {
            border-bottom: 1px solid #eee;
        }

        .address-wrapper {
            position: relative;
        }

        .terms {
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            margin-bottom: 10px;
        }

        .terms input {
            width: fit-content;
            margin-right: 10px;
        }

        .terms label {
            margin-right: 10px;
            width: 100%;
        }



        .order-summary {
            margin: 30px 0;
            padding: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 2px solid rgba(214, 69, 69, 0.08);
        }

        .order-summary h3 {
            color: var(--secondary-color);
            font-size: 1.5em;
            margin-bottom: 1.5rem;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-color);
            font-weight: 700;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin: 12px 0;
            padding: 8px 0;
            font-size: 1.1em;
            color: #666;
        }

        .summary-item.total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 3px solid var(--accent-color);
            font-weight: 700;
            font-size: 1.3em;
            color: var(--secondary-color);
        }

        .summary-item.total span:last-child {
            color: var(--primary-color);
        }

        .shipping-methods {
            margin: 20px 0;
            padding: 2rem;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            border: 2px solid rgba(214, 69, 69, 0.08);
        }

        .shipping-methods h3 {
            color: var(--secondary-color);
            font-size: 1.5em;
            margin-bottom: 1.5rem;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-color);
            font-weight: 700;
        }

        .shipping-option {
            margin: 15px 0;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid #e0e0e0;
        }

        .shipping-option:hover {
            background: rgba(214, 69, 69, 0.05);
            border-color: var(--primary-color);
            transform: translateX(5px);
        }

        .shipping-option input[type="radio"] {
            width: 22px !important;
            height: 22px;
            margin-right: 18px;
            cursor: pointer;
            flex-shrink: 0;
            flex-basis: auto !important;
            accent-color: var(--primary-color);
        }

        .shipping-option label {
            display: flex;
            align-items: center;
            flex-grow: 1;
            font-size: 1.1em;
            font-weight: 600;
            color: var(--text-color);
            cursor: pointer;
            margin: 0;
            padding: 0;
        }

        .shipping-option-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding-right: 15px;
        }

        .shipping-price {
            font-weight: 700;
            color: var(--secondary-color);
            margin-left: auto;
            font-size: 1.1em;
        }

        #packeta-branch-select {
            margin-top: 15px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border: 2px solid #e0e0e0;
        }

        #packeta-branch-select label {
            display: block;
            margin-bottom: 12px;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.05em;
        }

        #packeta-widget-button {
            background: linear-gradient(135deg, var(--secondary-color), #1a2634);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            cursor: pointer;
            display: inline-block;
            margin: 10px 0;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1em;
            text-align: center;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
        }

        #packeta-widget-button:hover {
            background: linear-gradient(135deg, var(--primary-color), #BE3232);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(214, 69, 69, 0.4);
        }

        #packeta-widget-button:active {
            transform: translateY(0);
        }

        #packeta {
            width: 20px;
            height: 20px;
        }

        #dpd {
            width: 20px;
            height: 20px;
        }

        #address-label,
        #address-wrapper {
            display: none !important;
        }

        .payment-info {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 2.5rem;
            margin: 3rem 0;
            border: 2px solid rgba(214, 69, 69, 0.1);
            position: relative;
            overflow: hidden;
        }

        .payment-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 20px 20px 0 0;
        }

        .payment-info h2 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 12px;
            border-bottom: 3px solid var(--accent-color);
            font-size: 2em;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .payment-info h3 {
            color: var(--secondary-color);
            margin: 25px 0 15px;
            font-size: 1.3em;
            font-weight: 700;
        }

        .payment-info ul {
            list-style: none;
            padding-left: 0;
        }

        .payment-info ul li {
            margin: 12px 0;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }

        .payment-info ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2em;
        }

        .payment-info a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .payment-info a:hover {
            border-bottom-color: var(--primary-color);
        }

        .contact-info {
            margin-top: 30px;
            padding: 20px 25px;
            background: white;
            border-radius: 12px;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .contact-info h3 {
            margin-top: 0;
        }

        @media (max-width: 968px) {
            .cart-hero {
                min-height: 40vh;
            }

            .cart-hero-content {
                padding: 40px 30px;
            }

            h1 {
                font-size: 2.5em;
            }

            .cart-hero p {
                font-size: 1.15em;
            }

            .cart-content-wrapper {
                padding: 0 1.5em 4rem;
            }

            #cart-items {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .cart-hero-content {
                padding: 30px 20px;
            }

            h1 {
                font-size: 2em;
            }

            .cart-hero p {
                font-size: 1em;
            }

            #cart-summary,
            #checkout-form,
            .payment-info {
                padding: 1.5rem;
            }

            .order-summary,
            .shipping-methods {
                padding: 1.5rem;
            }

            #checkout-button,
            #order-form button[type="submit"] {
                padding: 15px 30px;
                font-size: 1.1em;
            }
        }

        @media (max-width: 480px) {
            .cart-content-wrapper {
                padding: 0 1em 3rem;
            }

            .cart-item img {
                height: 200px;
            }

            h1 {
                font-size: 1.8em;
            }
        }

        .coupon-container {
            margin: 20px 0;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .coupon-title {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .coupon-input {
            display: flex;
            gap: 8px;
            width: 100%;
        }

        .coupon-input input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #eee;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.2s ease;
            background-color: #f8f9fa;
            width: 100%;
        }

        .coupon-input input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.1);
        }

        .coupon-input input::placeholder {
            color: #aaa;
        }

        .coupon-input button {
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s ease;
            white-space: nowrap;
            min-width: 120px;
        }

        .coupon-input button:hover {
            background-color: #c13e3e;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .coupon-input button:active {
            transform: translateY(0);
            box-shadow: none;
        }

        @keyframes successPulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
            }
        }

        .coupon-success {
            animation: successPulse 0.3s ease;
        }

        .discount-message {
            margin-top: 10px;
            padding: 8px 0;
            font-size: 14px;
            transition: all 0.3s ease;
            opacity: 0;
            height: 0;
        }

        .discount-message.success {
            color: #2ecc71;
            opacity: 1;
            height: auto;
            padding: 8px 12px;
            background-color: #f0fff4;
            border-radius: 4px;
            border-left: 3px solid #2ecc71;
        }

        .discount-message.error {
            color: #e74c3c;
            opacity: 1;
            height: auto;
            padding: 8px 12px;
            background-color: #fff5f5;
            border-radius: 4px;
            border-left: 3px solid #e74c3c;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .coupon-message {
            animation: slideDown 0.3s ease forwards;
        }

        .coupon-container {
            margin: 20px 0;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background-color: #f9f9f9;
        }

        .coupon-input {
            display: flex;
            gap: 10px;
            max-width: 400px;
        }

        .coupon-input input {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            flex-grow: 1;
            font-size: 14px;
        }

        .coupon-input input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 3px rgba(214, 69, 69, 0.2);
        }

        .coupon-input button {
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s ease;
        }

        .coupon-input button:hover {
            background-color: #c13e3e;
        }

        .coupon-input button:active {
            transform: translateY(1px);
        }