:root {
    --dcp-bg: #070707;
    --dcp-bg-soft: #0c0c0c;
    --dcp-card: #111111;
    --dcp-text: #f8f3ea;
    --dcp-muted: rgba(248, 243, 234, 0.72);
    --dcp-orange: #ff9900;
    --dcp-orange-hover: #ffb000;
    --dcp-border: rgba(255, 255, 255, 0.12);
    --dcp-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body.dcp2go-theme {
    margin: 0;
    background: var(--dcp-bg);
    color: var(--dcp-text);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.5;
}

body.dcp2go-theme a {
    color: inherit;
}

.dcp-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   Header
   ========================================================= */

.dcp-header,
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    background: rgba(8, 8, 8, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dcp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dcp-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
}

.dcp-logo img {
    display: block;
    width: 210px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 150, 0, 0.14));
}

.dcp-nav {
    margin-left: auto;
}

.dcp-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dcp-menu a,
.dcp-header nav a,
.site-header nav a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.07em;
    transition: color 0.2s ease;
}

.dcp-menu a:hover,
.dcp-header nav a:hover,
.site-header nav a:hover {
    color: var(--dcp-orange);
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 768px) {
	
    .dcp-header,
    .site-header {
        padding: 6px 0 8px !important;
    }

    .dcp-header-inner {
        min-height: 0 !important;
        height: auto !important;
        gap: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .dcp-logo {
        margin: 0 0 4px 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }

    .dcp-logo img {
        width: 150px !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .dcp-nav {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .dcp-menu {
        margin: 0 !important;
        padding: 0 !important;
        gap: 14px !important;
        line-height: 1 !important;
    }

    .dcp-menu li {
        line-height: 1 !important;
    }

    .dcp-menu a {
        line-height: 1 !important;
    }
}

/* =========================================================
   Buttons
   ========================================================= */

.dcp-header-cta,
.dcp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0;
    border-radius: 12px;
    min-height: 44px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.dcp-header-cta,
.dcp-btn-primary {
    background: var(--dcp-orange);
    color: #050505 !important;
}

.dcp-header-cta:hover,
.dcp-btn-primary:hover {
    background: var(--dcp-orange-hover);
    color: #050505 !important;
}

.dcp-btn-secondary {
    border: 1px solid var(--dcp-border);
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
}

.dcp-btn-secondary:hover {
    border-color: rgba(255, 153, 0, 0.55);
    color: var(--dcp-orange) !important;
}

/* =========================================================
   Homepage
   ========================================================= */

.dcp-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.68) 34%,
            rgba(0,0,0,0.34) 62%,
            rgba(0,0,0,0.44) 100%
        ),
        url('https://www.dcp2go.com/wp-content/themes/dcp2go/assets/img/ozadje_DCP.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.dcp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 28%,
            color-mix(in srgb, var(--dcp-orange) 16%, transparent),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.24) 0%,
            rgba(0,0,0,0.04) 45%,
            rgba(0,0,0,0.52) 100%
        );
    pointer-events: none;
}

.dcp-hero-inner {
    position: relative;
    z-index: 2;
}

.dcp-hero h1 {
    margin: 10px 0 18px;
    max-width: 760px;
    font-size: clamp(54px, 8vw, 104px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    color: #fff;
}

.dcp-eyebrow {
    margin: 0;
    text-transform: uppercase;
    color: var(--dcp-orange);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.18em;
}

.dcp-lead {
    max-width: 720px;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--dcp-muted);
}

.dcp-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.dcp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 46px;
    max-width: 980px;
}

.dcp-stats > span {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 94px;
    border: 1px solid var(--dcp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    padding: 20px;
    backdrop-filter: blur(10px);
}

.dcp-stats > span::before {
    content: "";
    flex: 0 0 34px;
    width: 34px;
    height: 34px;

    background-color: var(--dcp-orange);

    mask-size: contain;
    -webkit-mask-size: contain;

    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;

    mask-position: center;
    -webkit-mask-position: center;

    opacity: 0.95;
}

.dcp-stats > span:nth-child(1)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v4H4zm0 6h10v10H4zm12 0h4v10h-4z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v4H4zm0 6h10v10H4zm12 0h4v10h-4z'/%3E%3C/svg%3E");
}

.dcp-stats > span:nth-child(2)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2h-2V2h-2v2H9V2zm12 18H5V9h14z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v2H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V6a2 2 0 00-2-2h-2V2h-2v2H9V2zm12 18H5V9h14z'/%3E%3C/svg%3E");
}

.dcp-stats > span:nth-child(3)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l8 4v6c0 5.25-3.5 9.74-8 11-4.5-1.26-8-5.75-8-11V6zm-1 13l6-6-1.4-1.4L11 12.2 8.4 9.6 7 11z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l8 4v6c0 5.25-3.5 9.74-8 11-4.5-1.26-8-5.75-8-11V6zm-1 13l6-6-1.4-1.4L11 12.2 8.4 9.6 7 11z'/%3E%3C/svg%3E");
}

.dcp-stats > span:nth-child(4)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M13 3L4 14h6v7l9-11h-6z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M13 3L4 14h6v7l9-11h-6z'/%3E%3C/svg%3E");
}

.dcp-stats strong {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
}

.dcp-stats span span {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.82);
}

.dcp-section {
    padding: 84px 0;
    background: #080808;
}

.dcp-light {
    background: #f7f3ed;
    color: #101010;
}

.dcp-section h2 {
    margin: 8px 0 26px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.dcp-steps,
.dcp-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.dcp-price-grid article,
.dcp-steps article {
    border: 1px solid var(--dcp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    padding: 20px;
}

.dcp-steps b {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--dcp-orange);
    color: #050505;
    align-items: center;
    justify-content: center;
}

.dcp-price-grid strong {
    display: block;
    color: var(--dcp-orange);
    font-size: 34px;
}

.dcp-cta {
    text-align: center;
}


/* =========================================================
   Pricing section
   ========================================================= */

#pricing {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.52) 0%,
            rgba(0,0,0,0.38) 34%,
            rgba(0,0,0,0.58) 100%
        ),
        url('/wp-content/themes/dcp2go/assets/img/ozadje_pricing.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

#pricing::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at left center,
            color-mix(in srgb, var(--dcp-orange) 14%, transparent),
            transparent 42%
        );

    pointer-events: none;
}

#pricing .dcp-container {
    position: relative;
    z-index: 2;
}

.dcp-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin-top: 40px;
}

