   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        html{
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Arial', sans-serif;
            background: #ffffff;
            overflow-x: hidden;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            margin-bottom:30px;
            background: white;
            position: relative;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: #1a1a1a;
            border-radius: 15%;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid #5a0000;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 11px;
            border: 3px solid #1a1a1a;
            transform: rotate(-8deg);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: rotate(0deg);
        }

        .logo-text {
            font-size: 16px;
            letter-spacing: 2px;
        }

        .nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .order-btn {
            background: #900202;
            color: white!important;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .burger {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        .burger span {
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .burger.open span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .burger.open span:nth-child(2) {
            opacity: 0;
        }

        .burger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: right 0.4s ease;
            z-index: 1000;
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar.open {
            right: 0;
        }

        .sidebar a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .sidebar .order-btn {
            margin-top: 20px;
            display: inline-flex;
            justify-content: center;
        }

        .cart-tab {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ff6b35;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 10px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255,107,53,0.4);
            z-index: 999;
            transition: transform 0.3s ease;
        }

        .cart-tab:hover {
            transform: scale(1.1);
        }

        .cart-icon {
            width: 24px;
            height: 24px;
            margin-bottom: 2px;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #333;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-modal {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 300px;
            max-height: 400px;
            overflow-y: auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 20px;
            transform: scale(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
            z-index: 998;
        }

        .cart-modal.open {
            transform: scale(1);
        }

        .cart-modal h3 {
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
        }

        .cart-item-info {
            flex: 1;
            font-size: 12px;
        }

        .cart-item-name {
            font-weight: bold;
            text-transform: uppercase;
            font-size: 11px;
        }

        .cart-item-size {
            color: #666;
            font-size: 10px;
        }

        .cart-item-price {
            color: #ff6b35;
            font-weight: bold;
            font-size: 11px;
            margin-top: 3px;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .qty-btn {
            width: 24px;
            height: 24px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .qty-btn:hover {
            background: #f0f0f0;
            border-color: #ff6b35;
        }

        .qty-display {
            font-size: 11px;
            font-weight: bold;
            min-width: 20px;
            text-align: center;
        }

        .remove-btn {
            background: #ff4444;
            color: white;
            border: none;
            padding: 4px 8px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 10px;
            transition: all 0.2s;
        }

        .remove-btn:hover {
            background: #cc0000;
        }

        .cart-summary {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 2px solid #333;
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 12px;
        }

        .cart-summary-row.total {
            font-weight: bold;
            font-size: 14px;
            color: #333;
        }

        .cart-summary-label {
            color: #666;
        }

        .cart-summary-value {
            color: #ff6b35;
            font-weight: bold;
        }

        .cart-empty {
            text-align: center;
            color: #999;
            font-size: 12px;
            padding: 20px 0;
        }

        .cart-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .cart-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 8px;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }

        .checkout-btn {
            background: #ff6b35;
            color: white;
        }

        .checkout-btn:hover {
            background: #e65a2a;
        }

        .clear-btn {
            background: #f0f0f0;
            color: #333;
        }

        .clear-btn:hover {
            background: #ddd;
        }

        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .size-selector {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 10;
        }

        .size-selector h2 {
            font-size: 14px;
            margin-bottom: 15px;
            color: #ffffff;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .size-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .size-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #333;
            background: white;
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s;
        }

        .size-btn.active {
            background: #333;
            color: white;
        }

        .pizza-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 1;
        }

        .circle-track {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 90%;
            z-index: -99!important;
            border: 1px solid rgba(0, 0, 0, 0.692);
            border-radius: 50%;
        }

        .pizza-semicircle-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 65%;
            height: 65%;
        }

        .pizza-semicircle {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            z-index: inherit;
            overflow: hidden;
            border-radius: 500px 500px 0 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border: 1px solid rgb(36, 36, 36);
        }

        .pizza-image {
            width: 100%;
            height: 200%;
            object-fit: cover;
            display: block;
            transition: opacity 0.5s ease;
        }

        .semicircle-labels {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 90%;
        }

        .label-point {
            position: absolute;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .label-dot {
            width: 8px;
            height: 8px;
            background: #161616;
            border-radius: 50%;
            margin-right: 8px;
        }

        .label-text {
            font-size: 11px;
            color: #1c1c1c;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .label-point.active .label-dot {
            width: 12px;
            border: 2px solid #1b1b1b;
            height: 12px;
            background: #ff6b35;
        }

        .label-point.active .label-text {
            color: #f36100;
            font-weight: bold;
        }

        .order-button {
            position: absolute;
            bottom: 310px;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 10px 35px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            border: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ingredient {
            position: absolute;
            width: 45px;
            height: 45px;
            object-fit: contain;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(5deg); }
        }

        .cta-bar {
            background: #141414;
            z-index: 100;
            color: white;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: -365px;
            position: relative;
        }

        .cta-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cta-logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b35;
        }

        .cta-text {
            font-size: 14px;
            color: #999;
        }

        .cta-btn {
            background: white;
            color: #333;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 12px;
            text-transform: uppercase;
        }

        .menu-section {
            padding: 80px 50px;
            background: #fafafa;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .menu-header h2 {
            font-size: 32px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .menu-card:hover {
            transform: translateY(-5px);
        }

        .menu-card-image {
            width: 100%;
            height: 200px;
            background: #f0f0f0;
            position: relative;
        }

        .menu-card-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
        }

        .menu-card-content {
            padding: 20px;
            text-align: center;
        }

        .menu-card-title {
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .menu-card-price {
            color: #ff6b35;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .menu-card-btn {
            background: #ff6b35;
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: bold;
            transition: all 0.3s;
        }

        .menu-card-btn:hover {
            background: #e65a2a;
            transform: scale(1.05);
        }

        .italian-section {
            padding: 80px 50px;
            background: #f5f5f0;
            position: relative;
        }

        .italian-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .italian-text h2 {
            font-size: 120px;
            font-weight: 300;
            color: #333;
            line-height: 0.9;
            margin-bottom: 20px;
            font-family: 'Georgia', serif;
        }

        .italian-quote {
            font-size: 180px;
            color: #ddd;
            font-family: 'Georgia', serif;
            line-height: 0.5;
        }

        .italian-definition {
            color: #666;
            font-size: 14px;
            line-height: 1.8;
            margin-top: 30px;
        }

        .italian-pizzas {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .italian-pizza-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .testimonials-section {
            padding: 80px 50px;
            background: white;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-header h2 {
            font-size: 32px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: #fafafa;
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #830000;
            position: relative;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .testimonial-author-img {
            position: absolute;
            top: -60px;
            left: 30px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 5px solid white;
            object-fit: cover;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .testimonial-quote {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: bold;
            color: #333;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimonial-role {
            font-size: 12px;
            color: #ff6b35;
            margin-top: 5px;
        }

        .locations-section {
            padding: 80px 50px;
            background: white;
        }

        .locations-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .locations-header h2 {
            font-size: 32px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .locations-tabs {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 40px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 20px;
        }

        .location-tab {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            color: #999;
            position: relative;
        }

        .location-tab.active {
            color: #ff6b35;
            font-weight: bold;
        }

        .location-tab.active::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: #ff6b35;
            border-radius: 50%;
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .location-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .location-address {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .location-hours {
            margin: 20px 0;
        }

        .location-hours h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .location-phone {
            color: #ff6b35;
            font-size: 18px;
            font-weight: bold;
            margin-top: 20px;
        }

        .location-map {
            width: 100%;
            height: 300px;
            background: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
        }

        .location-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 50px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            color: #ff6b35;
        }

        .footer-section p {
            color: #999;
            font-size: 13px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ff6b35;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #ff6b35;
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .footer-icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 8px;
            vertical-align: middle;
        }

        .footer-icon svg {
            width: 100%;
            height: 100%;
            fill: #ff6b35;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            color: #666;
            font-size: 12px;
        }

        .footer-logo {
            width: 60px;
            height: 60px;
            background: #ff6b35;
            border-radius: 12%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 9px;
            border: 2px solid #ff6b35;
            transform: rotate(-8deg);
            margin-bottom: 15px;
        }

        .footer-logo-text {
            font-size: 14px;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .header {
                padding: 15px 20px;
            }

            .nav {
                display: none;
            }

            .burger {
                display: flex;
            }

            .order-button {
                padding: 5px 20px;
                bottom: 205px;
            }

            .pizza-container {
                max-width: 400px;
            }

            .location-content {
                grid-template-columns: 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .italian-content {
                grid-template-columns: 1fr;
            }

            .italian-text h2 {
                font-size: 60px;
            }

            .italian-quote {
                font-size: 100px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .cta-bar {
                z-index: 100;
                background: #333;
                color: white;
                padding: 20px 50px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: -355px;
                position: relative;
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .label-point[data-pizza="6"] {
                top: 15%; left: -60%;
            }
            .label-point[data-pizza="5"] {
                left: -13% !important;
            }
            .label-point[data-pizza="0"] {
                left: 59% !important;
            }
            .label-point[data-pizza="1"] {
                right: 2%!important;
            }
            .label-point[data-pizza="4"] {
                left: -10% !important;
            }
            .label-point[data-pizza="2"] {
                right: -6% !important;
            }
            .label-point[data-pizza="3"] {
                right: -11% !important;
            }

        }