#fw-section-footer {

/* FOOTER CONTAINER */
footer.site-footer {
    background-color: #000 !important;
    padding: 50px 40px !important;
    color: #fff !important;
    border-top: 1px solid #2a2a2a;
}

/* FOOTER TEXT */
footer.site-footer,
footer.site-footer p,
footer.site-footer a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px !important;
    color: #fff !important;
    text-decoration: none !important;
}
footer.site-footer a:hover {
    color: #aaa !important;
}

/* BRAND TITLE */
footer.site-footer .site-footer-logo {
    font-size: 20px !important;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* NEWSLETTER */
footer.site-footer .newsletter-input {
    background-color: #111 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px !important;
}
footer.site-footer .newsletter-button {
    background-color: #fff !important;
    color: #000 !important;
    padding: 10px 20px !important;
    letter-spacing: 2px;
    border: none !important;
}
footer.site-footer .newsletter-button:hover {
    background-color: #ccc !important;
}

/* COPYRIGHT TEXT */
footer.site-footer .copyright {
    color: #555 !important;
    font-size: 10px !important;
    text-align: center !important;
    margin-top: 40px !important;
}
}
#fw-section-header {

/* HEADER CONTAINER */
header.site-header {
    background-color: #000 !important;
    padding: 20px 40px !important;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
header.site-header .site-logo {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 24px !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 2px;
}
header.site-header .site-logo::after {
    content: "  LUXURY STREETWEAR";
    font-size: 10px;
    color: #555;
    letter-spacing: 3px;
    margin-left: 8px;
}

/* NAVIGATION LINKS */
header.site-header nav a {
    color: #fff !important;
    font-size: 14px !important;
    text-decoration: none !important;
    margin: 0 15px;
}
header.site-header nav a:hover {
    color: #aaa !important;
}

/* SHOP BUTTON */
header.site-header .shop-link {
    background-color: #fff !important;
    color: #000 !important;
    padding: 8px 20px !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: background 0.3s;
}
header.site-header .shop-link:hover {
    background-color: #ccc !important;
}
}


#fw-section-sidebar {

/* Sidebar background color */
.sidebar {
    background-color: #000000; /* Dark luxury look */
}

/* Sidebar links */
.sidebar a {
    color: #FFFFFF;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover effect */
.sidebar a:hover {
    color: #A9A9A9;
    transition: 0.3s ease;
}

/* Reduce social icon prominence */
.sidebar .social-icons {
    opacity: 0.6;
    margin-top: 15px;
}

.sidebar .social-icons:hover {
    opacity: 1;
}

/* Adjust spacing */
.sidebar ul {
    padding-top: 20px;
    padding-bottom: 20px;
}
}














#fw-section-links-list-b6d0fb0d-a3c8-4697-b38f-e3727c8577f7 {

/* Archives Page – High-End Link Buttons */

.archives-link-list a {
    display: block;
    background: #0f0f0f; /* Deep black background */
    color: #f5f5f5; /* Soft white text */
    text-transform: uppercase;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 16px 28px;
    margin: 12px 0;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* Hover effect – glowing luxury outline */
.archives-link-list a:hover {
    background: #1c1c1c;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

/* Optional: Add subtle flicker effect to match Magigio’s brand */
.archives-link-list a::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f5f5f5, transparent);
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.archives-link-list a:hover::after {
    opacity: 1;
}
}


#fw-section-collection-template {

/* Center and elevate product grid */
.page-products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px 10px;
}

/* Product cards */
.page-products .product-card {
  background-color: #111111; /* subtle luxury black */
  border: 1px solid #2a2a2a;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.page-products .product-card:hover {
  border-color: #444444;
  transform: translateY(-5px);
}

/* Product image */
.page-products .product-card img {
  max-width: 100%;
  height: auto;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.page-products .product-card:hover img {
  filter: grayscale(0%);
}

/* Product title */
.page-products .product-card .product-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f5f5f5;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* Product price */
.page-products .product-card .product-price {
  font-size: 0.95rem;
  color: #c0c0c0;
  margin-top: 5px;
}

/* Page header */
.page-products h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #e0e0e0;
  text-transform: uppercase;
}

/* Add subtle divider lines */
.page-products .product-card::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background: #2a2a2a;
  margin: 15px auto 0;
}
}








#fw-section-announcement-bar-ac3b5bb7-403b-4140-a3b9-3c01b87be06b {
--color-primary: #000000;
--color-primary-rgb: 0, 0, 0;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #f0f0f0;
--color-on-primary-rgb: 240, 240, 240;
--color-on-background: #f0f0f0;
--color-on-background-rgb: 240, 240, 240;
--color-product-image-background: #f0f0f0;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}







#fw-section-newsletter-00a9a3f0-516b-441f-a1f3-c2c319b4bfb7 {

/* Newsletter Section Styling */
#newsletter-section {
    background-color: #0e0e0e; /* Dark charcoal background */
    color: #f5f5f5; /* Soft white text */
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #2a2a2a;
    font-family: 'Helvetica Neue', sans-serif;
}

#newsletter-section h2 {
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#newsletter-section p {
    font-size: 16px;
    color: #b5b5b5;
    margin-bottom: 20px;
}

#newsletter-section input[type="email"] {
    padding: 12px 20px;
    width: 250px;
    border: 1px solid #2a2a2a;
    background: transparent;
    color: #f5f5f5;
    outline: none;
    font-size: 14px;
    margin-right: 10px;
}

#newsletter-section button {
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #f5f5f5;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* Flicker effect */
#newsletter-section button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-25deg);
}

#newsletter-section button:hover::before {
    animation: flickerMove 0.8s forwards;
}

@keyframes flickerMove {
    0% { left: -75%; }
    100% { left: 125%; }
}
}