.dcp-price-grid article {
    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,0.72),
            rgba(10,10,10,0.68)
        );
	 text-align: center;
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.16);
}

.dcp-price-grid article:hover {
    background:
        linear-gradient(
            180deg,
            rgba(28,28,28,0.82),
            rgba(16,16,16,0.76)
        );
}




.dcp-price-grid h3 {
    margin: 0 0 18px;
	text-align: center;
    font-size: 28px;
    line-height: 1.1;

    color: #fff;
}

.dcp-price-grid strong {
    display: block;

    margin-bottom: 18px;

    font-size: 42px;
    line-height: 1;

    color: var(--dcp-orange);

    letter-spacing: -0.04em;
}

.dcp-price-grid p {
    margin: 0;

    color: rgba(255,255,255,0.72);

    line-height: 1.6;
}

.dcp-price-grid article::before {
    content: "";

    display: block;

    width: 42px;
    height: 42px;

    margin: 0 auto 22px;

    background-color: var(--dcp-orange);

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.95;
}


/* =========================================================
   How it works
   ========================================================= */

.dcp-light {
    background:
        radial-gradient(
            circle at 12% 18%,
            color-mix(in srgb, var(--dcp-orange) 8%, transparent),
            transparent 34%
        ),
        #f7f3ed;

    color: #101010;
}

.dcp-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

    margin-top: 46px;
}

.dcp-steps::before {
    content: "";

    position: absolute;

    left: 14%;
    right: 14%;
    top: 74px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0),
            color-mix(in srgb, var(--dcp-orange) 28%, transparent),
            rgba(255,255,255,0)
        );
}

/* 4K DCP */

.dcp-price-grid article:nth-child(1)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16v10H4z'/%3E%3Cpath d='M8 7V5'/%3E%3Cpath d='M16 7V5'/%3E%3Cpath d='M8 17v2'/%3E%3Cpath d='M16 17v2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16v10H4z'/%3E%3Cpath d='M8 7V5'/%3E%3Cpath d='M16 7V5'/%3E%3Cpath d='M8 17v2'/%3E%3Cpath d='M16 17v2'/%3E%3C/svg%3E");
}

/* Additional length */

.dcp-price-grid article:nth-child(2)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
}

/* Subtitles */

.dcp-price-grid article:nth-child(3)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v11H7l-3 3z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v11H7l-3 3z'/%3E%3C/svg%3E");
}

/* Premium turnaround */

.dcp-price-grid article:nth-child(4)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M13 3L4 14h6v7l10-13h-6z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M13 3L4 14h6v7l10-13h-6z'/%3E%3C/svg%3E");
}

.dcp-steps article {
    position: relative;
    z-index: 2;

    padding: 30px 25px 28px;

    border-radius: 26px;

    border: 1px solid rgba(0,0,0,0.06);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.92),
            rgba(255,255,255,0.82)
        );

    box-shadow:
        0 10px 30px rgba(0,0,0,0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.dcp-steps article:hover {
    transform: translateY(-5px);

    border-color:
        color-mix(in srgb, var(--dcp-orange) 26%, rgba(0,0,0,0.06));

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

.dcp-steps article b {
    position: absolute;

    top: 18px;
    left: 18px;

    display: inline-flex;

    width: 38px;
    height: 38px;

    border-radius: 999px;

    background: var(--dcp-orange);

    color: #050505;

    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 900;

    box-shadow:
        0 8px 18px rgba(0,0,0,0.12);
}

.dcp-steps article::before {
    content: "";

    display: block;

    width: 52px;
    height: 52px;

    margin: 22px auto 22px;

    background-color: var(--dcp-orange);

    mask-size: contain;
    -webkit-mask-size: contain;

    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;

    mask-position: center;
    -webkit-mask-position: center;

    opacity: 0.95;
}

/* Upload */



.dcp-steps article:nth-child(1)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 18H7a4 4 0 0 1-.5-7.97A5.5 5.5 0 0 1 17 8.2 4.8 4.8 0 0 1 17.5 18Z'/%3E%3Cpath d='M12 17V9'/%3E%3Cpath d='m8.8 12.2 3.2-3.2 3.2 3.2'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M17.5 18H7a4 4 0 0 1-.5-7.97A5.5 5.5 0 0 1 17 8.2 4.8 4.8 0 0 1 17.5 18Z'/%3E%3Cpath d='M12 17V9'/%3E%3Cpath d='m8.8 12.2 3.2-3.2 3.2 3.2'/%3E%3C/svg%3E");
}

/* Services */

.dcp-steps article:nth-child(2)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 17h16'/%3E%3Ccircle cx='9' cy='7' r='1.8'/%3E%3Ccircle cx='15' cy='12' r='1.8'/%3E%3Ccircle cx='11' cy='17' r='1.8'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 17h16'/%3E%3Ccircle cx='9' cy='7' r='1.8'/%3E%3Ccircle cx='15' cy='12' r='1.8'/%3E%3Ccircle cx='11' cy='17' r='1.8'/%3E%3C/svg%3E");
}

/* Pricing */

.dcp-steps article:nth-child(3)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='6' y='3' width='12' height='18' rx='2'/%3E%3Cpath d='M9 7h6'/%3E%3Cpath d='M9 11h.01M12 11h.01M15 11h.01'/%3E%3Cpath d='M9 15h.01M12 15h.01M15 15h.01'/%3E%3Cpath d='M9 18h6'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='6' y='3' width='12' height='18' rx='2'/%3E%3Cpath d='M9 7h6'/%3E%3Cpath d='M9 11h.01M12 11h.01M15 11h.01'/%3E%3Cpath d='M9 15h.01M12 15h.01M15 15h.01'/%3E%3Cpath d='M9 18h6'/%3E%3C/svg%3E");
}

/* Checkout */

.dcp-steps article:nth-child(4)::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16v12H4z'/%3E%3Cpath d='M4 7l2-4h12l2 4'/%3E%3Cpath d='M7 7l2-4'/%3E%3Cpath d='M12 7l2-4'/%3E%3Cpath d='m8.5 14 2.2 2.2 4.8-5'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16v12H4z'/%3E%3Cpath d='M4 7l2-4h12l2 4'/%3E%3Cpath d='M7 7l2-4'/%3E%3Cpath d='M12 7l2-4'/%3E%3Cpath d='m8.5 14 2.2 2.2 4.8-5'/%3E%3C/svg%3E");
}

