/*
Theme Name: CT Tint
Theme URI: https://www.cttint.com/
Author: Coco
Author URI: https://cttint.com/
Description: Custom built dark and premium theme for CT Tint. Integrated seamlessly with WooCommerce and WPBakery.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ct-tint
*/

/* -------------------------------------------------------------
 * 1. BASE VARIABLES & RESETS
 * ------------------------------------------------------------- */
:root {
  --ct-gold: #cf9f53;
  --ct-gold-hover: #b58842;
  --ct-black: #0d0d0d;
  --ct-dark-grey: #171b1f;
  --ct-dark: #111111;
  --ct-darker: #080808;
  --ct-grey: #a0a0a0;
  --ct-light: #ffffff;

  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;

  /* Heading typography */
  --ct-heading-color: #ffffff;
  --ct-heading-transform: uppercase;
  --ct-h1-size: 4.5rem;
  --ct-h2-size: 2.5rem;
  --ct-h3-size: 1.5rem;
  --ct-h4-size: 1.25rem;
  --ct-h5-size: 1.1rem;
  --ct-h6-size: 1rem;

  /* Per-level heading colors (default to global) */
  --ct-h1-color: var(--ct-heading-color);
  --ct-h2-color: var(--ct-heading-color);
  --ct-h3-color: var(--ct-heading-color);
  --ct-h4-color: var(--ct-heading-color);
  --ct-h5-color: var(--ct-heading-color);
  --ct-h6-color: var(--ct-heading-color);

  /* Subtitle / accent color (defaults to gold) */
  --ct-subtitle-color: var(--ct-gold);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

body {
  background-color: var(--ct-black);
  color: var(--ct-light);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--ct-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--ct-gold-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-weight: 800;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
  line-height: 1.2;
}

h1 { font-size: var(--ct-h1-size); color: var(--ct-h1-color); }
h2 { font-size: var(--ct-h2-size); color: var(--ct-h2-color); }
h3 { font-size: var(--ct-h3-size); color: var(--ct-h3-color); }
h4 { font-size: var(--ct-h4-size); color: var(--ct-h4-color); }
h5 { font-size: var(--ct-h5-size); color: var(--ct-h5-color); }
h6 { font-size: var(--ct-h6-size); color: var(--ct-h6-color); }

/* -------------------------------------------------------------
 * 2. TYPOGRAPHY HELPERS
 * ------------------------------------------------------------- */
.text-gold {
  color: var(--ct-gold);
}
.text-center {
  text-align: center;
}

/* -------------------------------------------------------------
 * 3. BUTTONS
 * ------------------------------------------------------------- */
.ct-btn {
  display: inline-block;
  padding: 15px 35px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.ct-btn-primary {
  background-color: var(--ct-gold);
  color: var(--ct-black);
}

.ct-btn-primary:hover {
  background-color: var(--ct-gold-hover);
  color: var(--ct-black);
}

.ct-btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--ct-light);
}

.ct-btn-outline:hover {
  border-color: var(--ct-light);
  color: var(--ct-light);
}

/* -------------------------------------------------------------
 * 4. HEADER
 * ------------------------------------------------------------- */
.ct-announcement-bar {
  background-color: var(--ct-gold);
  color: var(--ct-black);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ct-announcement-bar a {
  color: var(--ct-black);
  border-bottom: 1px solid var(--ct-black);
}
.ct-announcement-bar a:hover {
  opacity: 0.8;
}

.ct-site-header {
  background-color: var(--ct-darker);
  position: sticky;
  top: 0;
  z-index: 99999 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Solid Black Header for Full Width Pages */
.page-template-template-fullwidth .ct-site-header {
  position: sticky;
  top: 0;
  z-index: 99999 !important;
  width: 100%;
  background-color: var(--ct-black) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-template-template-fullwidth .ct-hero-section {
  padding-top: 100px;
}

.ct-header-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ct-logo a {
  color: var(--ct-light);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.ct-logo-image {
  display: block;
  width: auto;
  max-height: 50px;
}

.ct-main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  max-width: 800px; /* Constrain the wild space-between spread */
}

.ct-main-nav ul {
  list-style: none;
  margin: 0 40px;
  padding: 0;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  flex-wrap: nowrap;
  white-space: nowrap; /* Prevent individual text wrapping */
}

/* Ensure parent items can position their dropdowns */
.ct-main-nav li {
  position: relative;
  padding: 10px 0; /* Add some padding for easier hovering */
}

/* Dropdown Sub-menu Styling */
.ct-main-nav ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--ct-darker);
  min-width: 200px;
  padding: 15px 0;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-top: 2px solid var(--ct-gold);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Show dropdown on hover */
.ct-main-nav li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px; /* Slight slide down effect */
}

/* Sub-menu Link Styling */
.ct-main-nav ul.sub-menu li {
  padding: 0;
  text-align: center;
}

.ct-main-nav ul.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ct-grey);
}

.ct-main-nav ul.sub-menu a:hover {
  color: var(--ct-gold);
  background-color: rgba(255, 255, 255, 0.02);
}

.ct-main-nav a {
  color: var(--ct-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ct-main-nav a:hover {
  color: var(--ct-gold);
}

.ct-header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.ct-header-icons a {
  color: var(--ct-light);
  font-size: 18px;
}

.ct-header-icons a:hover {
  color: var(--ct-gold);
}

.ct-mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 6px;
  color: var(--ct-light);
  cursor: pointer;
  padding: 0;
}

.ct-mobile-nav-toggle__line {
  width: 18px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ct-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ct-mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ct-mobile-nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.ct-mobile-nav-overlay__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 84px 20px 24px;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(13, 13, 13, 0.98) 100%);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.ct-mobile-nav-overlay.is-open .ct-mobile-nav-overlay__panel {
  transform: translateY(0);
}

.ct-mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--ct-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ct-mobile-menu,
.ct-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-mobile-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-mobile-menu > li > a,
.ct-mobile-menu .ct-mobile-submenu-row > a {
  color: var(--ct-light);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: block;
  padding: 14px 0;
}

.ct-mobile-submenu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ct-mobile-submenu-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--ct-light);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.ct-mobile-menu .sub-menu {
  display: none;
  padding: 0 0 12px 14px;
}

.ct-mobile-menu .menu-item.is-submenu-open > .sub-menu {
  display: block;
}

.ct-mobile-menu .sub-menu a {
  display: block;
  color: var(--ct-grey);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: none;
  padding: 8px 0;
}

body.ct-mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .ct-header-inner {
    padding: 0 16px;
    height: 72px;
    gap: 10px;
  }

  .ct-main-nav {
    display: none;
  }

  .ct-mobile-nav-toggle {
    display: inline-flex;
  }

  .ct-header-icons {
    gap: 12px;
  }

  .ct-header-icons a {
    font-size: 16px;
  }

  .ct-logo-image {
    max-height: 38px;
  }
}

/* -------------------------------------------------------------
 * 4b. Mega Dropdown Navigation
 * ------------------------------------------------------------- */

/* Hide default sub-menu on mega-dropdown items */
.ct-main-nav li.mega-dropdown > ul.sub-menu {
  display: none !important;
}

/* Caret icon next to parent link */
.ct-mega-caret {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.ct-main-nav li.mega-dropdown:hover .ct-mega-caret,
.ct-main-nav li.mega-dropdown.is-open .ct-mega-caret {
  transform: rotate(180deg);
}

/* Mega dropdown panel */
.ct-mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 480px;
  background-color: var(--ct-darker);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 2px solid var(--ct-gold);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
  overflow: hidden;
}

.ct-main-nav li.mega-dropdown:hover > .ct-mega-dropdown,
.ct-main-nav li.mega-dropdown.is-open > .ct-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

/* CTA Block (featured giveaway) */
.ct-mega-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(207, 159, 83, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: background 0.2s ease;
}

.ct-mega-cta:hover {
  background: rgba(207, 159, 83, 0.12);
}

.ct-mega-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(207, 159, 83, 0.12);
  color: var(--ct-gold);
  font-size: 20px;
  flex-shrink: 0;
}

.ct-mega-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-mega-cta-text strong {
  color: var(--ct-light);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ct-mega-cta-text span {
  color: var(--ct-grey);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Child links grid */
.ct-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 12px;
  gap: 4px;
}

.ct-mega-grid-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ct-mega-grid-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.ct-mega-grid-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ct-gold);
  font-size: 16px;
  flex-shrink: 0;
}

.ct-mega-grid-item:hover .ct-mega-grid-icon {
  background: rgba(207, 159, 83, 0.12);
}

.ct-mega-grid-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-mega-grid-text strong {
  color: var(--ct-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.ct-mega-grid-text span {
  color: var(--ct-grey);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

/* Footer info line */
.ct-mega-footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  color: var(--ct-grey);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* -------------------------------------------------------------
 * 5. WPBakery Overrides & Utilities
 * ------------------------------------------------------------- */
/* Ensure no horizontal scrollbars from full-bleed breakout math */
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) {
  overflow-x: hidden;
  overflow-x: clip;
}

/* Break out only true WPBakery full-width rows */
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] {
  width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  max-width: 100vw !important;
}

/* Prevent nested rows inside full-width rows from inheriting breakout geometry */
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] .vc_row {
  width: auto !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  margin-left: -15px !important;
  margin-right: -15px !important;
  max-width: none !important;
}

/* Remove gutters only on intended full-width rows */
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"],
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"].wpb_row,
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"].vc_row-fluid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] > .wpb_column,
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] > .vc_column_container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] > .vc_column_container > .vc_column-inner,
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] > .wpb_column .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Explicitly neutralize breakout math inside WPBakery frontend editor */
body.page-template-template-fullwidth.vc_editor .vc_row,
body.page-template-template-fullwidth.vc_frontend-editor .vc_row,
body.page-template-template-fullwidth.vc_editor .vc_row.wpb_row,
body.page-template-template-fullwidth.vc_frontend-editor .vc_row.wpb_row,
body.page-template-template-fullwidth.vc_editor .vc_row-fluid,
body.page-template-template-fullwidth.vc_frontend-editor .vc_row-fluid,
body.page-template-template-fullwidth .vc_editor .vc_row,
body.page-template-template-fullwidth .vc_frontend-editor .vc_row,
body.page-template-template-fullwidth .vc_editor .vc_row.wpb_row,
body.page-template-template-fullwidth .vc_frontend-editor .vc_row.wpb_row,
body.page-template-template-fullwidth .vc_editor .vc_row-fluid,
body.page-template-template-fullwidth .vc_frontend-editor .vc_row-fluid {
  width: auto !important;
  max-width: none !important;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Guard high-risk header flex areas from causing page-level bleed */
.ct-site-header,
.ct-header-inner {
  overflow-x: clip;
}

.ct-header-inner > * {
  min-width: 0;
}

.ct-stats-bar {
  max-width: 100%;
}

.ct-stat-item {
  min-width: 0;
}

.ct-recent-installs-section,
.ct-installs-marquee-wrap {
  overflow-x: clip;
}

/* Mobile safety: prevent WPBakery half-width columns on phones */
@media (max-width: 767px) {
  body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"],
  body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"].wpb_row,
  body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"].vc_row-fluid {
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] > .wpb_column,
  body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .vc_row[data-vc-full-width="true"] > [class*="vc_col-"] {
    width: 100% !important;
    float: none !important;
  }
}

