/** Shopify CDN: Minification failed

Line 1062:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
/* ===== 1. BACKGROUND & LAYOUT (DESKTOP TOP PADDING FIX) ===== */
.brand-carousel-section {
  background-color: #ffffff !important; 
  width: 100%;
  display: block;
  /* FIXED: Set padding-top to 5px and use !important to override themes */
  padding: 5px 0 10px 0 !important; 
  margin-top: 1px !important;
  border-bottom: 1px solid #eaeaea; 
  overflow: hidden; 
}

.brand-full-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.brand-carousel-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  /* Ensure minimal margin below title */
  margin: 0 0 5px 0 !important; 
}

/* ===== 2. CAROUSEL ENGINE ===== */
.brand-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollBrands 30s linear infinite; 
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

/* ===== 3. LOGO STYLING (UNIFORM VISUAL SIZE & HOVER) ===== */
.brand-slide {
  padding: 0 35px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-slide img {
  display: block;
  
  /* FIXED UNIFORM SIZE */
  width: 120px; 
  max-height: 65px; 
  
  object-fit: contain; 
  filter: none; 
  opacity: 1;
  
  transition: transform 0.3s ease; 
}

.brand-slide img:hover {
  transform: scale(1.1); 
  cursor: pointer; 
}

.brand-link, .brand-static {
  display: block;
  text-decoration: none;
  border: 0;
  outline: none;
}

.brand-static {
  cursor: default;
}

/* ===== 4. ANIMATION ===== */
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ===== 5. MOBILE FIXES (VISIBILITY & TIGHT SPACING) ===== */
@media (max-width: 768px) {
  
  /* CRITICAL: Ensure the container has height and is not collapsing */
  .brand-carousel-section {
    min-height: 50px; /* Added min-height for safety */
    display: block !important;
    /* Safer top padding to ensure title visibility */
    padding: 5px 0 8px 0 !important; 
    margin-top: 55px !important;
  }
  
  .brand-carousel-title {
    margin: 0 !important; 
    padding-top: 5px; 
    padding-bottom: 5px;
    display: block !important; /* Ensure the title is not hidden */
  }
  
  .brand-slide {
    padding: 0 15px; 
    /* Ensure slides are displaying */
    display: flex !important; 
  }
  
  .brand-slide img {
    /* Adjusted sizes for better mobile fit */
    width: 75px; 
    max-height: 40px; 
    /* Ensure the image is rendered */
    display: block !important; 
  }
}
/* ===== Banner (No changes) ===== */
.cart-banner{
  padding:90px 0;
  color:#fff;
  background-size:cover;
  background-position:center;
  position:relative;
}
.cart-banner::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}
.cart-banner .container{position:relative;z-index:2}
.cart-banner h1{
  font-size:34px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* ===== Layout (No changes) ===== */
.cart-page{padding:60px 0;background:#f7f7f8}
.cart-shell{display:grid;grid-template-columns:2fr 1fr;gap:30px}

/* ===== Table (No changes) ===== */
.cart-table{
  background:#fff;
  border-radius:16px;
  box-shadow:0 8px 28px rgba(0,0,0,.08)
}
.cart-head,.cart-row{
  display:grid;
  /* 3 columns */
  grid-template-columns:2.5fr 1fr 1fr;
  /* FIX: Align all content to the vertical center */
  align-items:center; 
}
.cart-head{
  padding:18px 24px;
  border-bottom:1px solid #eee;
  font-weight:600;
  text-transform:uppercase;
  font-size:14px;
  color:#555;
}
.cart-row{
  padding:22px 24px;
  border-bottom:1px solid #f0f0f0;
  position: relative; 
}
.cart-row:last-child{border-bottom:none}

.cart-row .price,
.cart-row .qty{
  display:flex;
  align-items:center; 
}

/* ===== Product (No changes) ===== */
.product-wrap{
  display:flex;
  gap:18px;
  align-items:center; 
}
.product-wrap img{width:90px;border-radius:12px}
.product-wrap .title{
  font-weight:600;
  color:#1a1a1a;
  margin-top: 0; 
}
.product-wrap .variant,.vendor{font-size:13px;color:#777}

/* ===== Quantity Box (No changes) ===== */
.qty-box{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  width:110px;
  height:42px;
  background:#fafafa;
}
.qty-box input{
  width:32px;
  border:none;
  text-align:center;
  background:transparent;
  
  /* CRITICAL FIXES FOR ALIGNMENT */
  padding: 0; 
  margin: 0; 
  height: 42px; 
  box-sizing: border-box; 
  line-height: 42px; 
  color: #1a1a1a; 
}
.qty-btn{
  flex-shrink: 0;
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
  color:#333
}

/* === FINAL ALIGNMENT FIX FOR QTY COLUMN === */
.col.qty {
    /* Set the QTY column itself as the container for the qty box and icon */
    display: flex;
    /* Vertically center the box + icon unit */
    align-items: center; 
    /* Horizontally align the box + icon unit to the left of the column (if needed, change to center) */
    justify-content: center; 
    
    /* Remove padding added in previous fix */
    padding-right: 0; 
    
    /* Remove position: relative from the column to ensure the icon is inline */
    position: static; 
}

/* === FINAL FIX: Styling for the Remove Icon (Inline) === */
.col.qty .remove-icon {
    /* Use flex for inline positioning */
    display: flex;
    align-items: center;
    
    /* Spacing from the quantity box */
    margin-left: 10px; 
    
    /* Reset all absolute positioning rules */
    position: static;
    top: auto;
    right: auto; 
    transform: none;

    width: 20px;
    height: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}
.col.qty .remove-icon:hover {
    color: #D02E2E; 
}
.col.qty .remove-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* ===== Summary (No changes) ===== */
.summary-card{
  background:#fff;
  border-radius:18px;
  padding:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.08)
}
.summary-card h3{margin-bottom:20px}
.summary-row{display:flex;justify-content:space-between;font-weight:600;margin-bottom:12px}
.currency-note{font-size:13px;color:#777;margin:12px 0}
.note textarea{width:100%;min-height:80px;border-radius:8px;border:1px solid #ddd;padding:10px}

/* ===== Buttons - COLOR CHANGES (No changes) ===== */
.btn-primary{
  width:100%;
  margin-top:18px;
  padding:14px;
  border-radius:10px;
  background:#d02e2e; 
  color:#fff;
  font-weight:600
}

.trust{margin-top:18px;font-size:13px;color:#666;display:flex;flex-direction:column;gap:6px}

/* ===== Empty (No changes) */
.cart-empty{text-align:center;padding:120px 20px}
.cart-empty h2{margin-bottom:10px}

.cart-empty p {
    margin-bottom: 40px; 
}

/* ===== Mobile FIXES ===== */
@media(max-width:900px){
  .cart-shell{grid-template-columns:1fr}
  .cart-head{display:none}
  
  /* Use flexbox for mobile row to place price and qty side-by-side */
  .cart-row{
    grid-template-columns:1fr;
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start; 
    position: relative; 
  }

  .cart-row .col.product {
    width: 100%; 
  }
  
  /* Price and Quantity now share the bottom half of the row (50% each) */
  .cart-row .col.price {
    flex-basis: 50%; 
    max-width: 50%; 
    margin-top: 0; 
    padding-top: 10px; 
    box-sizing: border-box;
    display: block;
  }
  
  /* Reset mobile QTY column to behave like desktop (flex row) */
  .cart-row .col.qty {
    flex-basis: 50%;
    max-width: 50%;
    margin-top: 0; 
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static; 
  }
  
  /* Position icon on mobile: next to the box */
  .col.qty .remove-icon {
    position: static; 
    top: auto; 
    right: auto; 
    transform: none;
    margin-left: 10px; /* Keep spacing */
  }
  
  .product-wrap {
    align-items: center; 
  }
}
/* Main Wrapper */
.contact-modern-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* CRITICAL SPACING FIX: Remove top padding */
  padding: 0 20px 60px !important; 
  background-color: #ffffff; 
  font-family: 'Poppins', sans-serif;
}

/* The Card Container */
.contact-card {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  /* CRITICAL SPACING FIX: Remove top margin */
  margin: 0 auto !important
}

/* === LEFT PANEL (Theme Red: #d02e2e) === */
.contact-info-panel {
  flex: 0 0 40%;
  background-color: #d02e2e; 
  color: #fff;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}

.info-subtext {
  font-size: 14px;
  color: #ffcccc; 
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item .icon {
  margin-right: 20px;
  font-size: 20px;
  width: 25px;
  text-align: center;
  color: #fff; 
}

.info-item .details a, 
.info-item .details p {
  color: #fff;
  text-decoration: none;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.social-links-bottom {
  margin-top: auto;
  padding-top: 20px;
}

.social-links-bottom a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}
.social-links-bottom a:hover {
  background: #fff;
  color: #d02e2e; 
}

/* Decorative Circles */
.big-circle {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}
.small-circle {
  position: absolute;
  bottom: 80px;
  right: 50px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

/* === RIGHT PANEL (Form) === */
.contact-form-panel {
  flex: 0 0 60%;
  background: #fff;
  padding: 50px;
}

.form-grid-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

/* Input Styles */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: 0.3s;
  background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
  /* Active Color Red */
  border-bottom: 2px solid #d02e2e; 
}

/* Radio Buttons */
.radio-section {
  margin-bottom: 30px;
}
.radio-label-title {
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}
.radio-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.radio-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 13px;
  user-select: none;
  color: #666;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #eee;
  border-radius: 50%;
}
.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}
.radio-container input:checked ~ .checkmark {
  /* Checked Color Red */
  background-color: #d02e2e; 
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Button */
.form-actions {
  text-align: right;
  margin-top: 10px;
}
.btn-send-message {
  /* Theme Red */
  background-color: #d02e2e; 
  color: #fff;
  padding: 12px 35px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 5px 15px rgba(208, 46, 46, 0.2);
}
.btn-send-message:hover {
  background-color: #b02222; 
}

/* Responsive */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
  }
  .contact-info-panel, .contact-form-panel {
    flex: 0 0 100%;
    padding: 30px;
  }
  .form-grid-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }
  .big-circle, .small-circle {
    display: none; 
  }
}
/* FINAL POLISHED PREMIUM CSS STYLING - STACKED LAYOUT AND ALIGNMENT FIX */
:root {
 --primary-color: #D11E26; /* Deep Red for buttons/accents (Reebok style) */
 --secondary-color: #000; /* Black for text/borders */
 --light-gray: #f7f7f7; /* Very light background for contrast */
 --dark-gray: #666;
 --border-color: #e0e0e0;
}

.product_detail_info_premium { padding: 0 0 0 40px; }

/* Header Line and Share Button Structure */
.header-line { display: flex; justify-content: space-between; align-items: flex-start; }
.pd_title { font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; margin-bottom: 5px; line-height: 1.2; color: var(--secondary-color); }
.pd_vendor { font-size: 14px; color: var(--dark-gray); font-weight: 600; margin-bottom: 15px; }

.share-wrapper { position: relative; }
.share-toggle-btn {
  background: none;
  border: none;
  color: var(--dark-gray);
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}
.share-toggle-btn i { margin-right: 5px; }

.social-share-popup {
  position: absolute;
  top: 100%; right: 0; z-index: 10;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  min-width: 150px;
}
.social-share-popup.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* Price Block Styling */
.price-block { margin: 15px 0 25px 0; }
.mrp-price { font-size: 13px; color: var(--dark-gray); margin-bottom: 5px; }
.compare-at { text-decoration: line-through; margin-left: 5px; }
.pd_price { font-size: 28px; font-weight: 800; display: flex; align-items: center; gap: 15px; color: var(--secondary-color); }
.current-price-text { font-size: 32px; color: var(--secondary-color); font-weight: 800; }
.discount-badge { 
  background: var(--primary-color); 
  color: #fff; 
  padding: 4px 8px; 
  font-size: 14px; 
  font-weight: 700; 
  border-radius: 4px; 
  text-transform: uppercase; 
}

/* VARIANT OPTIONS DISPLAY & ALIGNMENT FIX */
.variant-options-wrapper .selector-wrapper {
  /* 1. CORE FIX: Stack label and values vertically */
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; /* Align contents to the left */
  margin-bottom: 20px; /* Increased gap between option blocks (e.g., Color and Target Gender) */
  flex-wrap: wrap; 
}

/* Label Styling (SHOE SIZE, GENDER) */
.variant-options-wrapper .selector-wrapper > label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-right: 0; 
  margin-bottom: 8px; /* 2. ADD VERTICAL GAP between label and swatches */
  min-width: auto; 
  display: block !important; 
}
.variant-options-wrapper h3,
.swatch .header 
{
  display: none !important; 
}

/* Swatch container below the label */
.variant-options-wrapper .swatch { 
    display: flex; /* Keep swatches horizontal */
    flex-wrap: wrap;
    margin-top: 0; 
    margin-left: -5px; /* Compensate for element margin */
}

/* Individual Swatch Element Container */
.swatch-element {
    display: inline-block;
    padding: 0;
    border: none;
    margin: 3px 5px; /* Adjusted spacing between swatch values */
    cursor: pointer;
    vertical-align: middle; 
}


/* SWATCH LABEL STYLING (TEXT FIT & COLOR FIX) */
.swatch label {
  /* Style the text-based button */
  padding: 5px 10px; 
  width: auto !important;
  min-width: 40px;
  height: auto;
  
  /* Border styles for unselected state */
  border: 1px solid var(--border-color) !important; 
  border-radius: 0 !important; 
  
  line-height: 1.2; 
  font-size: 14px;
  color: var(--secondary-color); 
  text-align: center;
  
  /* CRITICAL FOR TEXT FIT/ALIGNMENT */
  white-space: nowrap; 
  display: flex; 
  align-items: center;
  justify-content: center;

  /* Cleanup for broken images */
  background-image: none !important; 
  background-color: #fff !important; 
  overflow: hidden; 
  position: relative;
}

/* Hide ALL broken image child elements inside the label */
.swatch label > img, 
.swatch label > span, 
.swatch label > div {
  display: none !important;
}

/* Style for selected state (RED TEXT & BORDER) */
.swatch input:checked + label {
  border-color: var(--primary-color) !important; /* Red Border */
  background-color: var(--light-gray) !important; /* Light background on selection */
  color: var(--primary-color) !important; /* Red Text */
  font-weight: 700;
}

/* Trust Element: Size Chart Link */
.size-chart-link { 
  display: block; 
  margin-top: 15px; 
  font-size: 14px; 
  color: var(--dark-gray); 
  text-decoration: underline;
  font-weight: 600;
}

/* QUANTITY CONTROL - Integrated Box Look */
.Quantity-wrapper-premium { 
  margin: 25px 0; 
  margin-bottom: 35px; 
}
.product_input_premium { 
  display: flex; 
  align-items: stretch; 
  width: 120px; 
  border: 1px solid var(--border-color);
  margin-top: 5px;
  height: 38px; 
}
.qty-btn { 
  background: var(--light-gray); 
  border: none; 
  width: 30px; 
  cursor: pointer; 
  font-size: 18px; 
  font-weight: bold; 
  color: var(--secondary-color); 
  padding: 0;
  line-height: 1;
  transition: background 0.2s;
}
.qty-btn:hover { background: #e5e5e5; }
.product-quantity { 
  flex-grow: 1;
  text-align: center; 
  border: none; 
  font-weight: 600; 
  color: var(--secondary-color);
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  height: 100%; 
}


/* BUTTON STYLING (FINAL) */
.AddToCart-wrapper-premium { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.btn-premium { 
  height: 55px; 
  width: 100%; 
  border-radius: 0; 
  text-transform: uppercase; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  transition: 0.2s; 
  cursor: pointer; 
  font-size: 14px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 0;
}

/* 1. PRIMARY CTA: BUY NOW (Red, Solid) */
.dynamic-checkout-btn button.btn-buy-now { 
  background: var(--primary-color); 
  color: #fff; 
  border: 2px solid var(--primary-color);
  font-weight: 800; 
  height: 60px; 
}
.dynamic-checkout-btn button.btn-buy-now:hover { opacity: 0.9; }
.dynamic-checkout-btn .shopify-payment-button__button { display: none !important; }


/* 2. SECONDARY CTAs: ADD TO CART & WISHLIST (Equal Sizing) */
.secondary-actions-row { 
  display: flex; 
  gap: 10px; 
  width: 100%;
}
.secondary-button-wrapper {
  flex-basis: 50%; 
}

.btn-cart-secondary, .btn-wishlist-secondary {
  background: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--border-color); 
  height: 55px; 
  font-weight: 600;
}
.btn-cart-secondary:hover, .btn-wishlist-secondary:hover {
  background: var(--light-gray);
  border-color: var(--secondary-color);
}
.btn-cart-secondary i, .btn-wishlist-secondary i { margin-right: 5px; }

/* Trust Signal Block (Delivery & Returns) */
.trust-signal-block { 
  border-top: 1px solid var(--border-color); 
  padding-top: 20px; 
  margin-top: 30px; 
  font-size: 14px;
}
.trust-title { 
  font-size: 14px; 
  font-weight: 700; 
  text-transform: uppercase; 
  color: var(--dark-gray); 
  margin-bottom: 10px;
}
.trust-signal-block ul { list-style: none; padding: 0; margin: 0; }
.trust-signal-block li { margin-bottom: 8px; display: flex; align-items: center; line-height: 1.4; }
.trust-signal-block li i { margin-right: 10px; color: var(--primary-color); font-size: 16px; width: 20px; }

/* Responsive Adjustments */
@media (max-width: 767px) {
  .product_detail_info_premium { padding: 20px 0; }
  .header-line { flex-direction: column; }
  .pd_title { font-size: 26px; }
  .secondary-actions-row { flex-direction: column; }
  .secondary-button-wrapper { flex-basis: 100%; } 
  .social-share-popup { left: 0; right: auto; transform: translateY(0); }
}
/* === FINAL FIXED CSS (ANNOUNCEMENT BAR OFFSET & LOGO CONTAINMENT) === */

.perent-sidebar {
    height: 100%;
}

/* 1. Sidebar Background Styling */
#FixedSideBar {
  background-color: #1a1a1a;
 /* background-image: url("{{ '9532.jpg' | asset_url }}");*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9999 !important;
}

/* 2. ENHANCED LOGO STYLING (DESKTOP) */
#FixedSideBar .logo {
  padding: 15px 10px 10px 10px !important; 
  text-align: center;
}

#FixedSideBar .logo img {
  display: inline-block;
  width: 100%; 
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.1));
  transition: all 0.5s ease-in-out;
}

@media (min-width: 769px) {
  #FixedSideBar .logo img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.25));
  }
}

/* 3. Level-1 Menu Button Styling (Desktop Only) */
@media (min-width: 769px) {
  #main-nav {
    margin-bottom: 200px; /* Pushes the last menu item up and creates gap for CTA */
  }

  #main-nav > ul > li {
    margin: 12px 15px;
    list-style: none;
    border-bottom: none !important; 
  }

  #main-nav > ul > li > a {
    display: block;
    padding: 14px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.02);
  }
}

/* 4. SALE Button (DESKTOP ONLY) */
@keyframes salePulse {
  0% { box-shadow: 0 0 0 0 rgba(208, 46, 46, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(208, 46, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(208, 46, 46, 0); }
}

@media (min-width: 769px) {
  .sidebar-cta-container {
      padding: 30px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sidebar-sale-cta {
    display: block;
    margin: 0 15px; 
    background: #D02E2E;
    color: #fff !important;
    text-align: center;
    padding: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-radius: 2px;
    text-decoration: none;
    animation: salePulse 2s infinite;
  }
  
  .clean-bottom {
    height: 10px;
  }
}

/* 5. MOBILE FIXES (Logo Containment & Announcement Bar Fix) */
@media (max-width: 768px) {
  /* HIDE SALE BUTTON AND CONTAINER ON MOBILE */
  .sidebar-cta-container {
    display: none !important;
    visibility: hidden;
  }
  
  /* FIX 1: Mobile Logo Containment (Reference from default file) */
  #FixedSideBar .logo { 
    padding: 10px 15px 5px 15px !important; /* Reverting to default-like padding */
    text-align: left; 
  }
  
  #FixedSideBar .logo img { 
    max-width: 55% !important; /* Adopted max-width from default */
    height: auto;
    margin: 10px 0 10px 15px !important; /* Left-aligned margin from default */
    display: block;
    filter: none; 
    box-sizing: border-box; 
  } 
  #FixedSideBar {
        /* Example: Force it to take up only 50% of the screen height */
        height: 55px !important; 
    }
}

  /* FIX 2: Announcement Bar Slide-Under Issue
     Note: This CSS must be applied to the Announcement Bar element itself or the main content container.
     Since we can only modify the sidebar's CSS, we apply a global fix based on the assumption that 
     a container like the 'body' or a main wrapper needs padding. 
     I will use a generic class name that is often used for the main page content wrapper.
  */
  
  /* Using the announcement bar class supplied in the default file for best result */
  .ia-announcement-bar {
    padding-top: 55px !important; /* Push the bar down below where the fixed sidebar starts */
    z-index: 1 !important;
    position: relative;
  }
  
  /* If the above fix fails, you might need to apply this to your main body/content wrapper instead: */
  /*
  body, .site-wrapper {
      padding-top: 40px !important;
  }
  */
}

/* General hover effects */
#FixedSideBar .top-header-pro ul li i:hover { color: #D02E2E !important; }
#main-nav a:hover { color: #D02E2E !important; }