.dcp-steps h3 {
    margin: 0 0 14px;

    font-size: 28px;
    line-height: 1.1;

    text-align: center;

    color: #101010;
}

.dcp-steps p {
    margin: 0;

    text-align: center;

    color: rgba(16,16,16,0.72);

    line-height: 1.7;
}

/* =========================================================
   Contact page
   ========================================================= */

.dcp-page,
.dcp-woo {
    padding: 54px 0 84px;
    min-height: 70vh;
}

.dcp-content {
    border: 1px solid var(--dcp-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 0, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.05);
    padding: clamp(24px, 4vw, 48px);
}

.dcp-content h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.dcp-content h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -0.035em;
}

.dcp-content h4 {
    max-width: 760px;
    margin: 0 0 34px;
    color: var(--dcp-muted);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.dcp-content form {
    width: 100%;
    max-width: 100%;

    display: grid;
    gap: 18px;
}

.dcp-content label {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dcp-content input,
.dcp-content textarea,
.dcp-content select {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--dcp-text);
    padding: 15px 17px;
    font: inherit;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dcp-content textarea {
    min-height: 170px;
    resize: vertical;
}

.dcp-content input:focus,
.dcp-content textarea:focus,
.dcp-content select:focus {
    border-color: var(--dcp-orange);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.14);
    background: rgba(0, 0, 0, 0.34);
}

.dcp-content input[type="submit"],
.dcp-content button[type="submit"],
.dcp-content .wpcf7-submit {
    width: auto;
    min-width: 190px;
    border: 0;
    border-radius: 999px;
    background: var(--dcp-orange);
    color: #111;
    padding: 15px 26px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.dcp-content input[type="submit"]:hover,
.dcp-content button[type="submit"]:hover,
.dcp-content .wpcf7-submit:hover {
    transform: translateY(-1px);
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-not-valid-tip {
    margin-top: 8px;
    color: var(--dcp-orange);
    font-size: 13px;
}

.wpcf7-response-output {
    margin: 22px 0 0 !important;
    border-radius: 16px;
    padding: 14px 16px !important;
}

/* reCAPTCHA */
.dcp-content .wpcf7-recaptcha,
.dcp-content .g-recaptcha {
    display: inline-flex;
    padding: 10px;
    border: 1px solid var(--dcp-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.dcp-content .wpcf7-recaptcha iframe,
.dcp-content .g-recaptcha iframe {
    border-radius: 12px;
}


/* =========================================================
   FAQ PAGE
   ========================================================= */

.dcp-page-faq {
    padding: 54px 0 84px;
    min-height: 70vh;
}

/* =========================================================
   Intro
   ========================================================= */

.dcp-faq-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.dcp-faq-intro h1 {
    margin-bottom: 18px;
}

.dcp-faq-intro p {
    color: var(--dcp-text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* =========================================================
   FAQ List
   ========================================================= */

.dcp-faq-list {
    max-width: 980px;
    margin: 0 auto;
}

/* =========================================================
   FAQ Item
   ========================================================= */

.dcp-faq-item {

    position: relative;

    margin-bottom: 22px;
    padding: 30px 34px;

    border-radius: 28px;

    border: 1px solid rgba(255,255,255,0.08);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.02)
        );

    backdrop-filter: blur(14px);

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.dcp-faq-item:hover {

    transform: translateY(-3px);

    border-color: rgba(255,145,77,0.20);

    box-shadow:
        0 18px 44px rgba(0,0,0,0.30);
}

/* subtle orange glow */

.dcp-faq-item::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,145,77,0.08),
            transparent 36%
        );

    opacity: .9;
}

/* =========================================================
   Question Row
   ========================================================= */

.dcp-faq-question {

    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 18px;

    color: var(--dcp-orange);

    font-size: 1.24rem;
    font-weight: 700;
    line-height: 1.45;
}

/* =========================================================
   Icon
   ========================================================= */

.dcp-faq-icon {

    width: 54px;
    height: 54px;
    min-width: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,145,77,0.45);

    background:
        radial-gradient(
            circle,
            rgba(255,145,77,0.18),
            rgba(255,145,77,0.05)
        );

    color: var(--dcp-orange);

    font-size: 1.35rem;
    font-weight: 700;

    box-shadow:
        0 0 22px rgba(255,145,77,0.16);
}

/* =========================================================
   Question Text
   ========================================================= */

.dcp-faq-title {

    flex: 1;
}

/* =========================================================
   Answer
   ========================================================= */

.dcp-faq-answer {

    padding-left: 72px;

    color: rgba(255,255,255,0.82);

    font-size: 1rem;
    line-height: 1.95;
}

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

/* =========================================================
   Links
   ========================================================= */

.dcp-faq-answer a,
.dcp-faq-answer .doc-link {

    color: var(--dcp-orange);

    text-decoration: underline;

    text-decoration-color: rgba(255,145,77,0.35);

    transition: .2s ease;
}

.dcp-faq-answer a:hover,
.dcp-faq-answer .doc-link:hover {

    color: #ffb070;

    text-decoration-color: rgba(255,176,112,0.75);
}

/* =========================================================
   FAQ Contact CTA
   ========================================================= */

.dcp-faq-contact-cta {
    padding: 0 0 84px;
}

.dcp-faq-contact-box {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 44px);

    text-align: center;

    border: 1px solid var(--dcp-border);
    border-radius: 28px;

    background:
        radial-gradient(circle at top right, rgba(255,145,77,0.10), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));

    box-shadow: 0 18px 44px rgba(0,0,0,0.24);
}

.dcp-faq-contact-box h2 {
    margin-bottom: 14px;
}

.dcp-faq-contact-box p {
    max-width: 620px;
    margin: 0 auto 26px;

    color: var(--dcp-text-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.dcp-faq-contact-box .dcp-btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .dcp-faq-contact-cta {
        padding-bottom: 64px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 768px) {

    .dcp-page-faq {
        padding: 42px 0 64px;
    }

    .dcp-faq-item {

        padding: 24px 22px;

        border-radius: 24px;
    }

    .dcp-faq-question {

        gap: 14px;

        margin-bottom: 16px;

        font-size: 1.05rem;
    }

    .dcp-faq-icon {

        width: 42px;
        height: 42px;
        min-width: 42px;

        font-size: 1.05rem;
    }

    .dcp-faq-answer {

        padding-left: 0;

        font-size: 0.97rem;

        line-height: 1.85;
    }
}


/* =========================================================
   Contact page
   ========================================================= */

.dcp-contact-page {
    min-height: calc(100vh - 78px);
    background: #050505;
    overflow: hidden;
}

.dcp-contact-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    isolation: isolate;
}

.dcp-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 45%, rgba(255,255,255,0.07), transparent 34%),
        radial-gradient(circle at 50% 42%, rgba(255,122,0,0.08), transparent 24%),
        linear-gradient(90deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.84) 48%, rgba(0,0,0,0.42) 100%);
    z-index: -2;
}

