        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Nunito Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            font-family: 'Antonio', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #000;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #777;
        }

        .nav-links a.active {
            color: #d4af37;
        }

        .contact-btn {
            display: inline-block;
            background-color: #000;
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
        }

        .contact-btn:hover {
            background-color: #333;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #000;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(3px, -7px);
        }

        .section-wrapper {
            width: 100%;
        }

        .products-wrapper {
            background-color: #f9f9f9;
        }

        .section-container {
            padding: 100px 0 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-clothes h1 {
            font-family: 'Antonio', sans-serif;
            font-size: 40px;
            margin-bottom: 40px;
            text-align: center;
        }

        .admbutton {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .clothes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .clothes-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .clothes-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.09);
            color: #d4af37;
        }

        .clothes-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .clothes-card-text {
            padding: 20px;
        }

        .clothes-card-text p {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 0;
        }

        .card-btn {
            display: inline-block;
            width: 100%;
            text-align: center;
            margin-top: 14px;
            background-color: #000;
            color: #fff;
            text-decoration: none;
            padding: 12px 18px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
        }

        .card-btn:hover {
            background: #333333;
        }

        footer {
            background-color: #000;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-family: 'Antonio', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #d4af37;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-icons a:hover {
            background-color: #d4af37;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #aaa;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #fff;
                flex-direction: column;
                gap: 0;
                align-items: stretch;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-links.active {
                max-height: 300px;
            }

            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid #f0f0f0;
                text-align: left;
            }

            .nav-links a.contact-btn {
                background-color: #000;
                color: #fff !important;
                margin: 0;
                border-radius: 0;
            }

            .main-clothes h1 {
                font-size: 32px;
            }

            .contact-btn {
                padding: 8px 14px;
                font-size: 14px;
            }

            .admbutton {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }