* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif, Arial, sans-serif;
    color: #e5e5e5;
    background-color: #111111;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.top-bar {
    padding: 8px 0;
    font-size: 13px;
    background-color: #0a0a0a;
    border-bottom: 1px solid #222222;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 15px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.top-left a, 
.top-right > a, 
.social-icons a {
    position: relative;
    color: #cccccc;
    padding: 6px 12px;
    display: inline-block;
    z-index: 1;
}

.top-bar .social-icons a i {
    transition: transform 0.4s ease, color 0.3s ease;
    display: inline-block;
}

.top-bar .social-icons a:hover i {
    transform: rotateY(180deg);
}

.top-left a::before, 
.top-right > a::before, 
.social-icons a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2px;
    height: 0;
    background-color: #d4af37;
    z-index: -1;
    transition: height 0.4s ease;
}

.top-left a::after, 
.top-right > a::after, 
.social-icons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background-color: #d4af37;
    z-index: -1;
    transition: height 0.4s ease;
}

.top-left a:hover::before,
.top-right > a:hover::before,
.social-icons a:hover::before,
.top-left a:hover::after,
.top-right > a:hover::after,
.social-icons a:hover::after {
    height: 100%;
}

.top-left a:hover,
.top-right > a:hover,
.social-icons a:hover {
    color: #d4af37;
}

.main-header {
    padding: 20px 0;
    background-color: #111111;
    border-bottom: 1px solid #222222;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f7f7f7;
}

.logo-icon {
    font-size: 28px;
    color: #d4af37;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: #111111;
    font-weight: 700;
    background: #d4af37;
    padding: 2px 5px;
    border-radius: 2px;
}

.nav-menu > ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-menu > ul > li > a {
    font-weight: 500;
    font-size: 14px;
    color: #f7f7f7;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px;
    display: inline-block;
    position: relative;
    z-index: 1;
    background-image: 
        linear-gradient(#d4af37, #d4af37), 
        linear-gradient(#d4af37, #d4af37), 
        linear-gradient(#d4af37, #d4af37), 
        linear-gradient(#d4af37, #d4af37);
    background-repeat: no-repeat;
    background-size: 0 2px, 2px 0, 0 2px, 2px 0;
    background-position: top left, top right, bottom right, bottom left;
    transition: background-size 0.4s ease-in-out, color 0.3s ease, background-color 0.3s ease;
}

.nav-menu > ul > li > a:hover {
    color: #111111;
    background-color: #d4af37;
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    min-width: 250px;
    padding: 20px;
    border-radius: 4px;
    display: flex;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-menu.mega-menu {
    opacity: 1;
    visibility: visible;
}

.menu-column h4 {
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333333;
    text-transform: uppercase;
}

.menu-column ul li {
    margin-bottom: 6px;
}

.menu-column ul li a {
    color: #cccccc;
    font-size: 13px;
    display: block;
    padding: 3px 0;
    transition: color 0.3s ease, font-size 0.3s ease, padding-left 0.3s ease;
}

.menu-column ul li a:hover {
    color: #d4af37;
    font-size: 15px;
    padding-left: 4px;
}

.header-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.header-icons a {
    color: #f7f7f7;
    font-size: 16px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: #d4af37;
}

.cart-icon {
    position: relative;
}

.cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #d4af37;
    color: #111111;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cart-icon:hover .badge {
    transform: translateY(-4px);
}

.announcement-bar {
    background: #d4af37;
    color: #111111;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trending-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sales {
    font-weight: bolder;
    text-align: center;
    margin: 0;
}

.discover-btn {
    color: #e53935;
    background: transparent;
    text-align: center;
    padding: 4px 0;
    border-radius: 0;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 1px;
    border: none;
    border-bottom: 2px solid #e53935;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background: transparent;
    color: #ffffff;
    border: none;
    border-bottom: 2px solid #ffffff;
    letter-spacing: 4px;
}

.hero {
    background-color: #000000;
}

.hero-image img {
    max-width: 1200px;
    margin-right: -300px;
    width: 900px;
    height: 940px;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text .subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 45px;
    color: #e63946;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 5px;
}

.hero-text h1 {
    font-size: 52px;
    margin: 15px 0;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.hero-text p {
    margin-bottom: 30px;
    max-width: 480px;
    color: #cccccc;
    font-size: 15px;
}

.btn-primary {
    background-color: #d4af37;
    color: #111111;
    padding: 14px 32px;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b8860b;
    background-image: linear-gradient(135deg, #cc9900, #996515);
    color: #ffffff;
    border-color: #cc9900;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 153, 0, 0.4);
}

.category-card,
.product-card,
.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid #333333;
    background: #1a1a1a;
    transition: box-shadow 0.4s ease;
}

.category-card::before, .category-card::after,
.product-card::before, .product-card::after,
.blog-card::before, .blog-card::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #fce38a, #d4af37);
    z-index: 20;
    transition: width 0.4s ease;
}

.category-card::before, .product-card::before, .blog-card::before { top: 0; left: 0; }
.category-card::after, .product-card::after, .blog-card::after { bottom: 0; right: 0; }

.category-card span.side-left, .product-card span.side-left, .blog-card span.side-left,
.category-card span.side-right, .product-card span.side-right, .blog-card span.side-right {
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, #d4af37, #fce38a, #d4af37);
    z-index: 20;
    transition: height 0.4s ease;
}

.category-card span.side-left, .product-card span.side-left, .blog-card span.side-left { bottom: 0; left: 0; }
.category-card span.side-right, .product-card span.side-right, .blog-card span.side-right { top: 0; right: 0; }

.category-card:hover::before, .category-card:hover::after,
.product-card:hover::before, .product-card:hover::after,
.blog-card:hover::before, .blog-card:hover::after {
    width: 100%;
}

.category-card:hover span.side-left, .category-card:hover span.side-right,
.product-card:hover span.side-left, .product-card:hover span.side-right,
.blog-card:hover span.side-left, .blog-card:hover span.side-right {
    height: 100%;
}

.category-card:hover, .product-card:hover, .blog-card:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.categories {
    display: flex;
    gap: 25px;
    margin: 60px auto;
}

.category-card {
    flex: 1;
}

.category-img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-box img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: center;
    z-index: 10;
}

.category-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fce38a;
    transition: color 0.3s ease;
}

.category-card:hover .category-overlay h3 {
    color: #ffffff;
}

.shop-now-btn {
    display: inline-block;
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease, letter-spacing 0.3s ease;
}

.category-card:hover .shop-now-btn {
    opacity: 1;
}

.shop-now-btn:hover {
    letter-spacing: 4px;
}

.section-header {
    text-align: center;
    padding: 15px 0;
    margin-top: 60px;
    margin-bottom: 35px;
    width: 100%;
    display: block;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 12px 15px;
    transition: color 0.4s ease;
    margin: 0 auto;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0), rgba(212, 175, 55, 1), rgba(212, 175, 55, 0));
    transition: width 0.4s ease-in-out;
}

.section-header h2::before { top: 0; }
.section-header h2::after { bottom: 0; }

.section-header h2:hover {
    color: #d4af37;
}

.section-header h2:hover::before,
.section-header h2:hover::after {
    width: 100%;
}

.section-header.left-aligned {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header.left-aligned h2 {
    text-align: left;
    margin: 0;
    transform: none;
    right: auto;
    left: 0;
}

.section-header.left-aligned h2::before,
.section-header.left-aligned h2::after {
    left: 0;
    right: auto;
    transform: none;
}

.section-header.left-aligned .filter-tabs {
    justify-content: flex-end;
    direction: ltr;
    margin-top: 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    list-style: none;
}

.filter-tabs li a {
    color: #888888;
    font-size: 14px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.filter-tabs li.active a, 
.filter-tabs li a:hover,
.filter-tabs li:first-child a {
    color: #d4af37;
    font-weight: 700;
}

.filter-tabs li.active a::after,
.filter-tabs li a:hover::after,
.filter-tabs li:first-child a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-img {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    height: 280px;
    perspective: 1000px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-img .main-product-img {
    z-index: 1;
}

.product-img .hover-cover-img {
    z-index: 2;
}

.rotate-effect .hover-cover-img.rotate-y-img {
    opacity: 0;
    visibility: hidden;
    transform: rotateY(180deg) scale(0.8);
    transform-origin: center center;
}

.rotate-effect:hover .hover-cover-img.rotate-y-img {
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg) scale(1);
}

.slide-effect .hover-cover-img.top-slide {
    transform: translateY(-100%);
}

.slide-effect:hover .hover-cover-img.top-slide {
    transform: translateY(0);
}

.action-buttons {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: #1a1a1a;
    border-radius: 4px;
    z-index: 10;
    border: 1px solid #333333;
    transition: bottom 0.4s ease;
}

.product-img:hover .action-buttons {
    bottom: 15px;
}

.action-buttons a {
    padding: 12px 16px;
    color: #cccccc;
    background-color: #222222;
    border-right: 1px solid #333333;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.action-buttons a:last-child { border-right: none; }
.action-buttons a:hover { color: #111111; background-color: #d4af37; }

.product-card h4 {
    font-size: 16px;
    margin: 10px;
    text-align: center;
    color: #fce38a;
    transition: color 0.3s ease;
}

.product-card:hover h4 {
    color: #ffffff;
}

.price {
    font-size: 15px;
    text-align: center;
    padding-bottom: 15px;
}

.price .current {
    color: #d4af37;
    font-weight: 700;
    margin-right: 8px;
}

.price .old {
    color: #777777;
    text-decoration: line-through;
}

.testimonial-section {
    background: #242323;
    padding: 70px 0;
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 12px 15px;
    transition: color 0.4s ease;
}

.testimonial-content h2::before,
.testimonial-content h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0), rgba(212, 175, 55, 1), rgba(212, 175, 55, 0));
    transition: width 0.4s ease-in-out;
}

.testimonial-content h2::before { top: 0; }
.testimonial-content h2::after { bottom: 0; }

.testimonial-content h2:hover {
    color: #d4af37;
}

.testimonial-content h2:hover::before,
.testimonial-content h2:hover::after {
    width: 100%;
}

.quote {
    font-size: 18px;
    font-style: italic;
    color: #dcdcdc;
    margin-bottom: 30px;
}

.user-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.user-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.user-info {
    text-align: left;
}

.user-info h4 { font-size: 16px; color: #fce38a; }
.user-info span { font-size: 13px; color: #d4af37; }

.blog-grid {
    display: flex;
    gap: 25px;
}

.blog-card {
    flex: 1;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card .blog-category {
    font-size: 12px;
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 15px;
    margin-bottom: 8px;
    display: block;
}

.blog-card h3 {
    font-size: 18px;
    padding: 0 15px;
    margin-bottom: 10px;
    color: #fce38a;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #ffffff;
}

.blog-card p {
    font-size: 13px;
    padding: 0 15px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.blog-footer {
    padding: 0 15px;
    margin-top: auto;
    text-align: left;
}

.read-more {
    font-size: 14px;
    color: #d4af37;
    text-decoration: underline;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    color: #ffffff;
    transform: scale(1.15);
}

.services-section {
    background: #242323;
    padding: 50px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-top: 60px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 0 15px;
}

.icon-container {
    position: relative;
    height: 45px;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.primary-icon {
    color: #d4af37;
    top: 0;
    opacity: 1;
}

.hover-icon {
    color: #996515;
    top: 45px;
    opacity: 0;
}

.service-box:hover .primary-icon {
    transform: translateX(-50%) translateY(-45px);
    opacity: 0;
}

.service-box:hover .hover-icon {
    transform: translateX(-50%) translateY(-45px);
    opacity: 1;
}

.service-box h4 { font-size: 16px; color: #f0f0f0; margin-bottom: 5px; }
.service-box p { font-size: 13px; color: #999999; }

.newsletter-section {
    background: #0d0d0d;
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.newsletter-text h3 { font-size: 24px; margin-bottom: 5px; color: #fce38a; }
.newsletter-text p { font-size: 13px; color: #999999; }

.newsletter-form {
    display: flex;
    max-width: 500px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333333;
    outline: none;
}

.newsletter-form button {
    background: #d4af37;
    color: #111111;
    border: none;
    padding: 0 35px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8860b;
    color: #ffffff;
    transform: scale(1.05);
}

.newsletter-social {
    display: flex;
    gap: 15px;
}

.newsletter-social a { color: #cccccc; font-size: 16px; transition: color 0.3s ease; }
.newsletter-social a:hover { color: #d4af37; }

footer {
    background: #0a0a0a;
    color: #888888;
    padding: 60px 0 20px 0;
    border-top: 1px solid #222222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-col.brand-col { 
    flex: 1.5; 
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 16px;
    color: #fce38a;
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #888888;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #1a1a1a;
    font-size: 13px;
    color: #666666;
}

.trending-products,
.you-may-like,
.testimonial-section,
.products-section,
.trending-sneakers {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    z-index: 50;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
}

.custom-arrow.prev-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cccccc' width='48px' height='48px'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-arrow.next-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cccccc' width='48px' height='48px'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-arrow.prev-arrow:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37' width='48px' height='48px'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z'/%3E%3C/svg%3E");
    transform: translateY(-50%) scale(1.15);
}

.custom-arrow.next-arrow:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37' width='48px' height='48px'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    transform: translateY(-50%) scale(1.15);
}