.dcp-contact-bg-reel {
    position: absolute;
    right: -6vw;
    top: 4%;
    width: min(62vw, 920px);
    aspect-ratio: 1 / 1;

    background-image: url("https://dcp2go.com/wp-content/themes/dcp2go/assets/img/contact-film-reel.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.78;

    filter:
        grayscale(0.15)
        contrast(1.08)
        brightness(1.12);

    mix-blend-mode: screen;

    z-index: -3;
    pointer-events: none;
}

.dcp-contact-inner {
    position: relative;
    z-index: 1;
}

.dcp-contact-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 20px;
}

.dcp-eyebrow {
    margin-bottom: 18px;
    color: var(--dcp-orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-weight: 700;
}

.dcp-contact-content h1 {
    margin: 0 0 24px;
    font-size: clamp(2.45rem, 5vw, 4.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #fff;
    font-weight: 800;
}

.dcp-contact-lead {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.dcp-contact-divider {
    width: 74px;
    height: 2px;
    margin: 30px auto 24px;
    background: var(--dcp-orange);
    opacity: 0.9;
}

.dcp-contact-response {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
}

.dcp-contact-clock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--dcp-orange);
    border: 1px solid var(--dcp-orange);
    border-radius: 50%;
    font-size: 0;
    vertical-align: -3px;
}

.dcp-contact-clock::before {
    content: "";
    width: 5px;
    height: 5px;
    border-left: 1px solid var(--dcp-orange);
    border-bottom: 1px solid var(--dcp-orange);
    transform: translate(1px, -1px);
}

.dcp-contact-reveal {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: min(100%, 340px);
    height: 58px;

    padding: 0 34px;

    border: none;
    border-radius: 999px;

    background: var(--dcp-orange);
    color: #000;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 180ms ease,
        opacity 180ms ease,
        box-shadow 180ms ease;
}

.dcp-contact-reveal:hover {
    transform: translateY(-2px);
    opacity: 0.94;

    box-shadow:
        0 10px 30px rgba(255, 140, 0, 0.22);
}

.dcp-contact-reveal:active {
    transform: translateY(0);
}

.dcp-contact-email {
    margin-top: 20px;
    min-height: 32px;
}

.dcp-contact-email a {
    color: var(--dcp-orange);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    text-decoration: none;
}

.dcp-contact-email a:hover {
    text-decoration: underline;
}

.dcp-contact-note {
    margin: 22px 0 0;
    color: rgba(255,255,255,0.56);
    font-size: 15px;
}

@media (max-width: 900px) {
    .dcp-contact-hero {
        min-height: auto;
    }

    .dcp-contact-bg-reel {
        right: -28vw;
        top: 20%;
        width: 92vw;
        opacity: 0.20;
    }

    .dcp-contact-content {
        padding: 76px 18px;
    }
}

@media (max-width: 560px) {
    .dcp-contact-content {
        text-align: left;
        margin: 0;
        padding-top: 58px;
        padding-bottom: 70px;
    }

    .dcp-contact-content h1 br,
    .dcp-contact-lead br {
        display: none;
    }

    .dcp-contact-divider {
        margin-left: 0;
    }

    .dcp-contact-reveal {
        width: 100%;
        min-width: 0;
    }
}



.about-step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.03);

    color: var(--dcp-orange);

    font-size: 1.15rem;
    font-weight: 700;

    line-height: 1;

    box-shadow: 0 0 20px rgba(255, 122, 26, 0.08);
}

/* =========================================================
   Generic pages
   ========================================================= */

.dcp-page,
.dcp-woo {
    padding: 54px 0 84px;
    min-height: 70vh;
}

.dcp-content {
    border: 1px solid var(--dcp-border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(24px, 4vw, 48px);
}

/* =========================================================
   WooCommerce product page
   ========================================================= */

.single-product .dcp-page,
.single-product .woocommerce {
    max-width: 1180px;
    margin: 0 auto;
}

.single-product div.product {
    display: block;
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    color: var(--dcp-text);
}

.single-product div.product div.images {
    display: none !important;
}

.single-product div.product div.summary,
.single-product div.product form.cart {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
}

.single-product div.product div.summary {
    margin: 0 0 28px !important;
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--dcp-border);
    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.07), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));
}

.single-product div.product form.cart {
    margin: 0 !important;
}

.single-product .product_title {
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

.single-product .price {
    color: var(--dcp-orange) !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    margin-bottom: 26px;
}

.single-product .woocommerce-product-details__short-description,
.single-product .product_meta {
    color: var(--dcp-muted);
}

.single-product .product_meta {
    display: none;
}



.single-product form.cart,
.single-product form.cart * {
    box-sizing: border-box;
}

.single-product form.cart label,
.single-product form.cart .wcuf_upload_field_title,
.single-product form.cart .tm-epo-field-label,
.single-product form.cart .tc-label {
    color: #fff !important;
    font-weight: 900 !important;
}

.single-product form.cart p,
.single-product form.cart small,
.single-product form.cart span {
    color: rgba(248, 243, 234, 0.78);
}




/* =========================================================
   Tooltips
   ========================================================= */

.single-product .tc-tooltip,
.single-product .tm-tooltip,
.single-product .tcfa-question-circle,
.single-product .tc-icontooltipright {
    color: var(--dcp-orange) !important;
    transition: 0.2s ease;
}

.single-product .tc-tooltip:hover,
.single-product .tm-tooltip:hover,
.single-product .tcfa-question-circle:hover,
.single-product .tc-icontooltipright:hover {
    color: #fff !important;
    transform: scale(1.08);
}

/* Tooltip popup */

.single-product .ui-tooltip,
.single-product .tooltipster-base,
.single-product .tooltipster-box {
    border-radius: 16px !important;
    border: 1px solid rgba(255, 153, 0, 0.25) !important;
    background:
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98)) !important;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,153,0,0.06) inset !important;
}

.single-product .ui-tooltip-content,
.single-product .tooltipster-content {
    color: #fff !important;
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 14px !important;
}

