 .chat-container {
     background: #f0f0f0;
     height: 100vh;
     max-width: 450px;
     margin: 0 auto;
     position: relative;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
 }

 .chat-header {
     background: #075e54;
     color: white;
     padding: 12px 16px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .profile-pic {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #ddd;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 500;
     color: #666;
 }

 .contact-info h6 {
     margin: 0;
     font-size: 16px;
     font-weight: 500;
 }

 .contact-info small {
     color: #b3b3b3;
     font-size: 12px;
 }

 .chat-body {
     height: calc(100vh - 140px);
     overflow-y: auto;
     padding: 10px;
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chat-bg" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23e5ddd5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23chat-bg)"/></svg>');
     background-color: #e5ddd5;
 }

 .message {
     margin-bottom: 12px;
     display: flex;
     align-items: flex-end;
 }

 .message.sent {
     justify-content: flex-end;
 }

 .message.received {
     justify-content: flex-start;
 }

 .message-bubble {
     max-width: 75%;
     padding: 8px 12px;
     border-radius: 18px;
     position: relative;
     word-wrap: break-word;
 }

 .message.sent .message-bubble {
     background: #dcf8c6;
     color: #303030;
     border-bottom-right-radius: 4px;
 }

 .message.received .message-bubble {
     background: white;
     color: #303030;
     border-bottom-left-radius: 4px;
 }

 .message-time {
     font-size: 11px;
     color: #999;
     margin-top: 4px;
     text-align: right;
 }

 .message.received .message-time {
     text-align: left;
 }

 .message-status {
     font-size: 12px;
     color: #4fc3f7;
     margin-left: 4px;
 }

 .chat-footer {
     /* background: #f0f0f0; */
     padding: 8px 16px;
     border-top: 1px solid #ddd;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .message-input {
     flex: 1;
     border: 1px solid #ddd;
     border-radius: 20px;
     padding: 8px 16px;
     outline: none;
     font-size: 14px;
 }

 .send-btn {
     background: #128c7e;
     color: white;
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: background 0.2s;
 }

 .send-btn:hover {
     background: #0f7a6d;
 }

 .attach-btn,
 .emoji-btn {
     color: #666;
     background: none;
     border: none;
     font-size: 18px;
     cursor: pointer;
     padding: 8px;
     border-radius: 50%;
 }

 .attach-btn:hover,
 .emoji-btn:hover {
     background: rgba(0, 0, 0, 0.05);
 }

 .typing-indicator {
     display: none;
     padding: 8px 16px;
     color: #666;
     font-style: italic;
     font-size: 13px;
 }

 @keyframes typing {

     0%,
     60%,
     100% {
         opacity: 1;
     }

     30% {
         opacity: 0.4;
     }
 }

 .typing-dots {
     animation: typing 1.5s infinite;
 }

 .online-status {
     width: 8px;
     height: 8px;
     background: #4caf50;
     border-radius: 50%;
     position: absolute;
     bottom: 2px;
     right: 2px;
     border: 2px solid white;
 }

 .profile-pic {
     position: relative;
 }



 .circle-avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background-color: #6c757d;
     /* atau gambar/avatar */
     display: inline-block;
     margin-right: 8px;
     vertical-align: middle;
 }

 .dropdown-menu li {
     border-bottom: 1px solid #eee;
     padding-bottom: 8px;
 }

 .dropdown-menu li:last-child {
     border-bottom: none;
 }

 .quicksand-font {
     font-family: "Quicksand", sans-serif;
     font-optical-sizing: auto;
     /* font-weight: <weight>; */
     font-style: normal;
 }

 .bg-blue-navy {
     background: linear-gradient(135deg, #4c63d2 0%, rgb(78, 98, 203) 50%, #020E4C 100%);

 }

 .bg-grid {
     background-image:
         repeating-linear-gradient(0deg, #ccc, #ccc 1px, transparent 1px, transparent 10px),
         repeating-linear-gradient(90deg, #ccc, #ccc 1px, transparent 1px, transparent 10px);
     background-size: 10px 10px;
 }

 .timeline {
     border-left: 1px solid hsl(0, 0%, 90%);
     position: relative;
     list-style: none;
 }

 .timeline .timeline-item {
     position: relative;
 }

 .timeline .timeline-item:after {
     position: absolute;
     display: block;
     top: 0;
 }

 .timeline .timeline-item:after {
     background-color: hsl(0, 0%, 90%);
     left: -38px;
     border-radius: 50%;
     height: 11px;
     width: 11px;
     content: "";
 }

 /* .btn:hover {
      color: blue;
  } */


 .card-carousel {
     /* height: 201px; */
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #ffffff;
     overflow: hidden;
     /* penting untuk memotong gambar */
 }

 .card-carousel img {
     height: 100%;
     width: auto;
     object-fit: cover;
 }

 @media (max-width: 575px) {
     /* .card-carousel {
         min-height: 216.800px;
     } */


 }


 .navbar-custom {
      background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #0EA5E9 100%);
     padding: 0;
     min-height: 120px;
     box-shadow: 0 4px 20px rgba(30, 64, 175, 0.15);
 }

 .bottom-navbar {
     background: #0EA5E9;
 }


 .image-profil {
     max-width: 70px;
 }

 .card-recent-product {
     min-height: 201px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: #6a7ddc;
     border-radius: 7px;
 }

 .lift-up:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

 }

 @media (max-width: 575.98px) {
     .footer-mobile {
         margin-bottom: 60px;
     }

     .image-profil {
         max-width: 50px;
     }

     .card-recent-product {
         min-height: 161.600px;
     }

     .footer-section {
         margin-bottom: 25px;
     }
 }


 .top-bar {
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 0;
     font-size: 13px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .top-bar a {
     color: white;
     text-decoration: none;
     margin: 0 15px;
 }

 .top-bar a:hover {
     color: #ffd700;
 }

 .main-nav {
     padding: 15px 0;
 }

 .logo {
     font-size: 28px;
     font-weight: bold;
     color: white;
     text-decoration: none;
 }

 .search-container {
     flex-grow: 1;
     margin: 0 30px;
     position: relative;
 }

 .search-input {
     border: none;
     border-radius: 25px;
     padding: 12px 20px;
     font-size: 14px;
     width: 100%;
     padding-right: 50px;
 }

 .search-btn {
     position: absolute;
     right: 5px;
     top: 50%;
     transform: translateY(-50%);
     background: #1E40AF;
     border: none;
     border-radius: 50%;
     width: 35px;
     height: 35px;
     color: white;
     transition: all 0.3s ease;
 }

 .search-btn:hover {
     background: #1E3A8A;
     transform: translateY(-50%) scale(1.1);
 }

 .nav-icons {
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .nav-icon {
     color: white;
     font-size: 18px;
     position: relative;
 }

 .cart-badge {
     position: absolute;
     top: -8px;
     right: -8px;
     background: #ff4757;
     color: white;
     border-radius: 50%;
     width: 18px;
     height: 18px;
     font-size: 11px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .auth-buttons {
     display: flex;
     gap: 10px;
     margin-left: 20px;
 }

 .btn-login {
     background: transparent;
     border: 2px solid rgba(255, 255, 255, 0.8);
     color: white;
     padding: 8px 20px;
     border-radius: 25px;
     font-size: 13px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .btn-login:hover {
     background: white;
     color: #1E40AF;
     border-color: white;
 }

 .btn-register {
     background: white;
     border: 2px solid white;
     color: #1E40AF;
     padding: 8px 20px;
     border-radius: 25px;
     font-size: 13px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-register:hover {
     background: #F8FAFC;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .category-nav {
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 0;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .category-btn {
     background: rgba(255, 255, 255, 0.2);
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: white;
     padding: 6px 16px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 500;
     margin-right: 15px;
     transition: all 0.3s ease;
 }

 .category-btn:hover {
     background: white;
     color: #1E40AF;
     border-color: white;
     transform: translateY(-1px);
 }

 /* Category Dropdown Styles */
 .category-dropdown {
     position: relative;
 }

 .category-dropdown-menu {
     background: white;
     border: none;
     border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
     padding: 8px 0;
     min-width: 350px;
     max-width: 400px;
     max-height: 450px;
     overflow-y: auto;
     overflow-x: hidden;
     margin-top: 8px;
     border: 1px solid #E5E7EB;
     position: absolute;
     z-index: 1000;
     left: 0;
     contain: layout style;
 }

 .category-dropdown-menu .dropdown-item {
     padding: 12px 20px;
     color: #374151;
     font-weight: 500;
     border-radius: 8px;
     margin: 2px 5px;
     transition: all 0.3s ease;
     display: flex;
     align-items: flex-start;
     gap: 12px;
     position: relative;
     word-wrap: break-word;
     overflow-wrap: break-word;
     white-space: normal;
     min-height: 44px;
     overflow: hidden;
 }

 .category-dropdown-menu .dropdown-item:hover {
     background: #1E40AF;
     color: white;
     box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
 }

 .category-dropdown-menu .dropdown-item .category-icon {
     width: 20px;
     height: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: #1E40AF;
     flex-shrink: 0;
     margin-top: 2px;
     position: relative;
     z-index: 1;
 }

 .category-dropdown-menu .dropdown-item:hover .category-icon {
     color: white;
 }

 .category-dropdown-menu .dropdown-item .category-name {
     flex: 1;
     font-size: 14px;
     font-weight: 500;
     line-height: 1.4;
     word-wrap: break-word;
     overflow-wrap: break-word;
     white-space: normal;
     max-width: calc(100% - 100px);
     position: relative;
     z-index: 1;
 }

 .category-dropdown-menu .dropdown-item .category-count {
     background: #E5E7EB;
     color: #6B7280;
     font-size: 11px;
     padding: 2px 8px;
     border-radius: 12px;
     font-weight: 600;
     margin-left: auto;
     flex-shrink: 0;
     align-self: flex-start;
     margin-top: 2px;
     white-space: nowrap;
     position: relative;
     z-index: 1;
 }

 .category-dropdown-menu .dropdown-item:hover .category-count {
     background: rgba(255, 255, 255, 0.2);
     color: white;
 }

 .category-dropdown-menu .dropdown-header {
     color: #6B7280;
     font-size: 12px;
     font-weight: 600;
     padding: 8px 20px;
     margin-bottom: 5px;
     border-bottom: 1px solid #E5E7EB;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .category-count {
     background: #E5E7EB;
     color: #6B7280;
     font-size: 11px;
     padding: 2px 8px;
     border-radius: 12px;
     font-weight: 600;
 }

 .category-dropdown-menu::-webkit-scrollbar {
     width: 4px;
 }

 .category-dropdown-menu::-webkit-scrollbar-track {
     background: #F9FAFB;
     border-radius: 10px;
 }

 .category-dropdown-menu::-webkit-scrollbar-thumb {
     background: #D1D5DB;
     border-radius: 10px;
 }

 .category-dropdown-menu::-webkit-scrollbar-thumb:hover {
     background: #9CA3AF;
 }

 /* Hover animation untuk kategori */

 .category-dropdown-menu .dropdown-item::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 0;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transition: width 0.3s ease;
     z-index: 0;
 }

 .category-dropdown-menu .dropdown-item:hover::before {
     width: 100%;
 }

 /* Responsive dropdown kategori */
 @media (max-width: 768px) {
     .category-dropdown-menu {
         min-width: 280px;
         max-width: 320px;
         left: 0 !important;
         right: auto !important;
         transform: none !important;
     }

     .category-dropdown-menu .dropdown-item {
         padding: 10px 16px;
         margin: 1px 8px;
     }

     .category-dropdown-menu .dropdown-item .category-name {
         font-size: 13px;
         max-width: calc(100% - 70px);
     }
 }

 @media (max-width: 480px) {
     .category-dropdown-menu {
         min-width: 250px;
         max-width: 280px;
         margin-left: -20px;
     }

     .category-dropdown-menu .dropdown-item {
         padding: 8px 12px;
         gap: 8px;
     }

     .category-dropdown-menu .dropdown-item .category-name {
         font-size: 12px;
         max-width: calc(100% - 60px);
     }

     .category-dropdown-menu .dropdown-item .category-icon {
         width: 16px;
         height: 16px;
         font-size: 14px;
     }
 }

 /* Decorative shapes for navbar */

.promo-tags {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.promo-tag {
    color: white;
    font-size: 12px;
    text-decoration: none;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.promo-tag-merchant {
    margin-right: 10px;
    color: white;
    font-size: 12px;
    text-decoration: none;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.promo-tag:hover {
    color: #60A5FA;
    border-bottom-color: #60A5FA;
}

.promo-tag-merchant:hover {
    color: #60A5FA;
    border-bottom-color: #60A5FA;
}

/* Responsive promo tags */
@media (max-width: 768px) {
    .promo-tags {
        gap: 8px;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .promo-tag {
        font-size: 11px;
        white-space: nowrap;
    }

    .promo-tag-merchant {
        font-size: 11px;
        white-space: nowrap;
    }

    .promo-tags .text-white-50 {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .promo-tags {
        gap: 4px;
        flex-wrap: wrap;
        align-items: flex-start;
        line-height: 1.2;
        padding-top:20px;
    }

    .promo-tag {
        font-size: 10px;
        padding: 1px 0;
        white-space: nowrap;
    }

    .promo-tag-merchant {
        font-size: 10px;
        padding: 1px 0;
        white-space: nowrap;
    }

    .promo-tags .text-white-50 {
        font-size: 8px;
        margin: 0 2px;
    }

    .category-nav .d-flex.justify-content-between {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start !important;
    }

    .category-nav .d-flex.align-items-center {
        flex-wrap: wrap;
        width: 100%;
    }
}

@media (max-width: 360px) {
    .promo-tags {
        gap: 2px;
        justify-content: flex-start;
    }

    .promo-tag {
        font-size: 9px;
        padding: 1px 0;
    }

    .promo-tag-merchant {
        font-size: 9px;
        padding: 1px 0;
    }

    .promo-tags .text-white-50 {
        display: none; /* Hide separators on very small screens */
    }
} .location-info {
     color: white;
     font-size: 12px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .decorative-shapes {
     position: absolute;
     right: 0;
     top: 0;
     height: 100%;
     width: 200px;
     overflow: hidden;
     pointer-events: none;
 }

 .shape-1,
 .shape-2,
 .shape-3 {
     position: absolute;
     border-radius: 50%;
     opacity: 0.1;
 }

 .shape-1 {
     width: 100px;
     height: 100px;
     background: #ffd700;
     top: 20px;
     right: 50px;
 }

 .shape-2 {
     width: 60px;
     height: 60px;
     background: #ff6b6b;
     top: 60px;
     right: 150px;
 }

 .shape-3 {
     width: 30px;
     height: 30px;
     background: #4ecdc4;
     bottom: 30px;
     right: 80px;
 }

 /* Footer Separator */
 /* .footer-separator {
     height: 4px;
     background: linear-gradient(90deg, transparent, #3B82F6, transparent);
     margin: 0;
     opacity: 0.7;
 } */

 /* Modern Footer Styles */
 .footer-modern {
     background: linear-gradient(135deg, #0F172A 0%, #1E293B 30%, #334155 70%, #475569 100%);
     color: white;
     position: relative;
     overflow: hidden;
 }

 .footer-modern::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
     pointer-events: none;
     animation: footerPattern 20s linear infinite;
 }

 @keyframes footerPattern {
     0% { transform: translateX(0) translateY(0); }
     100% { transform: translateX(20px) translateY(20px); }
 }

 .footer-section {
     position: relative;
     z-index: 2;
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 0.8s ease forwards;
 }

 .footer-section:nth-child(1) { animation-delay: 0.1s; }
 .footer-section:nth-child(2) { animation-delay: 0.2s; }
 .footer-section:nth-child(3) { animation-delay: 0.3s; }
 .footer-section:nth-child(4) { animation-delay: 0.4s; }

 @keyframes fadeInUp {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .footer-logo h4 {
     font-size: 24px;
     margin-bottom: 15px;
 }

 .footer-desc {
     color: rgba(255, 255, 255, 0.8);
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .footer-title {
     color: white;
     font-weight: 600;
     margin-bottom: 20px;
     font-size: 16px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-title::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 30px;
     height: 2px;
     background: #3B82F6;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
 }

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

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 14px;
 }

 .footer-links a:hover {
     color: #3B82F6;
     padding-left: 5px;
 }

 .social-links {
     display: flex;
     gap: 12px;
     margin-top: 20px;
 }

 .social-link {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
     backdrop-filter: blur(10px);
 }

 .social-link:hover {
     background: #3B82F6;
     transform: translateY(-3px);
     box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
 }

 .contact-info {
     margin-top: 15px;
     display: flex;
     flex-direction: column;
 }

 .contact-item {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
     color: rgba(255, 255, 255, 0.8);
     font-size: 14px;
 }

 .contact-item i {
     width: 20px;
     margin-right: 10px;
     color: #3B82F6;
 }

 .newsletter-section {
     background: rgba(30, 64, 175, 0.15);
     padding: 25px;
     border-radius: 15px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(59, 130, 246, 0.3);
 }

 .newsletter-title {
     color: white;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .newsletter-desc {
     color: rgba(255, 255, 255, 0.8);
     font-size: 14px;
     margin-bottom: 0;
 }

 .newsletter-form {
     margin-top: 15px;
 }

 .newsletter-input {
     border: none;
     border-radius: 25px;
     padding: 12px 20px;
     background: rgba(255, 255, 255, 0.9);
     font-size: 14px;
 }

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

 .newsletter-btn {
     background: #3B82F6;
     border: none;
     border-radius: 25px;
     color: white;
     padding: 12px 20px;
     transition: all 0.3s ease;
 }

 .newsletter-btn:hover {
     background: #1E40AF;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
 }

 .footer-bottom {
     background: rgba(15, 23, 42, 0.8);
     padding: 20px 0;
     margin-top: 40px;
     border-top: 1px solid rgba(59, 130, 246, 0.2);
 }

 .copyright-text {
     margin: 0;
     color: rgba(255, 255, 255, 0.8);
     font-size: 14px;
 }

 .payment-methods {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 15px;
 }

 .payment-text {
     color: rgba(255, 255, 255, 0.8);
     font-size: 14px;
 }

 .payment-icons {
     display: flex;
     gap: 8px;
 }

 .payment-icons i {
     font-size: 24px;
     color: rgba(255, 255, 255, 0.7);
     transition: all 0.3s ease;
 }

 .payment-icons i:hover {
     color: #3B82F6;
     transform: scale(1.1);
 }

 /* Responsive Footer */
 @media (max-width: 768px) {
     .footer-modern {
         padding-top: 40px;
     }

     .newsletter-section {
         text-align: center;
         padding: 20px;
     }

     .newsletter-form {
         margin-top: 20px;
     }

     .payment-methods {
         justify-content: center;
         margin-top: 20px;
         flex-direction: column;
         gap: 10px;
     }

     .footer-bottom {
         text-align: center;
     }

     .copyright-text {
         margin-bottom: 15px;
     }

     .social-links {
         justify-content: center;
     }
 }

 @media (max-width: 480px) {
     .newsletter-section .row {
         text-align: center;
     }

     .newsletter-form .input-group {
         flex-direction: column;
         gap: 10px;
     }

     .newsletter-btn {
         width: 100%;
     }

     .footer-section {
         text-align: left;
         margin-bottom: 30px;
         padding: 0 10px;
     }

     .footer-title {
         font-size: 14px;
         margin-bottom: 15px;
     }

     .footer-title::after {
         left: 0;
         transform: none;
         width: 20px;
     }

     .footer-links {
         font-size: 13px;
     }

     .footer-links li {
         margin-bottom: 8px;
     }

     .footer-desc {
         font-size: 12px;
         line-height: 1.4;
         margin-bottom: 15px;
     }

     .contact-item {
         font-size: 12px;
         margin-bottom: 8px;
     }

     .social-links {
         justify-content: flex-start;
         margin-top: 15px;
     }

     .social-link {
         width: 35px;
         height: 35px;
         margin-right: 8px;
     }
 }
