.pc-gaming-workstation > div + div {
  margin-top: 20px;
}

@media (min-width: 320px) {
  .pc-gaming-workstation > div + div {
    margin-top: 40px;
  }
}

.pc-gaming-workstation .category-img {
  max-width: 100%;
  height: auto;
}

.pc-gaming-workstation .category-link {
  text-decoration: none;
  color: inherit;
}

.pc-gaming-workstation .banner-img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   OLLO STORE - PC Custom CTA Blocks
   Blocchi CTA per Preventivo e Configuratore
   ======================================== */

:root {
  --ollo-orange: #D14900;
  --ollo-orange-dark: #A83800;
  --ollo-cyan: #006B8F;
  --ollo-cyan-dark: #004D6B;
  --ollo-dark: #1A1A1A;
  --ollo-gray: #495057;
  --ollo-light: #E9ECEF;
}

/* Griglia responsive per i due blocchi */
.oo-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Stile base per ogni blocco CTA */
.oo-cta-block {
  position: relative;
  background: #FAFAFA;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid transparent;
}
.oo-cta-block * {
  box-sizing: border-box;
}

.oo-cta-block:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Blocco Preventivo - Arancione scuro */
.oo-cta-preventivo {
  border-color: var(--ollo-orange);
}

.oo-cta-preventivo:hover {
  box-shadow: 0 12px 40px rgba(209, 73, 0, 0.3);
}

.oo-cta-preventivo .oo-cta-header {
  background: linear-gradient(135deg, var(--ollo-orange) 0%, var(--ollo-orange-dark) 100%);
}

/* Blocco Configuratore - Azzurro scuro */
.oo-cta-configuratore {
  border-color: var(--ollo-cyan);
}

.oo-cta-configuratore:hover {
  box-shadow: 0 12px 40px rgba(0, 107, 143, 0.3);
}

.oo-cta-configuratore .oo-cta-header {
  background: linear-gradient(135deg, var(--ollo-cyan) 0%, var(--ollo-cyan-dark) 100%);
}

/* Header del blocco con icona */
.oo-cta-header {
  padding: 40px 30px 30px;
  position: relative;
  overflow: hidden;
}

.oo-cta-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: oo-float 6s ease-in-out infinite;
}

@keyframes oo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.oo-cta-icon {
  font-size: 56px;
  line-height: 1.1em;
  display: block;
  padding-right: 10px;
}

@keyframes oo-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.oo-cta-title {
  font-size: 28px;
  line-height: 1.1em;
  font-weight: 800;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.oo-cta-subtitle {
  font-size: 15px;
  line-height: 1.1em;
  font-weight: 500;
  color: white;
  position: relative;
  z-index: 1;
  margin-top: 0px;
  margin-bottom: 0px;
}

/* Corpo del blocco */
.oo-cta-body {
  padding: 30px;
}

.oo-cta-features {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 0px;
}

.oo-cta-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: var(--ollo-dark);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.oo-cta-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.oo-cta-preventivo .oo-cta-features li::before {
  background: rgba(209, 73, 0, 0.15);
  color: var(--ollo-orange);
}

.oo-cta-configuratore .oo-cta-features li::before {
  background: rgba(0, 107, 143, 0.15);
  color: var(--ollo-cyan);
}

/* Pulsante CTA */
.oo-cta-button {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  padding: 18px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.oo-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.oo-cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.oo-cta-button span {
  position: relative;
  z-index: 1;
}

.oo-cta-preventivo .oo-cta-button {
  background: var(--ollo-orange);
  color: white;
}

.oo-cta-preventivo .oo-cta-button:hover {
  background: var(--ollo-orange-dark);
  transform: scale(1.02);
}

.oo-cta-configuratore .oo-cta-button {
  background: var(--ollo-cyan);
  color: white;
}

.oo-cta-configuratore .oo-cta-button:hover {
  background: var(--ollo-cyan-dark);
  transform: scale(1.02);
}

/* Info aggiuntiva sotto i blocchi */
.oo-info-bar {
  margin-top: 30px;
  padding: 20px;
  background: #FAFAFA;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.oo-info-bar p {
  color: var(--ollo-gray);
  font-size: 14px;
  margin: 0;
}

.oo-info-bar strong {
  color: var(--ollo-dark);
  font-weight: 700;
}

/* ========================================
   BANNER YOUTUBE
   ======================================== */
.oo-banner-youtube {
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
  padding: 8px 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  cursor: pointer;
}
.oo-banner-youtube * {
  box-sizing: border-box;
}
.oo-banner-youtube .d-flex {
  justify-content: center;
}
.oo-banner-youtube .oo-banner-text {
  color: white;
  font-size: 10px;
  line-height: 1.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.oo-banner-youtube .oo-banner-text strong {
  display: block;
  margin-bottom: 0.2em;
  font-size: 12px;
}
.oo-banner-youtube .oo-banner-button {
  display: none;
  margin-left: auto;
}
.oo-banner-youtube .oo-banner-button .oo-yt-btn {
  display: block;
  background: #ff0033;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  overflow: hidden;
}
.oo-banner-youtube:hover .oo-banner-button .oo-yt-btn {
  background: #e6002e;
  transform: scale(1.02);
  text-decoration: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 576px) {
  .oo-banner-youtube {
    padding: 16px 20px;
  }
  .oo-banner-youtube .oo-banner-text {
    font-size: 13px;
  }
  .oo-banner-youtube .oo-banner-text strong {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .oo-banner-youtube .d-flex {
    justify-content: start;
  }
  .oo-banner-youtube .oo-banner-button {
    display: block;
  }
}

@media (max-width: 992px) {
  .oo-cta-title {
    font-size: 20px;
  }
  .oo-cta-subtitle {
    font-size: 13px;
  }
  .oo-cta-features li {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .oo-cta-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .oo-cta-title {
      font-size: 24px;
  }

  .oo-cta-header {
      padding: 30px 20px 20px;
  }

  .oo-cta-body {
      padding: 20px;
  }
}

@media (max-width: 576px) {
  .pc-gaming-workstation .categories-box.row-3 > .main-category-box, .pc-gaming-workstation .categories-box.row-4 > .main-category-box {
    width: 100%;
  }

  .pc-gaming-workstation .categories-box > .main-category-box > div {
    max-width: 220px;
    margin: auto;
  }
}