.single-product .tooltipster-arrow-border {
    border-top-color: rgba(255, 153, 0, 0.25) !important;
}

.single-product .tooltipster-arrow-background {
    border-top-color: #111 !important;
}

/* =========================================================
   Final total
   ========================================================= */

.single-product .tm-final-totals {
    display: block;
    width: 100%;
    margin: 34px 0 14px;
    text-align: center;
    color: var(--dcp-orange);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.single-product .tm-final-totals + dd,
.single-product .tm-final-totals + dd .amount,
.single-product .tm-final-totals + dd strong,
.single-product .tm-final-totals + dd span {
    text-align: center !important;
    display: block;
    width: 100%;
    color: #fff !important;
    font-size: clamp(34px, 5vw, 54px) !important;
    font-weight: 900 !important;
    line-height: 1;
}

/* =========================================================
   Checkout order review / payment
   ========================================================= */

.woocommerce-checkout #order_review {
    width: 100%;
    margin-top: 24px;
}

.woocommerce-checkout #order_review_heading {
    margin: 56px 0 22px;

    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100% !important;
    margin: 0 0 34px !important;

    border-collapse: separate !important;
    border-spacing: 0 !important;

    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--dcp-border);

    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.06), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,153,0,0.04) inset;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 20px 24px !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    color: #fff;
    vertical-align: top;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    border-top: 0 !important;
    font-size: 20px;
    font-weight: 900;
    background: rgba(255,255,255,0.02);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout .woocommerce-checkout-review-order-table td:last-child {
    text-align: right;
    white-space: nowrap;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .amount {
    color: var(--dcp-orange) !important;
    font-weight: 900;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
    width: 78%;
    white-space: nowrap;
    font-weight: 900;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    width: 22%;
    text-align: right;
    white-space: nowrap;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total .amount {
    color: var(--dcp-orange) !important;
    font-size: 26px;
    font-weight: 950;
}

/* Payment box */

.woocommerce-checkout #payment {
    margin-top: 34px;
    padding: 34px;

    border-radius: 32px;
    border: 1px solid var(--dcp-border);

    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.06), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98)) !important;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,153,0,0.04) inset;
}

.woocommerce-checkout #payment ul.payment_methods {
    padding: 0 !important;
    margin: 0 0 24px !important;
    border: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    list-style: none;
    color: #fff;
}

.woocommerce-checkout #payment label {
    color: #fff;
    font-weight: 900;
}

.woocommerce-checkout #payment .payment_box {
    margin: 18px 0 0 !important;
    padding: 22px !important;

    border-radius: 22px;
    background: rgba(255,255,255,0.045) !important;

    color: rgba(255,255,255,0.78) !important;
}

.woocommerce-checkout #payment .payment_box::before {
    display: none !important;
}

.woocommerce-checkout #payment a {
    color: var(--dcp-orange);
    font-weight: 800;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-top: 24px;
    color: rgba(255,255,255,0.82);
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;

    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,153,0,0.18);
    background: rgba(255,153,0,0.055);
}

.woocommerce-checkout #terms {
    margin-top: 4px;
    accent-color: var(--dcp-orange);
}

.woocommerce-checkout #place_order {
    width: 100% !important;
    min-height: 68px !important;
    margin-top: 24px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--dcp-orange) !important;
    color: #050505 !important;

    font-size: 20px;
    font-weight: 950 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    transition: 0.2s ease;
}

.woocommerce-checkout #place_order:hover {
    background: var(--dcp-orange-hover) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table td {
        display: block;
        width: 100% !important;
        text-align: left !important;
        white-space: normal !important;
    }

    .woocommerce-checkout #payment {
        padding: 24px;
        border-radius: 24px;
    }
}


/* =========================================================
   Checkout terms checkbox fix
   ========================================================= */

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .form-row {
    margin: 24px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 14px;

    width: 100%;
    margin: 0 !important;
    padding: 18px 22px !important;

    border-radius: 999px;
    border: 1px solid rgba(255,153,0,0.22);

    background: rgba(255,153,0,0.055);

    color: #fff !important;
    line-height: 1.35;
}

.woocommerce-checkout #terms {
    position: static !important;
    flex: 0 0 auto;

    width: 18px !important;
    height: 18px !important;

    margin: 0 !important;
    padding: 0 !important;

    accent-color: var(--dcp-orange);
    cursor: pointer;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a {
    color: var(--dcp-orange) !important;
    font-weight: 950;
}

.woocommerce-checkout .woocommerce-invalid .woocommerce-form__label-for-checkbox {
    border-color: rgba(255, 0, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .woocommerce-checkout .woocommerce-form__label-for-checkbox {
        border-radius: 22px;
        align-items: flex-start !important;
    }

    .woocommerce-checkout #terms {
        margin-top: 2px !important;
    }
}


/* =========================================================
   Select2 dark style
   ========================================================= */

.woocommerce-checkout .select2-container--default .select2-selection--single {
    height: 54px !important;

    display: flex !important;
    align-items: center !important;

    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.14) !important;

    background: #0c0c0c !important;

    color: #fff !important;

    box-shadow: none !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 54px !important;
    padding-left: 18px !important;
    padding-right: 44px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(255,255,255,0.45) !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 54px !important;
    right: 14px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--dcp-orange) transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
}

/* Focus */

.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--dcp-orange) !important;
    box-shadow: 0 0 0 4px rgba(255,153,0,0.12) !important;
}

/* Dropdown */

.select2-dropdown {
    border-radius: 18px !important;
    border: 1px solid rgba(255,153,0,0.16) !important;

    background: #111 !important;

    overflow: hidden;
}

.select2-search--dropdown {
    padding: 12px !important;
    background: #111 !important;
}

.select2-search--dropdown .select2-search__field {
    height: 46px !important;

    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;

    background: #0c0c0c !important;
    color: #fff !important;

    padding: 0 14px !important;
}

.select2-results__option {
    padding: 12px 16px !important;
    color: #fff !important;
    background: #111 !important;
}

.select2-results__option--highlighted[aria-selected] {
    background: rgba(255,153,0,0.16) !important;
    color: #fff !important;
}

.select2-results__option[aria-selected="true"] {
    background: rgba(255,153,0,0.08) !important;
    color: var(--dcp-orange) !important;
}


/* =========================================================
   WooCommerce notices
   ========================================================= */