/* Global layout wrapper for default pages */
.ct-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Restore desktop content containers for selected WPBakery blocks */
.ct-services-section > .ct-container,
.ct-featured-content-section > .ct-container,
.ct-recent-installs-section > .ct-container,
.ct-giveaway-cta-section > .ct-container,
.ct-testimonials-section > .ct-container,
.ct-contact-section > .ct-container,
.ct-contact-info-boxes > .ct-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------
 * 6. CUSTOM WPBakery BLOCKS CSS
 * ------------------------------------------------------------- */

/* Shared Section Titles */
.ct-section-header {
  margin-bottom: 50px;
}
.ct-subtitle {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--ct-subtitle-color);
}
.ct-title {
  font-size: var(--ct-h2-size);
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
  margin-bottom: 15px;
}
.ct-desc {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* -- Hero Block -- */
.ct-hero-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden; /* Prevent zoom from breaking layout */
}
.ct-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.1); /* Initial Zoom State */
  will-change: transform; /* Optibmoize for animations */
  z-index: 0;
}
.ct-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ct-hero-overlay-color, #000000);
  opacity: var(--ct-hero-overlay-opacity, 0.7);
  z-index: 1;
}
.ct-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px !important;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Text Animation States */
.ct-anim-element {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}
.ct-anim-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.ct-hero-subtitle {
  color: var(--ct-subtitle-color);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ct-hero-subtitle .ct-line {
  height: 1px;
  background: var(--ct-subtitle-color);
  width: 40px;
  margin: 0 15px;
}

.ct-hero-title {
  font-size: var(--ct-h1-size);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
}
.ct-hero-desc {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin: 0 auto 40px;
  max-width: 700px;
}

.ct-stats-bar {
  display: inline-flex;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px 40px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}
.ct-stat-item {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ct-stat-border {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-stat-val {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.ct-stat-label {
  font-size: 11px;
  color: #888;
  font-weight: 800;
  letter-spacing: 1px;
}

.ct-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
.ct-hero-scroll-down {
  color: #666;
  font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* -- Features Row -- */
.ct-features-section {
  background-color: var(--ct-darker);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ct-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.ct-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ct-icon-color, var(--ct-gold)) 10%, transparent);
  color: var(--ct-icon-color, var(--ct-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.ct-feature-card:hover .ct-feature-icon {
  background: var(--ct-icon-color, var(--ct-gold));
  color: #000;
}
.ct-feature-title {
  font-size: 16px;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
  margin-bottom: 10px;
}
.ct-feature-desc {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* -- Services Grid -- */
.ct-services-section {
  padding: 80px 0;
  background-color: var(--ct-black);
}
.ct-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.ct-service-card {
  background: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}
.ct-service-card:hover {
  border-color: var(--ct-icon-color, var(--ct-gold));
  transform: translateY(-5px);
}
.ct-service-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}
.ct-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ct-icon-color, var(--ct-gold)) 10%, transparent);
  color: var(--ct-icon-color, var(--ct-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 20px;
}
.ct-services-section .ct-service-title {
  font-size: 18px;
  color: var(--ct-card-heading-color, var(--ct-heading-color));
  text-transform: var(--ct-heading-transform);
  margin-bottom: 15px;
}
.ct-service-desc {
  color: #999;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* -- Recent Installs -- */
.ct-recent-installs-section {
  background-color: var(--ct-black);
  padding: 80px 0;
}
.ct-installs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.ct-install-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s;
}
.ct-install-item {
  border-radius: 8px;
  overflow: hidden;
}
.ct-install-item:hover img {
  transform: scale(1.05);
}
.ct-installs-marquee-wrap {
  margin-top: 24px;
}
.ct-installs-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.ct-installs-marquee-track {
  display: flex;
  width: max-content;
  animation: ct-installs-marquee-scroll
    var(--ct-installs-marquee-duration, 28s)
    linear
    infinite;
  will-change: transform;
}
.ct-installs-marquee:hover .ct-installs-marquee-track {
  animation-play-state: paused;
}
.ct-installs-marquee-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}
.ct-installs-marquee-item {
  flex: 0 0 auto;
  width: 210px;
  border-radius: 8px;
  overflow: hidden;
}
.ct-installs-marquee-img {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes ct-installs-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767px) {
  .ct-installs-marquee-item {
    width: 170px;
  }
  .ct-installs-marquee-img {
    height: 115px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-installs-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .ct-installs-marquee-track {
    animation: none;
  }
  .ct-installs-marquee:hover .ct-installs-marquee-track {
    animation-play-state: running;
  }
}

/* -- Active Giveaway CTA -- */
.ct-giveaway-cta-section {
  padding: 80px 20px;
}
.ct-giveaway-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
}
.ct-giveaway-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}
.ct-giveaway-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.ct-giveaway-main {
  max-width: 600px;
}
.ct-giveaway-sub {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-giveaway-title {
  font-size: var(--ct-h2-size);
  margin: 0 0 15px;
  color: var(--ct-gold);
  text-transform: var(--ct-heading-transform);
  line-height: 1.1;
  margin-top: 0;
}
.ct-giveaway-desc {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}
.ct-giveaway-actions {
  display: flex;
  gap: 15px;
}

.ct-giveaway-timer-wrap {
  display: flex;
  align-items: center;
}
.ct-giveaway-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
}
.ct-timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ct-timer-box .num {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 5px;
}
.ct-timer-box .lbl {
  font-size: 11px;
  color: #888;
  font-weight: 800;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .ct-giveaway-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .ct-giveaway-main {
    max-width: 100%;
  }
  .ct-giveaway-actions {
    justify-content: center;
  }
  .ct-giveaway-timer-wrap {
    justify-content: center;
    width: 100%;
  }
}

/* -------------------------------------------------------------
 * 7. WOOCOMMERCE DARK THEME OVERRIDES
 * ------------------------------------------------------------- */
.woocommerce-page {
  background-color: var(--ct-black);
  color: var(--ct-light);
}

.woocommerce-products-header__title.page-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title,
.woocommerce-account .page-title {
  color: var(--ct-light);
  margin-bottom: 30px;
  font-weight: 900;
}

.woocommerce-loop-product__title {
  color: var(--ct-light) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
}
.price {
  color: var(--ct-gold) !important;
  font-weight: bold !important;
}

/* Inputs */
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background-color: var(--ct-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ct-light);
  padding: 10px 15px;
  border-radius: 4px;
}
.woocommerce input.input-text:focus {
  border-color: var(--ct-gold);
  outline: none;
}

/* Buttons */
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce button.button,
.woocommerce a.button {
  background-color: var(--ct-gold) !important;
  color: var(--ct-black) !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  font-weight: 800 !important;
  padding: 12px 24px !important;
  border: none !important;
  transition: all 0.3s ease !important;
}
.woocommerce button.button.alt:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background-color: var(--ct-gold-hover) !important;
}

/* Tables */
.woocommerce table.shop_table {
  background-color: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px;
  color: var(--ct-light);
}
.woocommerce table.shop_table th {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}
.woocommerce table.shop_table td {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  background-color: rgba(207, 159, 83, 0.1) !important;
  border-top-color: var(--ct-gold) !important;
  color: var(--ct-light) !important;
}
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--ct-gold) !important;
}

/* -------------------------------------------------------------
 * 10. CT Testimonials Block
 * ------------------------------------------------------------- */
.ct-testimonials-section {
  padding: 80px 0;
  background-color: var(--ct-black);
}
.ct-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.ct-testimonial-card {
  background-color: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ct-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 159, 83, 0.3);
}
.ct-testimonial-stars {
  color: var(--ct-gold);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}
.ct-testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #999;
  flex-grow: 1;
  margin-bottom: 30px;
  font-style: italic;
}
.ct-testimonial-author strong {
  display: block;
  color: var(--ct-light);
  font-size: 1rem;
  margin-bottom: 3px;
}
.ct-testimonial-author span {
  display: block;
  color: #666;
  font-size: 0.85rem;
}

/* -------------------------------------------------------------
 * 11. CT Contact Block
 * ------------------------------------------------------------- */
.ct-contact-section {
  padding: 100px 0;
  background-color: var(--ct-black);
}
.ct-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .ct-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ct-contact-content .ct-section-header {
  text-align: left;
  margin-bottom: 40px;
}
.ct-contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ct-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.ct-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(207, 159, 83, 0.1);
  color: var(--ct-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ct-contact-text strong {
  display: block;
  color: var(--ct-light);
  font-size: 1rem;
  margin-bottom: 5px;
}
.ct-contact-text span {
  color: #999;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Form Styling */
.ct-form-container {
  background-color: var(--ct-dark);
  border-radius: 8px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 768px) {
  .ct-form-container {
    padding: 30px;
  }
}
.ct-form-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: var(--ct-heading-transform);
  color: var(--ct-heading-color);
  margin-top: 0;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.ct-mockup-form .ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 500px) {
  .ct-mockup-form .ct-form-row {
    grid-template-columns: 1fr;
  }
}
.ct-form-group {
  margin-bottom: 20px;
}
.ct-form-group label {
  display: block;
  color: #888;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.ct-form-input {
  width: 100%;
  background-color: var(--ct-header-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--ct-light);
  padding: 12px 15px;
  border-radius: 4px;
  font-family: var(--ct-font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.ct-form-input:focus {
  outline: none;
  border-color: var(--ct-gold);
}
.ct-form-submit {
  display: block;
  width: 100%;
  background-color: var(--ct-gold);
  color: var(--ct-black);
  border: none;
  padding: 15px 30px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}
.ct-form-submit:hover {
  background-color: var(--ct-gold-hover);
}

/* -------------------------------------------------------------
 * 12. CT Featured Content Block
 * ------------------------------------------------------------- */
.ct-featured-content-section {
  padding: 100px 0;
  background-color: var(--ct-black);
}
.ct-featured-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .ct-featured-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.ct-fc-left {
  max-width: 500px;
}
.ct-fc-logo-wrap {
  margin-bottom: 18px;
}
.ct-fc-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.ct-fc-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--ct-subtitle-color);
}
.ct-fc-title {
  font-size: var(--ct-h2-size);
  font-weight: 900;
  line-height: 1.1;
  text-transform: var(--ct-heading-transform);
  color: var(--ct-heading-color);
  margin-bottom: 25px;
}
.ct-fc-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #999;
  margin-bottom: 40px;
}
.ct-fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ct-black);
  background-color: var(--ct-gold);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.ct-fc-btn:hover {
  background-color: var(--ct-gold-hover);
  color: var(--ct-black);
}

