/* ============================
   WOWCHER LONDON - STYLE.CSS
   ============================ */

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --pink: #e91e8c;
     --pink-dark: #c2166e;
     --pink-light: #f5a7d5;
     --pink-bg: #fce4f3;
     --yellow: #ffe600;
     --dark: #333;
     --mid: #666;
     --light: #f5f5f5;
     --border: #ddd;
     --white: #fff;
     --save-green: #f5a623;
   }

   .header-inner img {
    width: 20%;
}
   
   body {
     font-family: 'Open Sans', Arial, sans-serif;
     font-size: 13px;
     color: var(--dark);
     background: #ffff;
     min-width: 1100px;
   }
   
   a { text-decoration: none; color: inherit; }
   button { cursor: pointer; border: none; background: none; font-family: inherit; }
   
   /* ===== TOP BAR ===== */
   .top-bar {
     background: #fff;
     border-bottom: 1px solid #eee;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 6px 20px;
     font-size: 12px;
   }
   .top-bar-left { flex: 1; }
   .top-bar-center { flex: 1; text-align: center; }
   .hello-link { color: var(--pink); font-weight: 600; }
   .top-bar-right {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 8px;
   }
   .advertise-link { color: var(--dark); }
   .flag { width: 24px; height: 16px; border: 1px solid #ccc; object-fit: cover; }
   
   /* ===== SITE HEADER ===== */
   .site-header {
     background: #fff;
     padding: 10px 20px;
     position: sticky;
     top: 0;
     z-index: 200;
   }
   .header-inner {
     max-width: 1280px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 20px;
   }
   .logo-wrap { flex-shrink: 0; }
   .logo-bubble {
     background: var(--pink);
     border-radius: 50% 50% 50% 10px / 50% 50% 10px 50%;
     padding: 8px 14px;
     display: inline-block;
     position: relative;
   }
   .logo-bubble::after {
     content: '★';
     position: absolute;
     top: -6px; right: -4px;
     color: var(--yellow);
     font-size: 14px;
   }
   .logo-text {
     color: #fff;
     font-weight: 800;
     font-size: 18px;
     font-style: italic;
     letter-spacing: -0.5px;
   }
   .search-wrap {
     flex: 1;
     display: flex;
     border: 2px solid #f0f0f0;
     border-radius: 25px;
     background: #fafafa;
     overflow: hidden;
     max-width: 680px;
   }
   .search-input {
     flex: 1;
     border: none;
     background: none;
     padding: 10px 16px;
     font-size: 13px;
     outline: none;
     color: var(--dark);
   }
   .search-input::placeholder { color: #aaa; }
   .search-btn {
     padding: 8px 14px;
     background: none;
     display: flex;
     align-items: center;
   }
   .header-icons { display: flex; align-items: center; gap: 4px; }
   .hdr-icon-btn {
     width: 36px; height: 36px;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     color: var(--pink);
     background: var(--pink-bg);
     transition: background 0.2s;
   }
   .hdr-icon-btn:hover { background: var(--pink-light); }
   .hdr-icon-btn.cart { background: var(--pink); color: #fff; }
   
   /* ===== STICKY NAV ===== */
   .sticky-nav {
     background: #fff;
     border-bottom: 2px solid #eee;
     position: sticky;
     top: 65px;
     z-index: 190;
     box-shadow: 0 2px 4px rgba(0,0,0,0.05);
   }
   .nav-inner {
     max-width: 1280px;
     margin: 0 auto;
     display: flex;
     align-items: stretch;
     overflow-x: auto;
     scrollbar-width: none;
   }
   .nav-inner::-webkit-scrollbar { display: none; }
   .nav-item {
     padding: 12px 14px;
     font-size: 12px;
     font-weight: 700;
     color: #444;
     white-space: nowrap;
     text-transform: uppercase;
     letter-spacing: 0.3px;
     display: flex;
     align-items: center;
     gap: 4px;
     border-bottom: 3px solid transparent;
     transition: color 0.2s, border-color 0.2s;
   }
   .nav-item:hover { color: var(--pink); border-bottom-color: var(--pink); }
   .nav-item.active { color: var(--pink); border-bottom-color: var(--pink); }
   .gifts-tab {
     background: var(--pink);
     color: #fff !important;
     border-radius: 4px;
     margin: 6px 6px;
     padding: 6px 12px;
     border-bottom: none !important;
   }
   .gifts-tab:hover { background: var(--pink-dark); }
   
   /* ===== CATEGORY TILES ===== */
   .category-tiles {
     background: #fff;
     padding: 10px 20px;
     border-bottom: 1px solid #eee;
   }
   .tile-grid {
     max-width: 1280px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 12px;
   }
   .tile {
     border-radius: 8px;
     overflow: hidden;
     cursor: pointer;
     aspect-ratio: 16/9;
     background: #ccc;
   }
   .tile img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.3s;
   }
   .tile:hover img { transform: scale(1.03); }
   
   /* ===== MAIN CONTENT ===== */
   .main-content {
     max-width: 1280px;
     margin: 16px auto;
     padding: 0 20px;
   }
   
   /* CONTENT GRID */
   .content-grid {
     display: grid;
     grid-template-columns: 220px 1fr 240px;
     gap: 16px;
     align-items: start;
   }

   .content-gridtwo
   {
    grid-template-columns:1fr 300px;
    padding: 30px 0px;
   }
   
   /* ===== LEFT SIDEBAR ===== */
   .sidebar { display: flex; flex-direction: column; gap: 12px; }
   
   .london-box {
     background: #f0f0f0;
     border-radius: 8px;
     padding: 16px;
     border: 1px solid #eee;
   }
   .london-title {
     font-size: 22px;
     font-weight: 800;
     margin-bottom: 8px;
   }
   .london-desc {
     font-size: 12px;
     color: var(--mid);
     line-height: 1.5;
     margin-bottom: 8px;
   }
   .read-more { color: var(--pink); font-size: 12px; font-weight: 600; }
   
   .map-box {
     background: #e8f0fe;
     border-radius: 8px;
     overflow: hidden;
     position: relative;
     min-height: 160px;
     border: 1px solid #c5d5f5;
   }
   .map-bg {
     width: 100%;
     min-height: 160px;
    background-size: 100%;
     background-image: url(https://resources.wowcher.co.uk/assets/img/brand/wowcher/map-view/Map+View+Small.svg);
     position: relative;
   }
   .map-pin {
     position: absolute;
     font-size: 18px;
     transform: translateX(-50%);
     filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
   }
   .rec-deal-scroll h2 {
    color: #e91e8c;
    text-decoration: underline;
    font-size: 14px;
    padding-bottom: 10px;
}
.rec-deal-scroll ul li {
    color: #e91e8c;
    padding-bottom: 4px;
}
.rec-deal-scroll ul li {
    color: #e91e8c;
    padding-bottom: 4px;
}
#scrollright{
    height: 280px;
    overflow-y: scroll;
}
.rec-deal-scroll ul {
    list-style: none;
}
   .show-map-btn {
    border-radius: 8px;
    position: absolute;
    width: 60%;
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 70px;
     background: var(--pink);
     color: #fff;
     font-size: 13px;
     font-weight: 700;
     padding: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     transition: background 0.2s;
   }
   .show-map-btn:hover { background: var(--pink-dark); }
   .map-svg-icon { width: 20px; height: 20px; filter: brightness(0) invert(1); }
   
   .rec-section {
     background: #fff;
     border-radius: 8px;
     border: 1px solid #eee;
     overflow: hidden;
   }
   .rec-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 12px;
     border-bottom: 1px solid #eee;
   }
   .rec-label {
     font-size: 12px;
     font-weight: 700;
     color: var(--pink);
   }
   .view-all-link { color: var(--pink); font-size: 11px; }
   .rec-deal-card { padding: 10px 12px; }
   .rec-deal-name { font-size: 12px; font-weight: 600; margin-bottom: 8px; }
  
   .rec-thumb { width: 100%;}
   .rec-deal-body {
    position: relative;
}
.rec-save-info {
    position: absolute;
    top: 10px;
    right: 20px;
}
.rec-deal-card {
    position: relative;
}
   .rec-save-badge {
     background: var(--pink);
     color: #fff;
     font-weight: 800;
     font-size: 11px;
     text-align: center;
     border-radius: 4px;
     padding: 6px 8px;
     line-height: 1.4;
   }
   .rec-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    position: absolute;
    top: 90px;
    width: 93%;
   }
   .rec-nav-btn {
     background: var(--pink);
     color: #fff;
     border-radius: 50%;
     width: 26px; height: 26px;
     font-size: 18px;
     display: flex; align-items: center; justify-content: center;
   }
   
   /* ===== CENTER DEAL ===== */
   .center-deal {
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     border: 1px solid #eee;
   }
   .deal-top-bar { padding: 12px 16px 8px; background: #fff;}
   .deal-top-info {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 12px;
     margin-bottom: 6px;
   }
   .deal-main-title {
     font-size: 14px;
     font-weight: 700;
     line-height: 1.4;
     flex: 1;
   }
   .view-deal-btn {
     background: #0000eb;
     color: #fff;
     font-weight: 700;
     font-size: 13px;
     padding: 8px 20px;
     border-radius: 25px;
     white-space: nowrap;
     flex-shrink: 0;
     transition: background 0.2s;
   }
   .view-deal-btn:hover { background: var(--pink-dark); }
   .deal-sub { font-size: 12px; color: var(--mid); margin-bottom: 6px; }
   .deal-meta {
     display: flex;
     align-items: center;
     gap: 10px;
   }
   .stars-row { display: flex; align-items: center; gap: 2px; }
   .star { color: #ddd; font-size: 14px; }
   .star.filled { color: #f5a623; }
   .star.half { color: #f5a623; }
   .rev-count { font-size: 11px; color: var(--mid); margin-left: 2px; }
   
   .save-pill {
     background: var(--pink);
     color: #fff;
     border-radius: 4px;
     padding: 2px 8px;
     font-size: 11px;
     font-weight: 700;
     text-align: center;
   }
   .save-pct { font-size: 13px; font-weight: 800; }
   .original-price { color: var(--mid); font-size: 12px; text-decoration: line-through; }
   
   /* DEAL IMAGE BOX */
   .deal-img-box {
     position: relative;
     background: #111;
     overflow: hidden;
   }
   .social-proof-bar {
    background: rgba(233, 30, 140, 0.85);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 6px;
    z-index: 5;
    position: absolute;
    left: 0;
    right: 0;
    width: 360px;
    top: 5px;
    margin: 0px auto;
    border-radius: 40px;
   }
   .deal-hero-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
   }
   .carousel-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(0,0,0,0.5);
     color: #fff;
     width: 36px; height: 36px;
     border-radius: 50%;
     font-size: 20px;
     display: flex; align-items: center; justify-content: center;
     z-index: 10;
     transition: background 0.2s;
   }
   .carousel-arrow:hover { background: rgba(0,0,0,0.75); }
   .left-arrow { left: 10px; }
   .right-arrow { right: 10px; }
   
   /* BADGES */
   .md-badge {
     position: absolute;
     bottom: 110px;
     left: 12px;
     z-index: 10;
     background: white;
     border: 3px solid var(--pink);
     border-radius: 50%;
     width: 72px; height: 72px;
     display: flex; align-items: center; justify-content: center;
   }
   .md-text {
     font-size: 9px;
     font-weight: 800;
     text-align: center;
     color: var(--pink);
     line-height: 1.3;
   }
   .save-circle-badge {
     position: absolute;
     top: 52px;
     right: 12px;
     z-index: 10;
     background: var(--pink);
     color: #fff;
     border-radius: 50%;
     width: 70px; height: 70px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     line-height: 1.2;
   }
   .sc-save { font-size: 9px; font-weight: 700; }
   .sc-pct { font-size: 18px; font-weight: 900; }
   .sc-old { font-size: 9px; text-decoration: line-through; }
   
   .brand-badge {
     position: absolute;
     top: 130px;
     right: 12px;
     z-index: 10;
     background: rgba(233,30,140,0.9);
     color: #fff;
     font-size: 9px;
     font-weight: 800;
     text-align: center;
     padding: 6px 8px;
     border-radius: 50%;
     width: 58px; height: 58px;
     display: flex; align-items: center; justify-content: center;
     line-height: 1.2;
   }
   .heart-btn-deal {
     position: absolute;
     top: 10px;
     left: 10px;
     z-index: 10;
     background: rgba(255,255,255,0.85);
     border-radius: 50%;
     width: 30px; height: 30px;
     display: flex; align-items: center; justify-content: center;
     font-size: 16px;
     color: #ccc;
     cursor: pointer;
   }
   .heart-btn-deal:hover { color: var(--pink); }
   
   /* THUMBS */
   .thumb-row {
     display: flex;
     gap: 4px;
     padding: 6px 8px;
     background: #fff;
     justify-content: center;
   }
   .thumb-img {
     width: 60px; height: 44px;
     object-fit: cover;
     border-radius: 3px;
     border: 2px solid transparent;
     cursor: pointer;
     opacity: 0.7;
     transition: opacity 0.2s, border-color 0.2s;
   }
   .thumb-img.active, .thumb-img:hover { border-color: var(--pink); opacity: 1; }
   
   /* DEAL FOOTER */
   .deal-footer-bar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 6px 12px;
     background: #fff;
   }
   .bought-badge {
     background: var(--pink);
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     padding: 3px 10px;
     border-radius: 12px;
   }
   .dot-row { display: flex; gap: 4px; align-items: center; }
   .dot {
     width: 8px; height: 8px;
     border-radius: 50%;
     background: #000;
     transition: background 0.2s;
   }
   .dot.active { background: var(--pink); width: 10px; height: 10px; }
   
   /* ===== RIGHT COL ===== */
   .right-col { display: flex; flex-direction: column; gap: 12px; }
   
   .side-deal-card {
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     border: 1px solid #eee;
     padding: 10px;
   }
   .side-deal-title {
     font-size: 12px;
     font-weight: 700;
     margin-bottom: 8px;
     line-height: 1.4;
   }
   .side-img-wrap { position: relative; border-radius: 6px; overflow: hidden; }
   .side-hero-img {
     width: 100%;
     height: 160px;
     object-fit: cover;
     display: block;
   }
   .selling-fast-tag {
     position: absolute;
     top: 8px;
     left: 8px;
     z-index: 5;
     background: rgba(255,255,255,0.92);
     border-radius: 12px;
     padding: 3px 8px;
     font-size: 11px;
     font-weight: 700;
     color: var(--dark);
     display: flex;
     align-items: center;
     gap: 4px;
   }
   .pulse {
     width: 8px; height: 8px;
     background: #f44336;
     border-radius: 50%;
     display: inline-block;
     animation: pulse 1s ease-in-out infinite;
   }
   @keyframes pulse {
     0%, 100% { opacity: 1; transform: scale(1); }
     50% { opacity: 0.5; transform: scale(0.8); }
   }
   .info-icon { color: var(--mid); font-size: 10px; }
   .side-save-badge {
     position: absolute;
     top: 8px;
     right: 8px;
     z-index: 5;
     background: var(--pink);
     color: #fff;
     font-size: 10px;
     font-weight: 800;
     text-align: center;
     padding: 4px 6px;
     border-radius: 4px;
     line-height: 1.4;
   }
   .side-save-pct { font-size: 14px; font-weight: 900; }
   .rollover-overlay {
     position: absolute;
     bottom: 0; left: 0; right: 0;
     background: linear-gradient(to top, rgba(20,20,100,0.85) 0%, transparent 100%);
     padding: 12px;
   }
   .rollover-text {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
   }
   .rollover-big {
     color: #fff;
     font-size: 22px;
     font-weight: 900;
     line-height: 1;
     text-shadow: 0 2px 4px rgba(0,0,0,0.5);
   }
   .rollover-sub {
     color: #ffe600;
     font-size: 14px;
     font-weight: 900;
   }
   .rollover-date {
     color: rgba(255,255,255,0.8);
     font-size: 10px;
     margin-top: 2px;
   }
   
   .whittle-meta {
     display: flex;
     align-items: center;
     gap: 4px;
     margin-bottom: 6px;
     flex-wrap: wrap;
   }
   .whittle-save-badge {
     margin-left: auto;
     background: var(--pink);
     color: #fff;
     font-size: 10px;
     font-weight: 800;
     text-align: center;
     padding: 3px 6px;
     border-radius: 4px;
     line-height: 1.4;
   }
   .whittle-img-wrap { position: relative; }
   
   /* ===== SECOND ROW ===== */
   .second-row {
     display: grid;
     grid-template-columns: 1fr 240px;
     gap: 16px;
     margin-top: 16px;
   }
   .large-deal-wrap {
     background: #fff;
     border-radius: 8px;
     overflow: hidden;
     border: 1px solid #eee;
   }
   .alt-deal .deal-hero-img { height: 280px; }
   .right-col-second { display: flex; flex-direction: column; gap: 12px; }
   
   .health-card {
     background: #fff;
     border-radius: 8px;
     border: 1px solid #eee;
     overflow: hidden;
     position: relative;
     padding: 8px;
   }
   .bought-pill {
     background: rgba(0,0,0,0.7);
     color: #fff;
     font-size: 10px;
     font-weight: 700;
     display: inline-block;
     padding: 2px 8px;
     border-radius: 10px;
     margin-bottom: 6px;
   }
   .health-card-inner { display: flex; position: relative; margin-bottom: 8px; }
   .health-card-img { width: 100%; height: 100px; object-fit: cover; border-radius: 4px; }
   .health-save-badge {
     position: absolute;
     top: 4px; right: 4px;
     background: var(--pink);
     color: #fff;
     font-size: 10px;
     font-weight: 800;
     text-align: center;
     padding: 4px 6px;
     border-radius: 4px;
     line-height: 1.4;
   }
   .health-title {
     font-size: 11px;
     font-weight: 600;
     line-height: 1.4;
     margin-bottom: 6px;
   }
   .health-bottom {
     display: flex;
     align-items: center;
     gap: 4px;
     flex-wrap: wrap;
   }
   .health-view { font-size: 12px; padding: 5px 14px; margin-left: auto; }
   
   .fried-card {
     background: #1a1a1a;
     border-radius: 8px;
     border: 1px solid #333;
     min-height: 140px;
     position: relative;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .pause-icon {
     position: absolute;
     top: 10px; left: 10px;
     background: rgba(255,255,255,0.2);
     border-radius: 50%;
     width: 30px; height: 30px;
     display: flex; align-items: center; justify-content: center;
     color: #fff;
     font-size: 14px;
     cursor: pointer;
   }
   .fried-heart { top: 10px; left: auto; right: 10px; position: absolute; }
   .fried-overlay {
     text-align: center;
     z-index: 2;
   }
   .fried-lines {
     color: #f5a623;
     font-size: 20px;
     font-weight: 900;
     letter-spacing: 2px;
     text-transform: uppercase;
   }
   .fresh-lines {
     color: var(--yellow);
     font-size: 26px;
     font-weight: 900;
     letter-spacing: 2px;
   }
   
   /* ===== FOOTER CONTROLS ===== */
   .footer-controls {
     background: #fff;
     border-top: 2px solid #eee;
     display: flex;
     justify-content: space-between;
     padding: 12px 40px;
     margin-top: 16px;
   }
   .back-top-btn, .hide-footer-btn {
     color: var(--pink);
     font-size: 13px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 6px;
     background: none;
     border: none;
   }
   .back-top-btn:hover, .hide-footer-btn:hover { text-decoration: underline; }
   
   /* ===== FOOTER ===== */
   .site-footer {
     background: #1a1a1a;
     color: #ccc;
     padding: 30px 40px 0;
     font-size: 12px;
   }
   .footer-grid {
     max-width: 1280px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 24px;
     padding-bottom: 24px;
     border-bottom: 1px solid #333;
   }
   .footer-col h4 {
     color: #fff;
     font-size: 13px;
     font-weight: 700;
     margin-bottom: 12px;
     text-transform: none;
   }
   .footer-col a {
     display: block;
     color: #aaa;
     margin-bottom: 7px;
     font-size: 12px;
     transition: color 0.2s;
   }
   .footer-col a:hover { color: var(--pink); }
   .app-link { display: block; margin-bottom: 8px; }
   .app-img { width: 140px; border-radius: 6px; border: 1px solid #444; }
   .app-placeholder {
     background: #333;
     color: #aaa;
     border-radius: 6px;
     padding: 10px;
     text-align: center;
     font-size: 12px;
     width: 140px;
     margin-bottom: 8px;
   }
   
   .careers-col {}
   .careers-wrap {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     border: 1px solid #444;
   }
   .work-with-us-badge {
     position: absolute;
     top: 8px; left: 8px;
     background: rgba(233,30,140,0.9);
     color: #fff;
     font-size: 10px;
     font-weight: 700;
     padding: 3px 8px;
     border-radius: 4px;
     z-index: 5;
   }
   .careers-img {
     width: 100%;
     height: 120px;
     object-fit: cover;
     display: block;
     background: #333;
   }
   .careers-btn {
     display: block;
     background: var(--pink);
     color: #fff;
     font-weight: 700;
     font-size: 12px;
     padding: 10px;
     text-align: center;
     transition: background 0.2s;
   }
   .careers-btn:hover { background: var(--pink-dark); }
   
   .footer-bottom {
     max-width: 1280px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 16px 0 20px;
     gap: 20px;
   }
   .footer-bottom p {
     font-size: 11px;
     color: #888;
     line-height: 1.8;
     flex: 1;
   }
   .footer-bottom p a { color: #888; display: inline; }
   .footer-bottom p a:hover { color: var(--pink); }
   
   .social-links { display: flex; gap: 8px; flex-shrink: 0; }
   .soc-btn {
     width: 36px; height: 36px;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     color: #fff;
     font-weight: 700;
     font-size: 16px;
     text-decoration: none;
     transition: opacity 0.2s;
   }
   .soc-btn:hover { opacity: 0.8; }
   .soc-btn.fb { background: #3b5998; }
   .soc-btn.tw { background: #000; font-size: 14px; }
   .soc-btn.ig { background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
   
   /* Responsive placeholder for smaller screens */
   @media (max-width: 1200px) {
     .content-grid { grid-template-columns: 200px 1fr 220px; }
   }
   .content-gridtwo
   {
    grid-template-columns:1fr 280px;
   }

   .round-cards-section {
    padding: 40px 0;
    background: #fff;
}
.round-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 0 auto;
}
.round-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.round-card-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.round-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.round-card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--pink);
}
.round-card-title:hover{
    text-decoration: underline;
}