.woocommerce-notices-wrapper {
    margin-bottom: 32px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 22px 44px !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255, 153, 0, 0.18) !important;

    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.08), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98)) !important;

    color: #fff !important;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,153,0,0.04) inset;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    color: var(--dcp-orange) !important;
    top: 50% !important;
    transform: translateY(-50%);
    left: 18px !important;
}

.woocommerce-message {
    border-top: 0 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    color: #fff;
    font-weight: 700;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.woocommerce-message .wc-forward {
    order: 2;

    margin-left: auto !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--dcp-orange) !important;
    color: #050505 !important;

    padding: 12px 22px !important;

    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;

    transition: 0.2s ease;
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover,
.woocommerce-error .button:hover,
.woocommerce-message .wc-forward:hover {
    background: var(--dcp-orange-hover) !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 52px !important;
    }

    .woocommerce-message .button,
    .woocommerce-info .button,
    .woocommerce-error .button,
    .woocommerce-message .wc-forward {
        width: 100%;
        margin-left: 0 !important;
    }
}


/* =========================================================
   Cart totals
   ========================================================= */

.woocommerce-cart .cart-collaterals {
    width: 100%;
    margin-top: 48px;
}

.woocommerce-cart .cart_totals {
    width: 100% !important;
    float: none !important;

    padding: 38px;
    border-radius: 32px;
    border: 1px solid var(--dcp-border);

    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.07), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,153,0,0.04) inset;
}

.woocommerce-cart .cart_totals h2 {
    margin: 0 0 28px;
    text-align: center;

    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.woocommerce-cart .cart_totals tr {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 18px 14px;
    vertical-align: middle;
}

.woocommerce-cart .cart_totals th {
    width: 78%;
    text-align: left;

    color: #fff;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.35;
    font-weight: 800;

    white-space: nowrap;
}

.woocommerce-cart .cart_totals td {
    width: 22%;
    text-align: right;

    white-space: nowrap;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    padding-top: 26px;
    padding-bottom: 26px;

    font-size: 28px;
    font-weight: 900;
}

.woocommerce-cart .cart_totals .order-total td,
.woocommerce-cart .cart_totals .order-total .amount {
    color: var(--dcp-orange) !important;
}

.woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 12px;
}

.woocommerce-cart .checkout-button.button.alt {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 68px;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--dcp-orange) !important;
    color: #050505 !important;

    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;

    transition: 0.2s ease;
}

.woocommerce-cart .checkout-button.button.alt:hover {
    background: var(--dcp-orange-hover) !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .woocommerce-cart .cart_totals {
        padding: 24px;
        border-radius: 24px;
    }

    .woocommerce-cart .cart_totals th,
    .woocommerce-cart .cart_totals td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }

    .woocommerce-cart .cart_totals td {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .woocommerce-cart .cart_totals .order-total th,
    .woocommerce-cart .cart_totals .order-total td {
        font-size: 24px;
    }

    .woocommerce-cart .checkout-button.button.alt {
        min-height: 60px;
        font-size: 18px;
    }
}


/* =========================================================
   Cart table / coupon / update cart
   ========================================================= */

.woocommerce-cart form.woocommerce-cart-form {
    width: 100%;
}

.woocommerce-cart table.shop_table.cart {
    width: 100% !important;
    margin: 0 0 42px !important;

    border-collapse: separate !important;
    border-spacing: 0 !important;

    overflow: hidden;
    border-radius: 32px;

    border: 1px solid var(--dcp-border);

    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.06), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,153,0,0.04) inset;
}

/* Header */

.woocommerce-cart table.shop_table.cart thead th {
    padding: 28px 24px;
    border: 0 !important;

    color: #fff;
    font-size: 20px;
    font-weight: 900;

    background: rgba(255,255,255,0.02);
}

/* Rows */

.woocommerce-cart table.shop_table.cart tbody td {
    padding: 26px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);

    vertical-align: top;
    color: #fff;
}

/* Product title */

.woocommerce-cart .product-name a {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
    color: var(--dcp-orange);
}

/* Edit options */

.woocommerce-cart .tm-cart-edit-options {
    display: inline-flex;
    align-items: center;

    margin-left: 10px;
    padding: 4px 10px;

    border-radius: 999px;
    border: 1px solid rgba(255,153,0,0.25);

    background: rgba(255,153,0,0.08);

    color: var(--dcp-orange) !important;
    font-size: 12px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Thumbnail */

.woocommerce-cart .product-thumbnail img {
    width: 72px;
    border-radius: 14px;
    background: #111;
}

/* Remove X */

.woocommerce-cart a.remove {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 36px !important;
    height: 36px !important;

    border-radius: 999px;
    background: rgba(255,0,0,0.08);

    color: #ff4d4d !important;
    font-size: 24px !important;
    font-weight: 900;
}

.woocommerce-cart a.remove:hover {
    background: #ff3b30 !important;
    color: #fff !important;
}

/* Coupon + buttons row */

.woocommerce-cart table.shop_table.cart td.actions {
    padding: 32px 24px !important;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Coupon field */

.woocommerce-cart .coupon {
    display: flex;
    align-items: center;
    gap: 14px;
}

.woocommerce-cart .coupon input.input-text {
    min-width: 240px;
    height: 54px;

    border-radius: 999px !important;

    background: #101010 !important;
    border: 1px solid rgba(255,255,255,0.18) !important;

    color: #fff !important;
    padding: 0 20px !important;
}

/* Buttons */

.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart input.button {
    min-height: 54px;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--dcp-orange) !important;
    color: #050505 !important;

    padding: 0 28px !important;

    font-size: 15px;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    transition: 0.2s ease;
}

.woocommerce-cart .button:hover,
.woocommerce-cart button.button:hover,
.woocommerce-cart input.button:hover {
    background: var(--dcp-orange-hover) !important;
    transform: translateY(-1px);
}

/* Update cart button */

.woocommerce-cart button[name="update_cart"] {
    float: right;
}

/* Variation/additional options */

.woocommerce-cart dl.variation {
    margin-top: 18px;
}

.woocommerce-cart dl.variation dt {
    color: var(--dcp-orange);
    font-weight: 800;
}

.woocommerce-cart dl.variation dd,
.woocommerce-cart dl.variation dd p {
    color: rgba(255,255,255,0.78);
}

/* Mobile */

@media (max-width: 768px) {

    .woocommerce-cart table.shop_table.cart {
        border-radius: 24px;
    }

    .woocommerce-cart table.shop_table.cart thead {
        display: none;
    }

    .woocommerce-cart table.shop_table.cart tr {
        display: block;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .woocommerce-cart table.shop_table.cart td {
        display: block;
        width: 100%;
        padding: 10px 0;
        border: 0;
    }

    .woocommerce-cart .coupon {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce-cart .coupon input.input-text {
        width: 100%;
        min-width: 0;
    }

    .woocommerce-cart button[name="update_cart"] {
        float: none;
        width: 100%;
        margin-top: 16px;
    }

    .woocommerce-cart .button,
    .woocommerce-cart button.button,
    .woocommerce-cart input.button {
        width: 100%;
    }
}


/* =========================================================
   Cart upload section
   ========================================================= */

#wcuf_file_uploads_container {
    width: 100%;
    margin: 0 0 42px;

    padding: 38px;
    border-radius: 32px;
    border: 1px solid var(--dcp-border);

    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.06), transparent 34%),
        linear-gradient(145deg, rgba(24, 24, 24, 0.98), rgba(8, 8, 8, 0.98));

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,153,0,0.04) inset;
}