.ct-fc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 500px) {
  .ct-fc-features-grid {
    grid-template-columns: 1fr;
  }
  .ct-fc-logo {
    max-width: 180px;
  }
}
.ct-fc-card {
  background-color: var(--ct-dark);
  padding: 35px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ct-fc-card:hover {
  transform: translateY(-5px);
  border-color: var(--ct-icon-color, var(--ct-gold));
}
.ct-fc-icon {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--ct-icon-color, var(--ct-gold)) 10%, transparent);
  color: var(--ct-icon-color, var(--ct-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  margin-bottom: 25px;
}
.ct-featured-content-section .ct-fc-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ct-card-heading-color, var(--ct-heading-color));
  text-transform: var(--ct-heading-transform);
  margin-bottom: 12px;
}
.ct-fc-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #888;
  margin: 0;
}

/* -------------------------------------------------------------
 * 13. CT Icon Bar Block
 * ------------------------------------------------------------- */
.ct-icon-bar-section {
  padding: 60px 0;
  background-color: #0e1012; /* Slightly different dark from pure black */
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.ct-icon-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .ct-icon-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 500px) {
  .ct-icon-bar-grid {
    grid-template-columns: 1fr;
  }
}
.ct-ib-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ct-ib-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(207, 159, 83, 0.08); /* Faint gold */
  color: var(--ct-gold);
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.ct-ib-item:hover .ct-ib-icon {
  transform: translateY(-5px);
  background-color: rgba(207, 159, 83, 0.15);
}
.ct-ib-title {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--ct-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ct-ib-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #777;
  margin: 0;
}

/* -------------------------------------------------------------
 * 14. CT Giveaway Hero Block
 * ------------------------------------------------------------- */
.ct-ghero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
  background-color: var(--ct-black);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Force full-bleed giveaway hero only on live frontend fullwidth template */
body.page-template-template-fullwidth:not(.vc_editor):not(.vc_frontend-editor) .ct-ghero-section {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: clip;
}
.ct-ghero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 16, 18, 0.4) 0%,
    rgba(14, 16, 18, 0.95) 100%
  );
  z-index: 1;
}
.ct-ghero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.ct-ghero-super-title {
  color: var(--ct-subtitle-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 25px;
  font-weight: 700;
}
.ct-ghero-super-title::before,
.ct-ghero-super-title::after {
  content: " — ";
  opacity: 0.5;
}
.ct-ghero-title {
  font-size: var(--ct-h1-size);
  font-weight: 900;
  line-height: 1;
  text-transform: var(--ct-heading-transform);
  margin: 0 0 25px;
  color: var(--ct-gold);
}
.ct-ghero-title span {
  color: var(--ct-light);
}
@media (max-width: 768px) {
  .ct-ghero-title {
    font-size: 3rem;
  }
}
.ct-ghero-desc {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.ct-ghero-prize-box {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 45px;
  letter-spacing: 1px;
}
.ct-ghero-prize-box .text-gold {
  font-size: 1.3rem;
  margin-left: 8px;
}
.ct-ghero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 500px) {
  .ct-ghero-actions {
    flex-direction: column;
  }
}
.ct-ghero-scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #555;
  font-size: 14px;
  animation: ctBounce 2s infinite;
}
@keyframes ctBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Custom CSS for the Giveaway Hero Countdown Timer (Re-used tabular-nums logic) */
.ct-ghero-countdown-wrapper {
  margin-bottom: 20px;
}
.ct-ghero-countdown-label {
  color: var(--ct-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 700;
}
.ct-ghero-countdown-timer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.ct-ghero-countdown-item {
  width: 90px;
  text-align: center;
  color: #888;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ct-ghero-countdown-item .number {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: var(--ct-light);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
}
.ct-ghero-countdown-separator {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ct-gold);
  line-height: 1;
  margin: 0 5px;
  padding-top: 0;
  opacity: 0.3;
  transform: translateY(-5px);
}
@media (max-width: 500px) {
  .ct-ghero-countdown-item {
    width: 70px;
  }
  .ct-ghero-countdown-item .number {
    font-size: 2.5rem;
  }
  .ct-ghero-countdown-separator {
    font-size: 2rem;
    transform: translateY(-2px);
    margin: 0;
  }
}

/* -------------------------------------------------------------
 * 15. CT How It Works Block
 * ------------------------------------------------------------- */
.ct-hiw-section {
  background-color: #0e1012;
  padding: 80px 0;
  color: #fff;
}
.ct-hiw-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.ct-hiw-subtitle {
  color: var(--ct-subtitle-color);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.ct-hiw-title {
  font-size: var(--ct-h2-size);
  font-weight: 900;
  text-transform: var(--ct-heading-transform);
  color: var(--ct-heading-color);
  margin-bottom: 20px;
}
.ct-hiw-desc {
  color: #888;
  font-size: 1.1rem;
  line-height: 1.6;
}
.ct-hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .ct-hiw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ct-hiw-grid {
    grid-template-columns: 1fr;
  }
}
.ct-hiw-card {
  background: #15171a;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 50px 30px;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ct-hiw-card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 159, 83, 0.2);
}
.ct-hiw-number {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.ct-hiw-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(207, 159, 83, 0.08); /* Faint gold */
  color: var(--ct-gold);
  border-radius: 50%; /* Perfect circle */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 25px;
  transition: background-color 0.3s ease;
}
.ct-hiw-card:hover .ct-hiw-icon {
  background-color: rgba(207, 159, 83, 0.15);
}
.ct-hiw-card-title {
  font-weight: 800;
  text-transform: var(--ct-heading-transform);
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ct-heading-color);
  letter-spacing: 1px;
}
.ct-hiw-card-desc {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}
.ct-hiw-disclaimer {
  text-align: center;
  color: #555;
  font-size: 12px;
  margin-top: 30px;
}

/* -------------------------------------------------------------
 * 16. CT Eligible Products Block
 * ------------------------------------------------------------- */
.ct-ep-section {
  background-color: var(--ct-black);
  padding: 80px 0;
  color: #fff;
}
.ct-ep-header {
  text-align: center;
  margin-bottom: 40px;
}
.ct-ep-badge-wrapper {
  margin-bottom: 15px;
}
.ct-ep-badge {
  display: inline-block;
  border: 1px solid var(--ct-gold);
  color: var(--ct-gold);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  background-color: rgba(207, 159, 83, 0.05);
}
.ct-ep-title {
  font-size: var(--ct-h2-size);
  font-weight: 900;
  text-transform: var(--ct-heading-transform);
  color: var(--ct-heading-color);
  margin: 0;
}
@media (max-width: 768px) {
  .ct-ep-title {
    font-size: 1.8rem;
  }
}
.ct-ep-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}
.ct-ep-filter-btn {
  background-color: #15171a;
  color: #aaa;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.ct-ep-filter-btn:hover {
  background-color: #22252a;
  color: #fff;
}
.ct-ep-filter-btn.active {
  background-color: var(--ct-gold);
  color: var(--ct-black);
  border-color: var(--ct-gold);
}
/* Ensure WooCommerce grid fits nicely within our section */
.ct-ep-products-grid .woocommerce {
  margin: 0 auto;
}
.ct-loader {
  text-align: center;
  padding: 80px 0;
  color: var(--ct-gold);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  width: 100%;
}
.ct-loader i {
  margin-right: 12px;
  font-size: 1.4rem;
}
/* Ensure flexbox on the product list to make cards equal height */
.ct-ep-products-grid .woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
}
.ct-ep-products-grid .woocommerce ul.products::before,
.ct-ep-products-grid .woocommerce ul.products::after {
  display: none !important;
}
/* Style the WooCommerce product cards inside our section */
.ct-ep-products-grid .woocommerce ul.products li.product {
  background: #15171a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;
}
.ct-ep-products-grid .woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 159, 83, 0.3);
}
.ct-ep-products-grid .woocommerce ul.products li.product img {
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
}
/* Add some padding to the content area below the image */
.ct-ep-products-grid
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title,
.ct-ep-products-grid .woocommerce ul.products li.product .price,
.ct-ep-products-grid .woocommerce ul.products li.product .button {
  padding-left: 15px;
  padding-right: 15px;
}

/* -------------------------------------------------------------
 * 17. CT Winners Block
 * ------------------------------------------------------------- */
