        :root {
            --primary-dark: #1a2c3e;
            --accent-gold: #c6a43b;
            --accent-red: #b32d2d;
            --soft-black: #212529;
            --light-bg: #f8f7f4;
        }

        * {
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #2c3e44;
            font-weight: 400;
            line-height: 1.5;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .fw-heavy,
        .logo-font,
        .navbar-brand,
        .display-6,
        .display-4 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
        }



        section {
            padding-top: 150px;
            padding-bottom: 150px;
        }

        .bg-hero {
            padding: 125px 0;
            background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            position: relative;
        }

        .banner__img {
            height: 100%;
            width: 100%;
        }

        .hero-overlay {
            background: rgba(0, 0, 0, 0.45);
            border-radius: 1.5rem;
        }

        .btn-gold {
            background-color: var(--accent-gold);
            color: #1e2a32;
            font-weight: 700;
            border: none;
            padding: 0.75rem 2rem;
            transition: all 0.2s;
            border-radius: 40px;
        }

        .btn-gold:hover {
            background-color: #b88c2e;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-gold {
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            border-radius: 40px;
            font-weight: 600;
            background: transparent;
        }

        .btn-outline-gold:hover {
            background-color: var(--accent-gold);
            color: #1e2a32;
        }

        .card {
            display: flex;
            flex-direction: row;
            border: none;
            border-radius: 28px;
            transition: all 0.25s ease;
            background: white;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 35px rgba(0, 0, 0, 0.1);
        }

        .card__img-box {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 320px;
        }

        .card-body {
            max-width: 320px;
        }

        .card-img-top {
            object-fit: cover;
            object-position: left top;
            transition: 0.3s;
            width: 100%;
            height: 100%;
        }

        .card__img-thumb {
            padding: 16px;
            padding-top: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, 40px);
            gap: 8px;
        }

        .card__img-thumb img {
            border: 1px solid transparent;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .card__img-thumb img:hover {
            cursor: pointer;
        }

        .card__img-thumb img.active {
            border: 1px solid var(--accent-gold);

        }

        .badge-accent {
            background-color: var(--accent-gold);
            color: #1e2a32;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 6px 14px;
            border-radius: 40px;
        }

        .card__info-text {
            font-size: 14px;
            line-height: 20px;
        }

        .social-icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: #ffffff20;
            border-radius: 50%;
            transition: all 0.2s;
            color: white;
            font-size: 1.4rem;
        }

        .social-icon-circle:hover {
            background: var(--accent-gold);
            color: #1e2a32;
            transform: translateY(-3px);
        }

        footer {
            padding-top: 100px;
            padding-bottom: 50px;
        }

        footer a {
            text-decoration: none;
            transition: color 0.2s;
        }

        .table-responsive-custom table td,
        .table-responsive-custom table th {
            vertical-align: middle;
            padding: 1rem 0.75rem;
        }

        .contact-block {
            background: var(--light-bg);
            border-radius: 2rem;
        }

        .whatsapp-btn {
            background: #25D366;
            color: white;
            border-radius: 50px;
            padding: 10px 22px;
            font-weight: 600;
        }

        .telegram-btn {
            background: #0088cc;
            color: white;
            border-radius: 50px;
            padding: 10px 22px;
        }

        .nav-link {
            font-weight: 600;
            color: #2c3e44;
            font-size: 1rem;
        }

        .nav-link:hover {
            color: var(--accent-gold);
        }

        .navbar-nav .nav-link.active {
            color: var(--accent-gold);
        }

        .delivery__content {
            padding-top: 100px;
        }

        .nav-pills .nav-link.active,
        .nav-pills .show>.nav-link {
            background-color: transparent;
            border-radius: 0;
            color: #2c3e44;
            border-bottom: 3px solid var(--accent-gold);
        }

        @media(max-width: 1199px) {
            .card-img-top {
                object-position: center;
            }

            .card-body {
                max-width: fit-content;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .nav-pills {
                flex-wrap: wrap;
                row-gap: 16px;
            }

        }

        @media (max-width: 576px) {

            .card__list>* {
                padding-left: 0;
                padding-right: 0;
            }

            .card {
                border-radius: 0;
            }
        }