#wcuf_file_uploads_container .wcuf_single_upload_field_container {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

#wcuf_file_uploads_container .wcuf_upload_fields_row_element {
    width: 100%;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    background: transparent !important;
}

/* Title */

#wcuf_file_uploads_container .wcuf_upload_field_title {
    margin: 0 0 10px !important;

    color: #fff !important;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

#wcuf_file_uploads_container .wcuf_product_title_under_upload_field_name {
    margin: 0 0 28px !important;

    color: rgba(255,255,255,0.72);
    font-size: 18px;
    font-weight: 700;
}

/* Uploaded file box */

#wcuf_file_uploads_container .wcuf_already_uplaoded_data_container {
    width: 100%;

    padding: 28px;
    margin-bottom: 28px;

    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.025);
}

#wcuf_file_uploads_container .wcuf_already_uplaoded_data_container > span {
    display: block;
    margin-bottom: 18px;

    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

/* File list */

#wcuf_file_uploads_container .wcuf_file_preview_list {
    margin: 0;
    padding-left: 24px;
}

#wcuf_file_uploads_container .wcuf_file_preview_list_item {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

/* File name */

#wcuf_file_uploads_container .wcuf_preview_file_title {
    color: #fff;
}

/* Delete X */

#wcuf_file_uploads_container .wcuf_delete_file_icon {
    margin-left: 12px;
    color: #ff4d4d !important;
    cursor: pointer;
    transition: 0.2s ease;
}

#wcuf_file_uploads_container .wcuf_delete_file_icon:hover {
    color: #fff !important;
    transform: scale(1.08);
}

/* Delete button */

#wcuf_file_uploads_container .delete_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--dcp-orange) !important;
    color: #050505 !important;

    padding: 0 28px !important;

    font-size: 15px;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;

    transition: 0.2s ease;
}

#wcuf_file_uploads_container .delete_button:hover {
    background: var(--dcp-orange-hover) !important;
    transform: translateY(-1px);
}

/* Mobile */

@media (max-width: 768px) {

    #wcuf_file_uploads_container {
        padding: 24px;
        border-radius: 24px;
    }

    #wcuf_file_uploads_container .wcuf_upload_field_title {
        font-size: 26px;
    }

    #wcuf_file_uploads_container .wcuf_already_uplaoded_data_container {
        padding: 20px;
    }

    #wcuf_file_uploads_container .delete_button {
        width: 100%;
    }
}

/* =========================================================
   Checkout: safer 50/50 layout
   ========================================================= */

.woocommerce-checkout #customer_details {
    display: flex !important;
    gap: 42px;
    align-items: flex-start;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
    float: none !important;
    width: calc(50% - 21px) !important;
    max-width: calc(50% - 21px) !important;
    flex: 0 0 calc(50% - 21px);
}

/* keep WooCommerce form rows normal */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 48% !important;
}

.woocommerce-checkout .form-row-wide {
    width: 100% !important;
}

/* right column content full width */
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
.woocommerce-checkout #order_comments_field,
.woocommerce-checkout #order_comments,
.woocommerce-checkout #wcuf_file_uploads_container {
    width: 100% !important;
    max-width: 100% !important;
}

.woocommerce-checkout #order_comments {
    min-height: 180px;
}

/* mobile */
@media (max-width: 900px) {
    .woocommerce-checkout #customer_details {
        display: block !important;
    }

    .woocommerce-checkout #customer_details .col-1,
    .woocommerce-checkout #customer_details .col-2 {
        width: 100% !important;
        max-width: 100% !important;
        flex: none;
    }

    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        width: 100% !important;
    }
}


/* =========================================================
   Cart page unified width fix
   ========================================================= */

.woocommerce-cart .woocommerce {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.woocommerce-cart #wcuf_file_uploads_container,
.woocommerce-cart form.woocommerce-cart-form,
.woocommerce-cart table.shop_table.cart,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both;
}

.woocommerce-cart #wcuf_file_uploads_container,
.woocommerce-cart table.shop_table.cart,
.woocommerce-cart .cart_totals {
    box-sizing: border-box;
}

/* WooCommerce sometimes keeps cart form/table narrower */
.woocommerce-cart .woocommerce-cart-form {
    display: block;
}

/* Coupon/actions row full width alignment */
.woocommerce-cart table.shop_table.cart td.actions {
    width: 100% !important;
}

.woocommerce-cart table.shop_table.cart td.actions::after {
    content: "";
    display: table;
    clear: both;
}






/* =========================================================
   Upload plugin - right top card
   ========================================================= */

.single-product .wcuf_file_uploads_container,
.single-product .wcuf_single_upload_field_container,
.single-product .wcuf_upload_fields_row_element {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.single-product .wcuf_file_uploads_container {
    order: 1;
}

.single-product .wcuf_single_upload_field_container {
    min-height: 100%;
    padding: 32px !important;
    margin: 0 !important;
    border-radius: 28px !important;
    border: 1px solid var(--dcp-border) !important;
    background:
        radial-gradient(circle at top left, rgba(255, 153, 0, 0.09), transparent 34%),
        linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.98)) !important;
}

.single-product .wcuf_single_upload_field_container * {
    color: var(--dcp-text) !important;
}

.single-product .wcuf_upload_field_title {
    color: #fff !important;
    font-weight: 900 !important;
}

.single-product .wcuf_upload_button,
.single-product .wcuf_file_input_button,
.single-product .wcuf_single_upload_field_container button,
.single-product input[type="button"],
.single-product input[type="submit"] {
    background: var(--dcp-orange) !important;
    color: #050505 !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 13px 22px !important;
    font-weight: 900 !important;
}