.ct-winners-section {
  background-color: var(--ct-black);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.ct-winners-header {
  margin-bottom: 50px;
}
.ct-winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .ct-winners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ct-winners-grid {
    grid-template-columns: 1fr;
  }
}
.ct-winner-card {
  background: #15171a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ct-winner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(207, 159, 83, 0.3);
}
.ct-winner-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(207, 159, 83, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ct-winner-icon svg {
  width: 24px;
  height: 24px;
}
.ct-winner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.ct-winner-giveaway-number {
  color: var(--ct-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.ct-winner-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.ct-winner-location {
  font-size: 14px;
  color: #888;
}
.ct-winner-location i {
  margin-right: 6px;
}
.ct-winner-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: auto;
  margin-bottom: 25px;
}
.ct-winner-prize {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}
.ct-winners-footer {
  text-align: center;
  margin-top: 50px;
}
.ct-winners-view-all {
  color: var(--ct-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ct-winners-view-all i {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.ct-winners-view-all:hover {
  color: #fff;
  text-decoration: none;
}
.ct-winners-view-all:hover i {
  transform: translateX(4px);
}
.ct-ep-products-grid
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title {
  padding-top: 15px;
  font-size: 1rem;
  font-weight: 700;
}
.ct-ep-products-grid .woocommerce ul.products li.product .button {
  margin: auto 15px 15px;
  width: calc(100% - 30px);
}

/* -------------------------------------------------------------
 * 18. CT Past Winners Grid (Page Template)
 * ------------------------------------------------------------- */
.ct-past-winners-section {
  background-color: var(--ct-black);
  padding: 80px 0;
  color: #fff;
}
.ct-past-winners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .ct-past-winners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .ct-past-winners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .ct-past-winners-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
 * 19. CT Past Winners CTA
 * ------------------------------------------------------------- */
.ct-pw-cta-section {
  padding: 60px 0;
}
.ct-pw-cta-wrapper {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.ct-pw-cta-wrapper:hover {
  transform: translateY(-3px);
  border-color: rgba(207, 159, 83, 0.2);
}
.ct-pw-cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(207, 159, 83, 0.3);
  background: rgba(207, 159, 83, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-pw-cta-icon svg {
  width: 36px;
  height: 36px;
}
.ct-pw-cta-content {
  flex-grow: 1;
}
.ct-pw-cta-title {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: var(--ct-heading-transform);
  color: var(--ct-heading-color);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ct-pw-cta-desc {
  font-size: 1.05rem;
  color: #888;
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
}
.ct-pw-cta-action {
  flex-shrink: 0;
}
.ct-pw-cta-action .ct-btn {
  padding: 15px 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .ct-pw-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  .ct-pw-cta-title {
    font-size: 1.5rem;
  }
}

/* -------------------------------------------------------------
 * 16. My Entries Dashboard
 * ------------------------------------------------------------- */
.ct-my-entries-dashboard {
  padding: 60px 0;
  background-color: var(--ct-darker);
}

.ct-med-header {
  margin-bottom: 50px;
}

.ct-med-super {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--ct-subtitle-color);
}

.ct-med-title {
  font-size: var(--ct-h1-size);
  font-weight: 900;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.ct-med-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.ct-med-stat-card {
  background-color: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ct-med-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(207, 159, 83, 0.2);
}

.ct-med-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(207, 159, 83, 0.1);
  color: var(--ct-gold);
  font-size: 24px;
  margin-bottom: 25px;
}

.ct-med-stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ct-light);
  line-height: 1;
  margin-bottom: 10px;
}

.ct-med-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ct-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ct-med-info-box {
  background-color: rgba(207, 159, 83, 0.05);
  border: 1px solid rgba(207, 159, 83, 0.2);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.ct-med-info-header {
  color: var(--ct-gold);
  font-size: 16px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ct-med-info-box p {
  color: var(--ct-grey);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.ct-med-login-prompt {
  background-color: var(--ct-dark);
  border-radius: 12px;
  padding: 50px 30px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.ct-med-login-prompt p {
  font-size: 18px;
  color: var(--ct-light);
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .ct-med-stats-grid {
    grid-template-columns: 1fr;
  }
  .ct-med-title {
    font-size: 2.5rem;
  }
}

/* -------------------------------------------------------------
 * 17. My Entries Order History
 * ------------------------------------------------------------- */
.ct-my-entries-history {
  padding: 60px 0;
  background-color: var(--ct-black);
}

.ct-meh-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ct-meh-title {
  font-size: var(--ct-h2-size);
  font-weight: 800;
  margin: 0;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
}

.ct-meh-shop-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ct-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-meh-shop-link:hover {
  color: var(--ct-gold-hover);
}

.ct-meh-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-meh-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  transition: border-color 0.3s ease;
}

.ct-meh-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.ct-meh-order-id {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ct-light);
  margin-bottom: 10px;
}

.ct-meh-order-meta {
  font-size: 14px;
  color: var(--ct-grey);
  display: flex;
  align-items: center;
  gap: 15px;
}

.ct-meh-order-meta i {
  color: rgba(255, 255, 255, 0.3);
}

.ct-meh-entry-badge {
  background: rgba(207, 159, 83, 0.1);
  color: var(--ct-gold);
  border: 1px solid rgba(207, 159, 83, 0.3);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ct-meh-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--ct-dark);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.ct-meh-empty p {
  font-size: 18px;
  color: var(--ct-grey);
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .ct-meh-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ct-meh-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* -------------------------------------------------------------
 * 18. WooCommerce Dark Mode Overrides (Cart & Checkout)
 * ------------------------------------------------------------- */
.ct-woo-page-section {
  padding: 60px 0;
  background-color: var(--ct-black);
  color: var(--ct-light);
}

.ct-woo-page-title {
  font-size: var(--ct-h1-size);
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
}

/* Cart Table Overrides */
.woocommerce table.shop_table {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: var(--ct-dark);
}

.woocommerce table.shop_table th {
  background: rgba(0, 0, 0, 0.5);
  color: var(--ct-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.woocommerce table.shop_table td {
  background: var(--ct-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  color: var(--ct-grey);
}

.woocommerce table.shop_table td.product-name a {
  color: var(--ct-light);
  font-weight: 700;
}

.woocommerce table.shop_table td.product-name a:hover {
  color: var(--ct-gold);
}

.woocommerce a.remove {
  color: #ff4444 !important;
  background: rgba(255, 68, 68, 0.1) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}

.woocommerce a.remove:hover {
  background: #ff4444 !important;
  color: #fff !important;
}

/* Cart Inputs */
.woocommerce .quantity .qty {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ct-light);
  padding: 10px;
  border-radius: 6px;
}

/* Cart Totals */
.woocommerce .cart-collaterals .cart_totals {
  background: var(--ct-darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  color: var(--ct-light);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(207, 159, 83, 0.3);
  padding-bottom: 15px;
}

.woocommerce table.shop_table.shop_table_responsive tr td::before {
  color: var(--ct-light);
}

/* Checkout Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ct-light);
  border-radius: 6px;
  padding: 12px 15px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--ct-gold);
  outline: none;
}

.woocommerce form .form-row label {
  color: var(--ct-grey);
}

.select2-container--default .select2-selection--single {
  background: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  height: 46px !important;
  border-radius: 6px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--ct-light) !important;
  line-height: 46px !important;
}

/* Buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--ct-gold);
  color: var(--ct-black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--ct-gold-hover);
  color: var(--ct-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(207, 159, 83, 0.2);
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: var(--ct-gold);
  color: var(--ct-black);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: var(--ct-gold-hover);
  color: var(--ct-black);
}

/* Coupon Input */
.woocommerce-cart table.cart td.actions .coupon .input-text {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: var(--ct-light);
  border-radius: 6px;
  padding: 15px;
  width: 200px;
}

/* -------------------------------------------------------------
 * 19. WooCommerce Dark Mode Overrides (My Account)
 * ------------------------------------------------------------- */

/* My Account Navigation */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 15px 25px;
  color: var(--ct-grey);
  font-weight: 700;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: rgba(207, 159, 83, 0.1);
  color: var(--ct-gold);
}

/* My Account Content Box */
.woocommerce-MyAccount-content {
  background: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px;
}

.woocommerce-MyAccount-content h3 {
  color: var(--ct-light);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(207, 159, 83, 0.3);
  padding-bottom: 15px;
}

.woocommerce-MyAccount-content p {
  color: var(--ct-grey);
  font-size: 16px;
  line-height: 1.6;
}

.woocommerce-MyAccount-content a {
  color: var(--ct-gold);
  font-weight: 700;
}

.woocommerce-MyAccount-content a:hover {
  color: var(--ct-gold-hover);
  text-decoration: underline;
}

/* My Account Address Boxes */
.woocommerce-Address {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 12px;
}

.woocommerce-Address-title h3 {
  border-bottom: none;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Forms in My Account */
.woocommerce-MyAccount-content fieldset {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}

.woocommerce-MyAccount-content legend {
  color: var(--ct-gold);
  font-size: 1.2rem;
  font-weight: 800;
  padding: 0 15px;
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--ct-darker);
  border-radius: 12px;
  border-top-color: var(--ct-gold);
  color: var(--ct-light);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--ct-gold);
}

.woocommerce-error {
  border-top-color: #ff4444;
}
.woocommerce-error::before {
  color: #ff4444;
}

/* -------------------------------------------------------------
 * 13. WOOCOMMERCE SINGLE PRODUCT CUSTOM LAYOUT
 * ------------------------------------------------------------- */
.ct-custom-single-product {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.ct-product-top-bar {
  margin-bottom: 20px;
}

.ct-breadcrumbs {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.ct-breadcrumbs a {
  color: #888;
}
.ct-breadcrumbs a:hover {
  color: var(--ct-gold);
}

.ct-product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media(max-width: 900px) {
    .ct-product-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.ct-product-gallery-col {
    width: 100%;
}

.ct-main-image-wrap {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #111;
    cursor: zoom-in;
}

.ct-main-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.ct-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ct-thumb-item {
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #111;
}

.ct-thumb-item img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ct-thumb-item:hover img,
.ct-thumb-item.ct-thumb-active img {
    opacity: 1;
}

.ct-thumb-item.ct-thumb-active {
    border-color: var(--ct-gold);
}

.ct-product-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.ct-product-rating-wrap {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #888;
}

.ct-product-price-wrap {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}
.ct-product-price-wrap .woocommerce-Price-amount {
  color: #fff !important;
}

.ct-product-badge {
  display: inline-flex;
  align-items: center;
  background: #cf9f53;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 30px;
  color: #000;
  font-weight: 800;
  gap: 10px;
}
.ct-product-badge .ct-entries-val {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.ct-product-badge .ct-multiplier-val {
  color: #ff5555;
  font-weight: 900;
  font-size: 14px;
}

.ct-quantity-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
}

.ct-ga-countdown-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.ct-ga-countdown-label {
  font-size: 11px;
  font-weight: 800;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ct-countdown-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ct-timer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ct-timer-col .ct-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.ct-timer-col .ct-lbl {
  font-size: 10px;
  font-weight: 800;
  color: #888;
  letter-spacing: 1px;
}
.ct-timer-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: #888;
  padding-bottom: 15px;
}

.ct-product-info-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ct-info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #aaa;
  letter-spacing: 1px;
}

.ct-info-block span {
  text-transform: uppercase;
}

.ct-product-description {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.ct-product-add-to-cart-wrap form.cart {
  display: flex !important;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 0 !important;
}

.ct-product-add-to-cart-wrap .quantity {
  display: flex;
}

.ct-product-add-to-cart-wrap .quantity input.qty {
  width: 60px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  text-align: center;
  border-radius: 4px;
}

.ct-product-add-to-cart-wrap button.single_add_to_cart_button {
  flex-grow: 1;
  height: 50px;
  padding: 0 !important;
  font-size: 15px !important;
}

/* Related products */
.ct-related-products-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

/* -------------------------------------------------------------
 * 14. WOOCOMMERCE ARCHIVE / SHOP CUSTOM LAYOUT
 * ------------------------------------------------------------- */
.ct-shop-archive-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.ct-archive-header {
  margin-bottom: 40px;
  text-align: center;
}

.ct-archive-header .page-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ct-archive-header .term-description {
  color: #888;
  max-width: 800px;
  margin: 0 auto;
}

.ct-shop-archive-wrap ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Fix CSS Grid by hiding WooCommerce's float-clearing pseudo elements */
.ct-shop-archive-wrap .woocommerce ul.products::before,
.ct-shop-archive-wrap .woocommerce ul.products::after {
  display: none !important;
}

/* Override WooCommerce's default injected arbitrary % widths on products */
.ct-shop-archive-wrap .woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

@media(max-width: 900px) {
  .ct-shop-archive-wrap ul.products {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .ct-shop-archive-wrap ul.products {
      grid-template-columns: 1fr;
  }
}

.ct-product-card {
  background: var(--ct-dark-grey);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ct-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.ct-product-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.ct-product-card-image {
  width: 100%;
  background: #111;
  position: relative;
  aspect-ratio: 1 / 1;
}

.ct-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-product-card-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.ct-product-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.ct-product-card-price {
  font-size: 18px;
  font-weight: 900;
  color: #cf9f53;
  margin-bottom: 15px;
}
.ct-product-card-price del {
  color: #888;
  font-size: 14px;
  margin-right: 8px;
}

.ct-archive-entries-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(207, 159, 83, 0.1);
  border: 1px solid rgba(207, 159, 83, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  color: #cf9f53;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  margin-top: auto; /* Pushes to bottom of info block if title is short */
}

.ct-archive-entries-badge .ct-multiplier-val {
  color: #ff5555;
}

.ct-product-card-action {
  padding: 0 20px 20px 20px;
  text-align: center;
}

.ct-product-card .ct-btn {
  display: block;
  width: 100%;
}

/* -------------------------------------------------------------
 * 15. CT GALLERY BLOCK (WPBakery)
 * ------------------------------------------------------------- */
.ct-gallery-section {
  position: relative;
  width: 100%;
}
.ct-gallery-subtitle {
  color: var(--ct-subtitle-color);
}
.ct-gallery-title {
  font-size: var(--ct-h2-size);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
}

.ct-gallery-grid {
  display: grid;
  gap: 20px;
  width: 100%;
}

/* 4 Columns variant */
.ct-gallery-grid.ct-gallery-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* 3 Columns variant */
.ct-gallery-grid.ct-gallery-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ct-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background: var(--ct-dark-grey);
}

.ct-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.ct-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.ct-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Let clicks pass through to the link */
}

.ct-gallery-overlay i {
  color: var(--ct-gold);
  font-size: 32px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.ct-gallery-link:hover .ct-gallery-img {
  transform: scale(1.05);
}

.ct-gallery-link:hover .ct-gallery-overlay {
  opacity: 1;
}

.ct-gallery-link:hover .ct-gallery-overlay i {
  transform: scale(1);
}

/* Responsive Overrides */
@media(max-width: 900px) {
  .ct-gallery-grid.ct-gallery-cols-4,
  .ct-gallery-grid.ct-gallery-cols-3 {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .ct-gallery-grid.ct-gallery-cols-4,
  .ct-gallery-grid.ct-gallery-cols-3 {
      grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
 * 16. CONTACT PAGE BLOCKS
 * ------------------------------------------------------------- */
 
/* Hero Section */
.ct-contact-hero-section {
  padding: 80px 0 60px;
}

/* Info Boxes Grid */
.ct-contact-info-boxes {
  padding: 20px 0 60px;
  background: var(--ct-contact-info-section-bg, transparent);
}

.ct-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ct-contact-box {
  background: var(--ct-contact-info-card-bg, var(--ct-dark-grey));
  border: 1px solid var(--ct-contact-info-card-border, rgba(255,255,255,0.05));
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ct-contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-color: var(--ct-contact-info-card-border-hover, rgba(207, 159, 83, 0.3));
}

.ct-cb-icon {
  width: 50px;
  height: 50px;
  background: var(--ct-contact-info-icon-bg, rgba(207, 159, 83, 0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ct-cb-icon i {
  color: var(--ct-contact-info-icon-color, var(--ct-gold));
  font-size: 20px;
}

.ct-cb-title {
  color: var(--ct-contact-info-title-color, var(--ct-heading-color));
  font-size: 18px;
  font-weight: 800;
  text-transform: var(--ct-heading-transform);
  margin: 0 0 10px 0;
}

.ct-cb-line {
  color: var(--ct-contact-info-line-color, #888);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.ct-cb-link {
  color: var(--ct-contact-info-link-color, var(--ct-gold));
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.ct-cb-link:hover {
  color: var(--ct-contact-info-link-hover-color, #fff);
}

@media(max-width: 900px) {
  .ct-contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .ct-contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Quick Response Promise */
.ct-quick-response-block {
  background: var(--ct-dark-grey);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.ct-qr-title {
  color: var(--ct-heading-color);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 25px 0;
  text-transform: var(--ct-heading-transform);
  letter-spacing: 1px;
}

.ct-qr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-qr-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #aaa;
  font-size: 16px;
}

.ct-qr-list li:last-child {
  margin-bottom: 0;
}

.ct-qr-list li i {
  margin-right: 15px;
  font-size: 18px;
}

.ct-qr-list li strong {
  color: #fff;
  font-weight: 800;
}

/* -------------------------------------------------------------
 * 17. GLOBAL FORM STYLING (Contact Form 7, WPForms, etc.)
 * ------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
select,
textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: none;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ct-gold);
  background: #222;
  box-shadow: 0 0 0 2px rgba(207, 159, 83, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: #666;
}

/* Specific plugin wrappers if needed */
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 20px;
}

.wpcf7-submit, 
.gform_button {
  background: var(--ct-gold);
  color: #111;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  display: inline-block;
}

.wpcf7-submit:hover, 
.gform_button:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
 * 18. CUSTOM CONTACT FORM BLOCK (ct_contact_form)
 * ------------------------------------------------------------- */
.ct-contact-form-wrapper {
  background: #111;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}

.ct-cf-main-title {
  color: var(--ct-heading-color);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 30px 0;
  text-transform: var(--ct-heading-transform);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.ct-cf-icon {
  margin-right: 10px;
  font-size: 20px;
}

.ct-cf-row.ct-cf-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-cf-group {
  margin-bottom: 25px;
}

.ct-cf-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ct-cf-req {
  color: #e53935;
}

.ct-contact-form-wrapper input[type="text"],
.ct-contact-form-wrapper input[type="email"],
.ct-contact-form-wrapper input[type="tel"],
.ct-contact-form-wrapper textarea {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 15px;
  width: 100%;
}

.ct-cf-char-counter {
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.ct-cf-submit-btn {
  background: var(--ct-gold);
  color: #111;
  border: none;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.ct-cf-submit-btn i {
  margin-right: 10px;
  font-size: 16px;
}

.ct-cf-submit-btn:hover {
  background: #fff;
}

.ct-cf-footer-note {
  color: #666;
  font-size: 13px;
  margin-top: 20px;
}

.ct-cf-response-msg.success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.ct-cf-response-msg.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid rgba(231, 76, 60, 0.2);
}

@media(max-width: 600px) {
  .ct-cf-row.ct-cf-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* -------------------------------------------------------------
 * 19. SERVICES HERO (ct_services_hero)
 * ------------------------------------------------------------- */
.ct-services-hero {
  padding: 150px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  --ct-services-hero-desc-color: #aaa;
  --ct-services-hero-btn-primary-text: #111;
  --ct-services-hero-btn-primary-bg: var(--ct-gold);
  --ct-services-hero-btn-primary-border: var(--ct-gold);
  --ct-services-hero-btn-secondary-text: #fff;
  --ct-services-hero-btn-secondary-bg: transparent;
  --ct-services-hero-btn-secondary-border: rgba(255,255,255,0.35);
}

.ct-hero-subtitle {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  color: var(--ct-subtitle-color);
}

.ct-hero-subtitle .line-left,
.ct-hero-subtitle .line-right {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--ct-subtitle-color);
  margin: 0 15px;
}

.ct-hero-title {
  font-size: var(--ct-h1-size);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ct-heading-color);
  text-transform: var(--ct-heading-transform);
  margin: 0;
}

.ct-hero-desc {
  max-width: 800px;
  margin: 20px auto;
  color: var(--ct-services-hero-desc-color);
  font-size: 18px;
  line-height: 1.6;
}

.ct-hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ct-services-hero .ct-services-hero-btn-primary {
  color: var(--ct-services-hero-btn-primary-text);
  background: var(--ct-services-hero-btn-primary-bg);
  border: 1px solid var(--ct-services-hero-btn-primary-border);
}

.ct-services-hero .ct-services-hero-btn-secondary {
  color: var(--ct-services-hero-btn-secondary-text);
  background: var(--ct-services-hero-btn-secondary-bg);
  border: 1px solid var(--ct-services-hero-btn-secondary-border);
}

@media(max-width: 768px) {
  .ct-hero-title { font-size: 42px; }
}

/* -------------------------------------------------------------
 * 20. SERVICES FEATURES (ct_services_features)
 * ------------------------------------------------------------- */
.ct-services-features-section {
  padding: 60px 0;
  background: var(--ct-services-features-bg, #111);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ct-sf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ct-sf-item {
  padding: 20px;
}

.ct-sf-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ct-services-features-icon-bg, rgba(207, 159, 83, 0.1));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.ct-sf-icon {
  color: var(--ct-services-features-icon-color, var(--ct-gold));
}

.ct-sf-title {
  color: var(--ct-services-features-title-color, var(--ct-heading-color));
  font-size: 16px;
  font-weight: 800;
  text-transform: var(--ct-heading-transform);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ct-sf-desc {
  color: var(--ct-services-features-desc-color, #888);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media(max-width: 991px) {
  .ct-sf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .ct-sf-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
 * 21. SERVICE LINEUP (ct_service_lineup)
 * ------------------------------------------------------------- */
.ct-service-lineup-section {
  padding: 100px 0;
}

.ct-lineup-row {
  display: flex;
  align-items: stretch;
  background: var(--ct-service-lineup-row-bg, #111);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid var(--ct-service-lineup-row-border, rgba(255,255,255,0.05));
}

.ct-lineup-row.reverse {
  flex-direction: row-reverse;
}

.ct-lineup-image-col,
.ct-lineup-content-col {
  flex: 1;
}

.ct-lineup-image-col {
  position: relative;
}

.ct-lineup-image-wrap {
  position: relative;
  height: 100%;
}

.ct-lineup-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-lineup-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--ct-service-lineup-badge-bg, var(--ct-gold));
  color: var(--ct-service-lineup-badge-text, #111);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
}

.ct-lineup-row.reverse .ct-lineup-badge {
  right: auto;
  left: 20px;
}

.ct-lineup-content-col {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-lineup-step {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.ct-step-icon {
  width: 40px;
  height: 40px;
  background: var(--ct-service-lineup-step-icon-bg, #1a1a1a);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.ct-step-icon-glyph {
  color: var(--ct-service-lineup-step-icon-color, var(--ct-gold));
}

.ct-step-number {
  color: var(--ct-service-lineup-step-number-color, #666);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
}

.ct-lineup-title {
  color: var(--ct-service-lineup-title-color, var(--ct-heading-color));
  font-size: var(--ct-h3-size);
  font-weight: 900;
  text-transform: var(--ct-heading-transform);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.ct-lineup-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--ct-service-lineup-subtitle-color, var(--ct-subtitle-color));
}

.ct-lineup-desc {
  color: var(--ct-service-lineup-desc-color, #aaa);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 768px;
}

.ct-lineup-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ct-lineup-features li {
  color: var(--ct-service-lineup-features-text-color, #888);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
}

.ct-lineup-features li i {
  color: var(--ct-service-lineup-features-icon-color, var(--ct-gold));
  margin-top: 4px;
  margin-right: 10px;
  font-size: 12px;
}

.ct-service-lineup-section .ct-desc {
  color: var(--ct-service-lineup-section-desc-color, #888);
}

.ct-lineup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--ct-gold);
  border-radius: 9999px;
  background: var(--ct-gold);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ct-lineup-btn:hover,
.ct-lineup-btn:focus-visible {
  background: transparent;
  border-color: var(--ct-gold);
  color: var(--ct-gold);
  transform: translateY(-1px);
}

.ct-lineup-btn:focus-visible {
  outline: 2px solid var(--ct-gold);
  outline-offset: 2px;
}

.ct-lineup-btn:active {
  transform: translateY(0);
}

@media(max-width: 991px) {
  .ct-lineup-row, .ct-lineup-row.reverse {
    flex-direction: column;
  }
  .ct-lineup-image-col { min-height: 300px; }
  .ct-lineup-content-col { padding: 40px 30px; }
  .ct-lineup-badge { left: 20px; right: auto; }
}
@media(max-width: 600px) {
  .ct-lineup-features { grid-template-columns: 1fr; }
  .ct-lineup-btn {
    width: 100%;
    align-self: stretch;
  }
}

/* -------------------------------------------------------------
 * 22. PRICING TABLE (ct_pricing_table)
 * ------------------------------------------------------------- */
.ct-pricing-section {
  padding: 100px 0;
  background: #0d0d0d;
}

.ct-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.ct-pricing-card {
  background: #111;
  border-radius: 8px;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.3s ease;
}

.ct-pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(207, 159, 83, 0.3);
}

.ct-pricing-card.featured {
  border: 1px solid var(--ct-gold);
  background: #151515;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 2;
}

.ct-pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.ct-pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ct-gold);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.ct-pricing-subtitle {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--ct-subtitle-color);
}

.ct-pricing-title {
  color: var(--ct-heading-color);
  font-size: var(--ct-h3-size);
  font-weight: 900;
  text-transform: var(--ct-heading-transform);
  margin-bottom: 15px;
}

.ct-pricing-desc {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  min-height: 44px;
}

.ct-pricing-price-wrap {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: baseline;
}

.ct-price {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
}

.ct-price-suffix {
  color: #666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 10px;
}

.ct-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.ct-pricing-features li {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.ct-pricing-features li i {
  margin-top: 4px;
  margin-right: 15px;
}

.ct-pricing-btn {
  width: 100%;
}

@media(max-width: 991px) {
  .ct-pricing-grid { gap: 20px; }
  .ct-pricing-card { padding: 40px 30px; }
  .ct-pricing-card.featured { transform: none; margin: 20px 0; }
  .ct-pricing-card.featured:hover { transform: translateY(-5px); }
  .ct-desc { min-height: 0; }
}

@media(max-width: 768px) {
  .ct-pricing-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------
 * 23. OUR PROCESS (ct_process_steps)
 * ------------------------------------------------------------- */
.ct-process-section {
  padding: 100px 0;
  background: var(--ct-process-section-bg, #0d0d0d);
}

.ct-process-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.ct-process-connect-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--ct-process-connector-color, rgba(255,255,255,0.1));
  z-index: -1;
}

.ct-process-item {
  flex: 1;
  padding: 0 20px;
}

.ct-process-icon-box {
  width: 80px;
  height: 80px;
  background: var(--ct-process-icon-bg, #151515);
  border-radius: 50%;
  border: 1px solid var(--ct-process-icon-border, rgba(255,255,255,0.05));
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.ct-process-icon-glyph {
  color: var(--ct-process-icon-color, var(--ct-gold));
}

.ct-process-item:hover .ct-process-icon-box {
  transform: translateY(-5px);
  border-color: var(--ct-process-icon-border-hover, rgba(207, 159, 83, 0.5));
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.ct-process-number {
  position: absolute;
  top: 0;
  right: -5px;
  background: var(--ct-process-number-bg, var(--ct-gold));
  color: var(--ct-process-number-text, #111);
  font-size: 11px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-process-title {
  color: var(--ct-process-title-color, var(--ct-heading-color));
  font-size: 18px;
  font-weight: 800;
  text-transform: var(--ct-heading-transform);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ct-process-desc {
  color: var(--ct-process-desc-color, #888);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 250px;
}

.ct-process-section .ct-desc {
  color: var(--ct-process-section-desc-color, #888);
}

@media(max-width: 768px) {
  .ct-process-grid {
    flex-direction: column;
  }
  .ct-process-connect-line {
    display: none;
  }
  .ct-process-item {
    margin-bottom: 40px;
  }
}

/* -------------------------------------------------------------
 * 24. FAQ ACCORDION (ct_faq_accordion)
 * ------------------------------------------------------------- */
.ct-faq-section {
  padding: 80px 0;
  background: var(--ct-faq-section-bg, #050505);
}

.ct-faq-section > .ct-container {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ct-faq-accordion {
  width: 100%;
}

.ct-faq-item {
  background: var(--ct-faq-card-bg, #111);
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid var(--ct-faq-card-border, rgba(255,255,255,0.05));
  overflow: hidden;
  transition: all 0.3s ease;
}

.ct-faq-item:hover {
  border-color: var(--ct-faq-card-border-hover, rgba(255,255,255,0.1));
}

.ct-faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ct-faq-question-color, #fff);
  font-size: 16px;
  font-weight: 700;
  user-select: none;
}

.ct-faq-question i {
  color: var(--ct-faq-chevron-color, #666);
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ct-faq-item.active .ct-faq-question i {
  transform: rotate(180deg);
  color: var(--ct-faq-chevron-active-color, var(--ct-gold));
}

.ct-faq-answer {
  display: none;
  border-top: 1px solid var(--ct-faq-answer-border, rgba(255,255,255,0.05));
}

.ct-faq-answer-inner {
  padding: 25px 30px;
  color: var(--ct-faq-answer-color, #aaa);
  font-size: 15px;
  line-height: 1.6;
}

.ct-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------------------------
 * 25. GIVEAWAY WINNER BLOCKS
 * ------------------------------------------------------------- */
.ct-winner-hero { text-align: center; padding: 60px 20px; }
.ct-winner-hero-subtitle { color: var(--ct-gold); font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ct-winner-hero-subtitle .ct-line { height: 1px; background: var(--ct-gold); width: 40px; margin: 0 15px; }
.ct-winner-hero-title { font-size: var(--ct-h1-size); font-weight: 900; color: var(--ct-heading-color); margin-bottom: 15px; text-transform: var(--ct-heading-transform); }
.ct-winner-hero-desc { font-size: 1.1rem; color: var(--ct-grey); max-width: 600px; margin: 0 auto 40px; }
.ct-winner-hero-desc strong { color: var(--ct-gold); }
.ct-winner-stats { display: flex; justify-content: center; gap: 20px; }
.ct-winner-stat-box { background: var(--ct-dark); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 15px 30px; display: flex; align-items: center; gap: 15px; }
.ct-winner-stat-icon { color: var(--ct-gold); font-size: 20px; }
.ct-winner-stat-text { text-align: left; }
.ct-winner-stat-val { font-size: 1.2rem; font-weight: 900; color: #fff; line-height: 1.2; }
.ct-winner-stat-label { font-size: 10px; color: #888; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
@media(max-width: 768px) { .ct-winner-hero-title { font-size: 2.5rem; } .ct-winner-stats { flex-direction: column; } }

.ct-wheel-container { display: flex; flex-direction: column; align-items: center; padding: 40px 20px; overflow: hidden; }
.ct-wheel-wrapper { position: relative; width: 400px; height: 400px; margin: 0 auto 40px; }
.ct-wheel-pointer { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--ct-gold); clip-path: polygon(50% 100%, 0 0, 100% 0); z-index: 10; }
.ct-wheel { width: 100%; height: 100%; border-radius: 50%; border: 10px solid #222; box-shadow: 0 0 0 5px #111, 0 0 30px rgba(207,159,83,0.3); position: relative; overflow: hidden; transition: transform 5s cubic-bezier(0.25, 0.1, 0.15, 1); }
.ct-wheel-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: #222; border: 5px solid var(--ct-gold); border-radius: 50%; z-index: 5; box-shadow: 0 0 10px rgba(0,0,0,0.5); }
.ct-wheel-center::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; background: var(--ct-gold); border-radius: 50%; }
.ct-wheel-labels { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; pointer-events: none; }
.ct-wheel-label { position: absolute; top: 50%; left: 50%; width: 50%; height: 20px; margin-top: -10px; transform-origin: left center; display: flex; align-items: center; justify-content: flex-end; padding-right: 20px; font-size: 13px; font-weight: 800; color: #fff; text-shadow: 1px 1px 2px rgba(0,0,0,0.8); }
.ct-wheel-action { margin-bottom: 20px; }
.ct-wheel-btn { width: 100px; height: 100px; border-radius: 50%; background: var(--ct-gold); color: var(--ct-black); border: none; font-size: 16px; font-weight: 900; text-transform: uppercase; cursor: pointer; box-shadow: 0 0 20px rgba(207,159,83,0.4), inset 0 0 15px rgba(255,255,255,0.4); transition: transform 0.2s, box-shadow 0.2s; display: flex; align-items: center; justify-content: center; }
.ct-wheel-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(207,159,83,0.6), inset 0 0 15px rgba(255,255,255,0.5); }
.ct-wheel-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: scale(1); }
@media(max-width: 500px) { .ct-wheel-wrapper { width: 300px; height: 300px; } }

.ct-winner-box-wrap { display: none; max-width: 600px; margin: 0 auto; opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; padding: 40px 20px; }
.ct-winner-box-wrap.active { display: block; }
.ct-winner-box-wrap.show { opacity: 1; transform: translateY(0); }
.ct-winner-box { background: #111; border: 1px solid rgba(207,159,83,0.3); border-radius: 12px; padding: 50px 40px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.ct-winner-box-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: rgba(207,159,83,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ct-gold); font-size: 24px; }
.ct-winner-box-subtitle { color: var(--ct-gold); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; }
.ct-winner-box-name { font-size: var(--ct-h1-size); font-weight: 900; color: var(--ct-heading-color); margin-bottom: 30px; text-transform: var(--ct-heading-transform); }
.ct-winner-prize { background: var(--ct-darker); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; padding: 20px; text-align: left; gap: 20px; margin-bottom: 30px; }
.ct-winner-prize img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; }
.ct-winner-prize-info h4 { font-size: 16px; margin: 0 0 5px; color: var(--ct-heading-color); }
.ct-winner-prize-info p { font-size: 13px; color: #888; margin: 0 0 5px; }
.ct-winner-prize-info span { font-size: 11px; font-weight: 800; color: var(--ct-gold); text-transform: uppercase; letter-spacing: 1px; }
.ct-winner-box-footer { font-size: 14px; color: #888; line-height: 1.6; }
@media(max-width: 600px) { .ct-winner-prize { flex-direction: column; text-align: center; } .ct-winner-box-name { font-size: 2rem; } }

.ct-leaderboard-section { padding: 60px 20px; max-width: 1000px; margin: 0 auto; text-align: center; }
.ct-leaderboard-subtitle { color: var(--ct-gold); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.ct-leaderboard-title { font-size: var(--ct-h2-size); font-weight: 900; color: var(--ct-heading-color); margin-bottom: 15px; text-transform: var(--ct-heading-transform); }
.ct-leaderboard-desc { font-size: 14px; color: #888; margin-bottom: 40px; }
.ct-leaderboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.ct-leaderboard-item { background: var(--ct-dark); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; transition: all 0.3s ease; }
.ct-leaderboard-item-inner { display: flex; align-items: center; gap: 15px; }
.ct-leaderboard-rank { width: 24px; height: 24px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #888; }
.ct-leaderboard-name { font-size: 15px; font-weight: 700; color: #fff; }
.ct-leaderboard-icon { color: var(--ct-gold); opacity: 0; transition: opacity 0.3s ease; }
.ct-leaderboard-item.is-winner { background: rgba(207,159,83,0.1); border-color: var(--ct-gold); }
.ct-leaderboard-item.is-winner .ct-leaderboard-rank { background: var(--ct-gold); color: #000; }
.ct-leaderboard-item.is-winner .ct-leaderboard-name { color: var(--ct-gold); }
.ct-leaderboard-item.is-winner .ct-leaderboard-icon { opacity: 1; }

/* =============================================================================
   26. DESIGN CONTEST BLOCKS
============================================================================= */

/* -- 26a. Hero ------------------------------------------------------------ */
.ct-dc-hero-section {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
  background-color: #0e1012;
}
.ct-dc-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.015) 20px,
      rgba(255,255,255,0.015) 40px
    );
  z-index: 0;
  pointer-events: none;
}
.ct-dc-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.ct-dc-hero-subtitle {
  color: var(--ct-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ct-dc-line {
  height: 1px;
  background: var(--ct-gold);
  width: 40px;
  margin: 0 15px;
}
.ct-dc-hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1;
}
.ct-dc-hero-desc {
  font-size: 1.1rem;
  color: #ccc;
  margin: 0 auto 40px;
  max-width: 700px;
  line-height: 1.7;
}
.ct-dc-hero-desc strong {
  color: var(--ct-gold);
  text-decoration: underline;
}

/* Stats Bar */
.ct-dc-stats-bar {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  background: rgba(0,0,0,0.4);
}
.ct-dc-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
}
.ct-dc-stat-border {
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ct-dc-stat-icon {
  color: var(--ct-gold);
  font-size: 18px;
}
.ct-dc-stat-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ct-dc-stat-label {
  font-size: 10px;
  font-weight: 800;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Current Leader Bar */
.ct-dc-leader-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 15px 25px;
  margin-top: 20px;
}
.ct-dc-leader-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ct-dc-leader-crown {
  color: var(--ct-gold);
  font-size: 22px;
}
.ct-dc-leader-thumb {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  object-fit: cover;
}
.ct-dc-leader-info {
  display: flex;
  flex-direction: column;
}
.ct-dc-leader-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--ct-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ct-dc-leader-name {
  font-size: 1rem;
  color: #fff;
}
.ct-dc-leader-votes {
  font-size: 0.95rem;
  color: #888;
}
.ct-dc-leader-votes i {
  color: #e74c3c;
  margin-right: 4px;
}
.ct-dc-leader-votes strong {
  color: var(--ct-gold);
  font-size: 1.2rem;
}

@media(max-width: 768px) {
  .ct-dc-hero-title { font-size: 2.5rem; }
  .ct-dc-stats-bar { flex-direction: column; }
  .ct-dc-stat-border { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ct-dc-leader-bar { flex-direction: column; gap: 15px; text-align: center; }
  .ct-dc-leader-left { justify-content: center; }
}

/* -- 26b. Entry Form ------------------------------------------------------ */
.ct-dc-form-section {
  padding: 60px 0;
  background-color: var(--ct-black);
}
.ct-dc-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px;
}
.ct-dc-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 30px;
}
.ct-dc-form-title i {
  margin-right: 10px;
  color: var(--ct-gold);
}
.ct-dc-field {
  margin-bottom: 25px;
}
.ct-dc-field label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ct-dc-req {
  color: #e53935;
}
.ct-dc-field input[type="text"],
.ct-dc-field input[type="email"],
.ct-dc-field textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.ct-dc-field input:focus,
.ct-dc-field textarea:focus {
  border-color: var(--ct-gold);
  outline: none;
}
.ct-dc-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Dropzone */
.ct-dc-dropzone {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-dc-dropzone:hover,
.ct-dc-dropzone.ct-dc-dropzone--hover {
  border-color: var(--ct-gold);
  background: rgba(207,159,83,0.03);
}
.ct-dc-dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.ct-dc-dropzone-inner i {
  font-size: 32px;
  color: #555;
  margin-bottom: 10px;
}
.ct-dc-dropzone-inner p {
  color: #fff;
  font-size: 15px;
  margin: 0;
}
.ct-dc-dropzone-inner span {
  color: #666;
  font-size: 13px;
}
.ct-dc-dropzone-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.ct-dc-dropzone-preview img {
  max-height: 180px;
  max-width: 100%;
  border-radius: 6px;
  object-fit: contain;
}
.ct-dc-remove-file {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  border: none;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.ct-dc-remove-file:hover {
  transform: scale(1.1);
}

/* Submit Button */
.ct-dc-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px;
  background: var(--ct-gold);
  color: var(--ct-black);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: inherit;
}
.ct-dc-submit-btn:hover {
  background: var(--ct-gold-hover);
  transform: translateY(-2px);
}
.ct-dc-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form Messages */
.ct-dc-form-msg {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.ct-dc-msg-success {
  background: rgba(46,204,113,0.1);
  color: #2ecc71;
  border: 1px solid rgba(46,204,113,0.2);
}
.ct-dc-msg-error {
  background: rgba(231,76,60,0.1);
  color: #e74c3c;
  border: 1px solid rgba(231,76,60,0.2);
}

@media(max-width: 600px) {
  .ct-dc-form-card { padding: 25px; }
}

/* -- 26c. Leaderboard ----------------------------------------------------- */
.ct-dc-leaderboard-section {
  padding: 60px 0;
  background: var(--ct-black);
}
.ct-dc-lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.ct-dc-lb-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.ct-dc-lb-title i {
  color: var(--ct-gold);
  margin-right: 10px;
}
.ct-dc-lb-badge {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}
.ct-dc-lb-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 1.1rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
}

/* Leaderboard Item */
.ct-dc-lb-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.ct-dc-lb-item:hover {
  border-color: rgba(255,255,255,0.1);
}
.ct-dc-lb-item--first {
  border-color: var(--ct-gold);
  background: rgba(207,159,83,0.05);
}
.ct-dc-lb-rank {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #888;
  flex-shrink: 0;
}
.ct-dc-lb-crown {
  background: transparent;
  color: var(--ct-gold);
  font-size: 18px;
}
.ct-dc-lb-thumb {
  width: 55px;
  height: 45px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.ct-dc-lb-info {
  flex-grow: 1;
  min-width: 0;
}
.ct-dc-lb-info strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}
.ct-dc-lb-info span {
  font-size: 13px;
  color: #666;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ct-dc-lb-votes {
  text-align: center;
  flex-shrink: 0;
  min-width: 55px;
}
.ct-dc-lb-votes-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.ct-dc-lb-votes-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Vote Button */
.ct-dc-vote-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ct-dc-vote-btn:hover {
  border-color: #e74c3c;
  color: #e74c3c;
  background: rgba(231,76,60,0.1);
}
.ct-dc-vote-btn.ct-dc-voted {
  color: #e74c3c;
  border-color: #e74c3c;
  background: rgba(231,76,60,0.1);
}

@media(max-width: 600px) {
  .ct-dc-lb-header { flex-direction: column; align-items: flex-start; gap: 5px; }
  .ct-dc-lb-info span { display: none; }
  .ct-dc-lb-thumb { width: 40px; height: 35px; }
}

/* -- 26d. Share ----------------------------------------------------------- */
.ct-dc-share-section {
  padding: 30px 0;
  background: var(--ct-black);
}
.ct-dc-share-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ct-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 15px;
}
.ct-dc-share-title i {
  margin-right: 8px;
}
.ct-dc-share-buttons {
  display: flex;
  gap: 15px;
}
.ct-dc-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.3s ease;
}
.ct-dc-share-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  opacity: 0.9;
}
.ct-dc-share-btn i {
  font-size: 18px;
}
.ct-dc-share-ig {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}
.ct-dc-share-fb {
  background: #1877F2;
}

@media(max-width: 500px) {
  .ct-dc-share-buttons { flex-direction: column; }
}

/* -- 26e. How It Works ---------------------------------------------------- */
.ct-dc-hiw-section {
  padding: 80px 0;
  background: #0e1012;
}
.ct-dc-hiw-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 50px;
}
.ct-dc-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.ct-dc-hiw-item {
  text-align: center;
}
.ct-dc-hiw-icon {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(207,159,83,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--ct-gold);
  font-size: 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ct-dc-hiw-item:hover .ct-dc-hiw-icon {
  border-color: var(--ct-gold);
  background: rgba(207,159,83,0.08);
}
.ct-dc-hiw-step-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.ct-dc-hiw-step-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width: 768px) {
  .ct-dc-hiw-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* -- 26f. CTA ------------------------------------------------------------- */
.ct-dc-cta-section {
  padding: 60px 0;
  background: var(--ct-black);
}
.ct-dc-cta-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(17,17,17,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
}
.ct-dc-cta-icon {
  color: var(--ct-gold);
  font-size: 28px;
  margin-bottom: 20px;
}
.ct-dc-cta-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px;
}
.ct-dc-cta-desc {
  font-size: 1rem;
  color: #888;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 30px;
}
.ct-dc-cta-btn {
  padding: 15px 35px;
  font-size: 14px;
}

/* Social badges in leaderboard (plugin integration) */
.ct-dc-lb-social-icons {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
}
.ct-dc-lb-social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
}
.ct-dc-fb-badge {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}
.ct-dc-ig-badge {
  background: rgba(228, 64, 95, 0.15);
  color: #e4405f;
}

/* Share buttons as buttons (plugin mode) */
button.ct-dc-share-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* -------------------------------------------------------------
 * CT Tint Revealer Block
 * ------------------------------------------------------------- */
.ct-tint-revealer-section {
  padding: 80px 0;
  background-color: var(--ct-black);
}
.ct-tint-revealer-desc {
  color: var(--ct-grey);
  max-width: 600px;
  margin: 15px auto 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.ct-tint-revealer {
  margin-top: 50px;
}
.ct-tint-revealer-viewport {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.ct-tint-revealer-img {
  display: block;
  width: 100%;
  height: auto;
}
.ct-tint-revealer-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  will-change: clip-path;
}
.ct-tint-revealer-layer.active {
  clip-path: inset(0 0 0 0);
}
.ct-tint-revealer-layer.incoming {
  z-index: 3;
}
.ct-tint-revealer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  color: var(--ct-gold);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.3s ease;
}
.ct-tint-revealer-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 350px;
  background: var(--ct-dark);
  color: var(--ct-grey);
  font-size: 0.9rem;
}
.ct-tint-revealer-placeholder i {
  font-size: 2.5rem;
  opacity: 0.4;
}
.ct-tint-revealer-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.ct-tint-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--ct-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--ct-grey);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.ct-tint-btn:hover {
  border-color: rgba(207, 159, 83, 0.4);
  color: var(--ct-light);
  transform: translateY(-2px);
}
.ct-tint-btn.active {
  border-color: var(--ct-gold);
  color: var(--ct-gold);
}
.ct-tint-btn-swatch {
  width: 36px;
  height: 22px;
  border-radius: 3px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ct-tint-btn-label {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .ct-tint-revealer-section {
    padding: 50px 0;
  }
  .ct-tint-revealer-controls {
    gap: 8px;
  }
  .ct-tint-btn {
    padding: 10px 12px;
    font-size: 0.7rem;
  }
  .ct-tint-btn-swatch {
    width: 28px;
    height: 16px;
  }
  .ct-tint-revealer-badge {
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ct-tint-revealer-layer {
    transition: clip-path 0.01ms;
  }
}

/* -------------------------------------------------------------
 * 31. Responsive Hardening (Custom WPBakery Blocks)
 * ------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* Batch A: Hero/Header */
  .ct-hero-section,
  .ct-ghero-section,
  .ct-services-hero,
  .ct-contact-hero-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .ct-hero-title,
  .ct-ghero-title,
  .ct-services-hero .ct-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.12;
  }
  .ct-hero-desc,
  .ct-ghero-desc,
  .ct-services-hero .ct-hero-desc {
    font-size: 1rem;
  }
  .ct-featured-content-wrapper {
    gap: 40px;
  }
  .ct-fc-left {
    max-width: 100%;
  }
  .ct-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .ct-hiw-card {
    padding: 40px 24px;
  }
  .ct-giveaway-card {
    padding: 42px 34px;
  }
  .ct-giveaway-content {
    gap: 28px;
  }

  /* Batch B: Grid/Card/Gallery */
  .ct-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-installs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-install-item img {
    height: 260px;
  }
  .ct-gallery-grid.ct-gallery-cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ct-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-sf-grid,
  .ct-process-grid {
    gap: 20px;
  }
  .ct-lineup-content-col {
    padding: 36px 28px;
  }

  /* Batch C: Content/Forms */
  .ct-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-contact-wrapper {
    gap: 34px;
  }
  .ct-contact-form-wrapper {
    padding: 44px 34px;
  }
  .ct-quick-response-block {
    padding: 48px 34px;
  }

  /* Batch D: Woo/Giveaway/Account */
  .ct-winners-grid,
  .ct-past-winners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-meh-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .ct-services-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-contact-hero-section > .ct-container,
  .ct-contact-info-boxes > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-gallery-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-faq-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-service-lineup-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-contact-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-testimonials-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-recent-installs-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-featured-content-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-tint-revealer-section > .ct-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-contact-form-wrapper {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }
  .ct-fc-logo-wrap {
    text-align: center;
  }
  .ct-fc-logo {
    margin-left: auto;
    margin-right: auto;
  }

  /* Batch A */
  .ct-hero-actions,
  .ct-ghero-actions,
  .ct-services-hero .ct-hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  .ct-giveaway-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .ct-giveaway-main {
    max-width: 100%;
  }
  .ct-hero-content {
    width: 100%;
    max-width: 100% !important;
    padding-left: 16px;
    padding-right: 16px;
  }
  .ct-hero-section .ct-stats-bar {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 14px 8px;
    margin-bottom: 28px;
  }
  .ct-hero-section .ct-stat-item {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 8px;
  }
  .ct-hero-section .ct-stat-val {
    font-size: clamp(1.7rem, 6.5vw, 2.1rem);
  }
  .ct-hero-section .ct-stat-label {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  /* Batch B */
  .ct-services-grid,
  .ct-features-grid,
  .ct-installs-grid,
  .ct-pricing-grid,
  .ct-sf-grid,
  .ct-process-grid,
  .ct-testimonials-grid,
  .ct-gallery-grid.ct-gallery-cols-4,
  .ct-gallery-grid.ct-gallery-cols-3,
  .ct-winners-grid,
  .ct-past-winners-grid {
    grid-template-columns: 1fr;
  }
  .ct-install-item img {
    height: 230px;
  }
  .ct-service-card,
  .ct-pricing-card,
  .ct-gallery-item {
    min-width: 0;
  }
  .ct-lineup-row,
  .ct-lineup-row.reverse {
    grid-template-columns: 1fr;
  }
  .ct-lineup-content-col {
    padding: 30px 22px;
  }
  .ct-lineup-image-col {
    min-height: 240px;
  }
  .ct-hiw-header {
    margin-bottom: 34px;
  }
  .ct-hiw-desc {
    font-size: 1rem;
  }
  .ct-ep-filter-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  .ct-pw-cta-wrapper {
    padding: 30px 24px;
    gap: 18px;
  }

  /* Batch C */
  .ct-contact-wrapper {
    grid-template-columns: 1fr;
  }
  .ct-contact-list {
    gap: 14px;
  }
  .ct-contact-item {
    align-items: flex-start;
  }
  .ct-contact-info-grid {
    grid-template-columns: 1fr;
  }
  .ct-faq-question {
    align-items: flex-start;
    gap: 10px;
  }
  .ct-contact-form-wrapper,
  .ct-med-login-prompt {
    padding: 34px 24px;
  }
  .ct-quick-response-block {
    padding: 36px 24px;
  }
  .ct-icon-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-contact-form-wrapper .ct-btn,
  .ct-contact-form-wrapper button,
  .ct-contact-form-wrapper input[type="submit"] {
    width: 100%;
  }

  /* Batch D */
  .ct-meh-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ct-meh-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ct-meh-order-meta {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}

@media (max-width: 375px) {
  .ct-services-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-contact-hero-section > .ct-container,
  .ct-contact-info-boxes > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-gallery-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-faq-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-service-lineup-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-contact-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-testimonials-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-recent-installs-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-featured-content-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-tint-revealer-section > .ct-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-contact-form-wrapper {
    margin-left: 12px;
    margin-right: 12px;
  }

  .ct-hero-section,
  .ct-ghero-section,
  .ct-services-hero,
  .ct-contact-hero-section,
  .ct-features-section,
  .ct-recent-installs-section,
  .ct-giveaway-cta-section,
  .ct-services-section,
  .ct-testimonials-section,
  .ct-contact-section,
  .ct-featured-content-section,
  .ct-hiw-section,
  .ct-ep-section,
  .ct-winners-section,
  .ct-past-winners-section,
  .ct-pw-cta-section,
  .ct-gallery-section,
  .ct-services-features-section,
  .ct-service-lineup-section,
  .ct-pricing-section,
  .ct-process-section,
  .ct-faq-section,
  .ct-tint-revealer-section,
  .ct-woo-page-section,
  .ct-my-entries-dashboard,
  .ct-my-entries-history {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .ct-hero-title,
  .ct-ghero-title,
  .ct-services-hero .ct-hero-title,
  .ct-hiw-title,
  .ct-ep-title,
  .ct-contact-form-wrapper .ct-title,
  .ct-services-section .ct-title,
  .ct-testimonials-section .ct-title,
  .ct-gallery-title,
  .ct-woo-page-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    letter-spacing: -0.02em;
    word-break: break-word;
  }
  .ct-install-item img {
    height: 200px;
  }
  .ct-installs-marquee-item {
    width: 150px;
  }
  .ct-installs-marquee-img {
    height: 100px;
  }
  .ct-giveaway-card,
  .ct-contact-form-wrapper,
  .ct-med-login-prompt {
    padding: 26px 18px;
  }
  .ct-hiw-card {
    padding: 30px 16px;
  }
  .ct-pw-cta-wrapper {
    padding: 24px 16px;
  }
  .ct-pw-cta-action .ct-btn {
    width: 100%;
    justify-content: center;
  }
  .ct-quick-response-block {
    padding: 28px 18px;
  }
  .ct-icon-bar-grid {
    grid-template-columns: 1fr;
  }
  .ct-meh-card {
    padding: 18px;
  }
  .ct-hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .ct-hero-section .ct-stats-bar {
    padding: 12px 6px;
    margin-bottom: 24px;
  }
  .ct-hero-section .ct-stat-item {
    padding: 0 6px;
  }
  .ct-hero-section .ct-stat-border {
    border-left-width: 1px;
    border-right-width: 1px;
  }
  .ct-hero-section .ct-hero-actions {
    gap: 10px;
    margin-bottom: 36px;
  }
}

@media (max-width: 320px) {
  .ct-container {
    width: 100%;
    max-width: 100%;
  }
  .ct-hero-subtitle,
  .ct-subtitle,
  .ct-med-super {
    letter-spacing: 1px;
  }
  .ct-hero-actions .ct-btn,
  .ct-ghero-actions .ct-btn,
  .ct-services-hero .ct-hero-actions .ct-btn {
    width: 100%;
    justify-content: center;
  }
  .ct-ep-filter-bar {
    gap: 8px;
  }
  .ct-ep-filter-btn {
    width: 100%;
    max-width: 100%;
  }
  .ct-install-item img {
    height: 185px;
  }
  .ct-installs-marquee-item {
    width: 138px;
  }
  .ct-installs-marquee-img {
    height: 94px;
  }
}