.single-product .wcuf_upload_button:hover,
.single-product .wcuf_file_input_button:hover,
.single-product .wcuf_single_upload_field_container button:hover {
    background: var(--dcp-orange-hover) !important;
}

/* =========================================================
   Extra product options / custom fields - full width bottom
   ========================================================= */

.single-product .tm-extra-product-options,
.single-product .tm-extra-product-options-inner,
.single-product .tm-extra-product-options-fields,
.single-product .tc-extra-product-options {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    color: var(--dcp-text) !important;
}

.single-product .tm-extra-product-options,
.single-product .tc-extra-product-options {
    order: 2;
    grid-column: 1 / -1;
}

.single-product div.product:has(form.cart) .tm-extra-product-options,
.single-product div.product:has(form.cart) .tc-extra-product-options {
    width: 100%;
}

.single-product .tm-extra-product-options-fields > li,
.single-product .tm-extra-product-options li.cpf-type-select,
.single-product .tm-extra-product-options li.cpf-type-textfield,
.single-product .tm-extra-product-options li.cpf-type-textarea,
.single-product .tm-extra-product-options li.cpf-type-radio,
.single-product .tm-extra-product-options li.cpf-type-checkbox,
.single-product .tc-extra-product-options li {
    list-style: none !important;
    margin: 0 0 16px !important;
    padding: 18px !important;
    border-radius: 18px !important;
    border: 1px solid var(--dcp-border) !important;
    background: rgba(255, 255, 255, 0.045) !important;
    color: var(--dcp-text) !important;
}

.single-product .tm-extra-product-options label,
.single-product .tc-extra-product-options label {
    color: #fff !important;
    font-weight: 800 !important;
}

/* =========================================================
   Forms
   ========================================================= */

.single-product select,
.single-product textarea,
.single-product input[type="text"],
.single-product input[type="email"],
.single-product input[type="number"],
.single-product input[type="tel"] {
    width: 100%;
    min-height: 48px;
    background: #101010 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 14px !important;
    padding: 12px 14px !important;
}

.single-product select option {
    background: #101010;
    color: #fff;
}

.single-product select:focus,
.single-product textarea:focus,
.single-product input:focus {
    outline: none;
    border-color: var(--dcp-orange) !important;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.16);
}

.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button,
.single-product .button.alt {
    order: 3;
    width: 100% !important;
    min-height: 58px !important;
    margin-top: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--dcp-orange) !important;
    color: #050505 !important;
    font-weight: 950 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.single-product .single_add_to_cart_button:hover,
.single-product button.single_add_to_cart_button:hover,
.single-product .button.alt:hover {
    background: var(--dcp-orange-hover) !important;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 900px) {
    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 18px 64px;
    }

    .single-product div.product div.summary,
    .single-product div.product form.cart {
        grid-column: 1;
        grid-row: auto;
    }

    .single-product div.product form.cart {
        display: flex;
        flex-direction: column;
    }

    .single-product .product_title {
        font-size: clamp(34px, 11vw, 48px);
    }
}

/* =========================================================
   Footer
   ========================================================= */

.dcp-footer {
    position: relative;

    margin-top: 110px;
    padding: 34px 0;

    background: #050505;

    border-top: 1px solid rgba(255, 159, 0, 0.22);
}

.dcp-footer::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 159, 0, 0.45) 50%,
        transparent 100%
    );
}

.dcp-footer-inner {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dcp-footer-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.dcp-footer-logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.dcp-footer-logo img {
    display: block;

    height: 82px;
    width: auto;
}

.dcp-footer-tagline {
    position: relative;

    padding-left: 22px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #ff9f00;
}

.dcp-footer-tagline::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 1px;
    height: 18px;

    background: rgba(255,255,255,0.18);

    transform: translateY(-50%);
}

.dcp-footer-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.dcp-footer-nav a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.88);

    text-decoration: none;

    transition: color 0.25s ease,
                opacity 0.25s ease;
}

.dcp-footer-nav a:hover {
    color: #ff9f00;
}

@media (max-width: 768px) {

    .dcp-footer {
        margin-top: 80px;
        padding: 32px 0;
    }

    .dcp-footer-inner {
        flex-direction: column;
        align-items: center;

        text-align: center;

        gap: 26px;
    }

    .dcp-footer-left {
        flex-direction: column;
        gap: 14px;
    }

    .dcp-footer-tagline {
        padding-left: 0;
    }

    .dcp-footer-tagline::before {
        display: none;
    }

    .dcp-footer-nav {
        justify-content: center;
        gap: 16px 20px;
    }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {
    .dcp-header,
    .site-header {
        height: 68px;
        min-height: 68px;
    }

    .dcp-header-inner {
        height: 68px;
        min-height: 68px;
        flex-wrap: wrap;
    }

    .dcp-logo img {
        width: 176px;
    }

    .dcp-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .dcp-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .dcp-menu a,
    .dcp-header nav a,
    .site-header nav a {
        font-size: 11px;
    }

    .dcp-header-cta {
        display: none;
    }

    .dcp-stats,
    .dcp-steps,
    .dcp-price-grid,
    .dcp-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 18px 64px;
    }
}

@media (max-width: 640px) {
    .dcp-container {
        width: min(100% - 24px, 1180px);
    }

    .dcp-stats,
    .dcp-steps,
    .dcp-price-grid,
    .dcp-footer-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   Mobile header/menu fix
   ========================================================= */

@media (max-width: 900px) {
    .dcp-header,
    .site-header {
        position: sticky;
        height: auto;
        min-height: 68px;
        padding: 10px 0;
        overflow: visible;
    }

    .dcp-header-inner {
        height: auto;
        min-height: 68px;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .dcp-logo {
        width: 100%;
        justify-content: center;
    }

    .dcp-logo img {
        width: 180px;
    }

    .dcp-nav {
        display: block;
        order: 2;
        width: 100%;
        margin-left: 0;
    }

    .dcp-menu {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 16px;
        width: 100%;
        padding: 6px 0 2px;
    }

    .dcp-menu a,
    .dcp-header nav a,
    .site-header nav a {
        font-size: 10px;
        letter-spacing: 0.07em;
        white-space: nowrap;
    }

    .dcp-header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .dcp-logo img {
        width: 160px;
    }

    .dcp-menu {
        gap: 8px 12px;
    }

    .dcp-menu a {
        font-size: 9px;
    }
}