/*
Theme Name: Dr Drippz Child
Theme URI: https://drdrippz.com
Description: Dr Drippz luxury fashion — 1:1 replica of the Horizon Shopify theme on Astra.
Author: Q-Bot
Template: astra
Version: 1.1.0
License: GNU General Public License v2 or later
*/

:root {
    --ddz-black: #000;
    --ddz-white: #fff;
    --ddz-red: #CB2B2B;
    --ddz-grey: #666;
    --ddz-light: #f8f8f8;
    --ddz-border: #e5e5e5;
    --ddz-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ---- Base ---- */
body {
    font-family: var(--ddz-font);
    color: var(--ddz-black);
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

/* ---- Red scrolling marquee ---- */
.ddz-marquee {
    background: var(--ddz-red);
    color: var(--ddz-white);
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
}
.ddz-marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: ddz-scroll 24s linear infinite;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ddz-marquee-track span {
    margin: 0 16px;
}
.ddz-marquee-track .dot {
    color: rgba(255,255,255,0.6);
    margin: 0;
}
@keyframes ddz-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Black returns bar ---- */
.ddz-returns-bar {
    background: var(--ddz-black);
    color: var(--ddz-white);
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
}

/* ---- Header ---- */
.ddz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--ddz-border);
    background: var(--ddz-white);
    position: relative;
}
.ddz-header-left,
.ddz-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 0 0 auto;
}
.ddz-header-left { justify-content: flex-start; }
.ddz-header-right { justify-content: flex-end; }

/* Hamburger */
.ddz-hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.ddz-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ddz-black);
    transition: 0.2s;
}

/* Search button */
.ddz-search {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: var(--ddz-black);
}

/* Logo (centred) */
.ddz-logo {
    text-decoration: none;
    flex: 1;
    text-align: center;
    margin: 0 8px;
}
.ddz-header .ddz-logo-img {
    height: 52px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
}

.ddz-header-right .ddz-icon {
    text-decoration: none;
    color: var(--ddz-black);
    font-size: 20px;
    position: relative;
    line-height: 1;
}
.ddz-cart-count {
    background: var(--ddz-red);
    color: var(--ddz-white);
    border-radius: 50%;
    font-size: 10px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -8px;
}

/* ---- Slide-out drawer ---- */
.ddz-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
}
.ddz-drawer.open { visibility: visible; }
.ddz-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.25s;
}
.ddz-drawer.open .ddz-drawer-overlay { opacity: 1; }
.ddz-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background: var(--ddz-white);
    transform: translateX(-100%);
    transition: transform 0.25s;
    padding: 24px;
    overflow-y: auto;
    box-shadow: 2px 0 12px rgba(0,0,0,0.15);
}
.ddz-drawer.open .ddz-drawer-panel { transform: translateX(0); }
.ddz-drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: var(--ddz-black);
    margin-bottom: 20px;
}
.ddz-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ddz-drawer-nav > a,
.ddz-catalog-toggle {
    text-decoration: none;
    color: var(--ddz-black);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 18px 0;
    border-bottom: 1px solid var(--ddz-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}
.ddz-drawer-nav > a:hover,
.ddz-catalog-toggle:hover { color: var(--ddz-red); }
.ddz-chevron {
    font-size: 14px;
    transition: transform 0.2s;
    color: var(--ddz-black);
}
.ddz-catalog-toggle[aria-expanded="true"] .ddz-chevron { transform: rotate(90deg); }
.ddz-catalog-panel {
    display: none;
    flex-direction: column;
    padding: 4px 0 4px 16px;
}
.ddz-catalog-panel.open { display: flex; }
.ddz-catalog-panel a {
    text-decoration: none;
    color: var(--ddz-black);
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid var(--ddz-light);
}
.ddz-catalog-panel a:hover { color: var(--ddz-red); }

.ddz-nav {
    display: flex;
    gap: 20px;
    flex: 1;
}
.ddz-nav-right { justify-content: flex-end; }
.ddz-nav a {
    text-decoration: none;
    color: var(--ddz-black);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ddz-nav a:hover { color: var(--ddz-red); }

/* ---- Hero ---- */
.ddz-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}
.ddz-hero a.ddz-hero-link {
    display: block;
    line-height: 0;
}
.ddz-hero img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 640px;
    margin: 0;
}
.ddz-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 48px 16px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
}
.ddz-hero-overlay h1 {
    color: var(--ddz-white);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0 0 12px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    max-width: 700px;
}
.ddz-hero-cta {
    display: inline-block;
    background: var(--ddz-white);
    color: var(--ddz-black);
    text-decoration: none;
    padding: 14px 32px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}
.ddz-hero-trust {
    color: var(--ddz-white);
    font-size: 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.ddz-hero-trust .stars { color: #ffd700; }

/* ---- Trust badges ---- */
.ddz-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.ddz-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}
.ddz-trust-item .emoji { font-size: 18px; }

/* ---- Section headings ---- */
.ddz-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 48px 0 32px;
}

/* ---- Circular brand row (horizontal scroll, top of page) ---- */
.ddz-brands {
    display: flex;
    gap: 20px;
    padding: 20px 32px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ddz-brands::-webkit-scrollbar { display: none; }
.ddz-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--ddz-black);
    gap: 12px;
    flex: 0 0 auto;
}
.ddz-brand-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--ddz-red);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ddz-white);
    padding: 14px;
    transition: transform 0.2s;
}
.ddz-brand:hover .ddz-brand-circle { transform: scale(1.05); }
.ddz-brand-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.ddz-brand-name {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ---- Product grid ---- */
.ddz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.ddz-product {
    text-align: center;
    text-decoration: none;
    color: var(--ddz-black);
    position: relative;
}
.ddz-product img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--ddz-light);
}
.ddz-product h3 {
    font-size: 13px;
    font-weight: 500;
    margin: 12px 0 4px;
    letter-spacing: 0.02em;
}
.ddz-product .price {
    font-size: 13px;
    color: var(--ddz-grey);
}

/* ---- About card ---- */
.ddz-about {
    max-width: 1400px;
    margin: 48px auto 0;
    padding: 0 32px;
}
.ddz-about-card {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--ddz-white);
    text-align: center;
    padding: 64px 32px;
    border-radius: 8px;
}
.ddz-about-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: 0.03em;
}
.ddz-about-card p {
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.7;
    font-size: 15px;
}
.ddz-about-cta {
    display: inline-block;
    background: var(--ddz-white);
    color: var(--ddz-black);
    text-decoration: none;
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ---- Testimonials ---- */
.ddz-testimonials {
    background: var(--ddz-light);
    padding: 48px 0;
    margin: 48px 0 0;
}
.ddz-testimonials .ddz-section-title { margin-top: 0; }
.ddz-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.ddz-quote {
    text-align: center;
    background: var(--ddz-white);
    border-radius: 8px;
    padding: 24px 20px;
}
.ddz-quote .stars {
    color: var(--ddz-red);
    font-size: 18px;
    margin-bottom: 8px;
}
.ddz-quote p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.ddz-quote cite {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
}
.ddz-quote .verified {
    display: block;
    font-size: 11px;
    color: #2e7d32;
    margin-top: 4px;
}

/* ---- Footer ---- */
.ddz-footer {
    background: var(--ddz-black);
    color: var(--ddz-white);
    padding: 48px 32px;
}
.ddz-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.ddz-footer h4 {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
}
.ddz-footer a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    line-height: 2;
}
.ddz-footer a:hover { color: var(--ddz-white); }
.ddz-footer-address {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.8;
}
.ddz-footer .ddz-logo-img {
    height: 52px;
    margin-bottom: 16px;
}
.ddz-footer-email {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.ddz-footer-email input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--ddz-white);
    font-family: var(--ddz-font);
    font-size: 13px;
}
.ddz-footer-email button {
    background: var(--ddz-red);
    color: var(--ddz-white);
    border: none;
    padding: 10px 16px;
    font-family: var(--ddz-font);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
}
.ddz-footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
}

/* ---- Archive / shop grid ---- */
.ddz-archive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px;
}
.ddz-archive-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 32px;
}
ul.products.ddz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.products.ddz-grid::before,
ul.products.ddz-grid::after {
    display: none !important;
}
ul.products.ddz-grid li.ddz-product {
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}
.ddz-product-link {
    display: block;
    text-decoration: none;
    color: var(--ddz-black);
}
.ddz-product-link img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--ddz-light);
    margin: 0;
}
.ddz-product-name {
    font-size: 13px;
    font-weight: 500;
    margin: 12px 0 4px;
    letter-spacing: 0.02em;
    line-height: 1.4;
}
.ddz-product-price {
    font-size: 13px;
    color: var(--ddz-grey);
}
.ddz-product-price del {
    color: var(--ddz-grey);
    margin-right: 6px;
}
.ddz-product-price ins {
    text-decoration: none;
    color: var(--ddz-red);
}

/* ---- Product page ---- */
.ddz-product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px;
}

/* ---- Gallery: 2-up grid on desktop, swipe slideshow + dots on mobile ---- */
.ddz-product-gallery {
    align-content: start;
}
.ddz-gallery-slides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.ddz-product-gallery:not(.ddz-gallery-multi) .ddz-gallery-slides {
    grid-template-columns: 1fr;
}
.ddz-gallery-slide {
    display: block;
}
.ddz-gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    background: var(--ddz-light);
}
/* Dots (mobile only) */
.ddz-gallery-dots {
    display: none;
}

@media (max-width: 900px) {
    .ddz-gallery-slides {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
    }
    .ddz-gallery-slides::-webkit-scrollbar { display: none; }
    .ddz-gallery-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
    .ddz-gallery-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 14px 0 4px;
    }
    .ddz-gallery-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1px solid var(--ddz-border);
        background: var(--ddz-white);
        padding: 0;
        cursor: pointer;
        transition: background 0.15s;
    }
    .ddz-gallery-dot.active {
        background: var(--ddz-black);
        border-color: var(--ddz-black);
    }
}

.ddz-product-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 14px;
    line-height: 1.3;
}
.ddz-product-price {
    font-size: 18px;
    margin: 0 0 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.ddz-product-price .ddz-price-sale {
    font-weight: 700;
    color: var(--ddz-black);
}
.ddz-product-price .ddz-price-regular {
    color: var(--ddz-grey);
    font-size: 15px;
}
.ddz-product-price s {
    color: var(--ddz-grey);
}

/* ---- Variation pills ---- */
.ddz-variations {
    margin: 0 0 20px;
}
.ddz-attribute {
    margin-bottom: 18px;
}
.ddz-attribute-label {
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    color: #333;
}
.ddz-size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.ddz-size-pill {
    cursor: pointer;
}
.ddz-size-pill-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.ddz-size-pill-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--ddz-border);
    font-family: var(--ddz-font);
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--ddz-black);
    transition: all 0.15s;
}
.ddz-size-pill:hover .ddz-size-pill-text {
    border-color: var(--ddz-black);
}
.ddz-size-pill.selected .ddz-size-pill-text {
    background: var(--ddz-black);
    color: var(--ddz-white);
    border-color: var(--ddz-black);
}
.ddz-hidden-select {
    display: none;
}
.ddz-variations .reset_variations {
    display: none;
}

.ddz-add-to-cart {
    width: 100%;
    background: var(--ddz-black);
    color: var(--ddz-white);
    border: none;
    padding: 16px;
    font-family: var(--ddz-font);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.ddz-add-to-cart:hover {
    background: #333;
}

/* WooCommerce single add-to-cart button — black, full-width (matches live site). */
.ddz-product-info .single_add_to_cart_button,
.ddz-product-info button.single_add_to_cart_button {
    width: 100%;
    background: var(--ddz-black) !important;
    color: var(--ddz-white) !important;
    border: none !important;
    padding: 16px 24px;
    font-family: var(--ddz-font);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 0;
}
.ddz-product-info .single_add_to_cart_button:hover {
    background: #333 !important;
    color: var(--ddz-white) !important;
}

/* Quantity + button row */
.single_variation_wrap .quantity,
form.cart .quantity {
    display: inline-flex;
    margin-right: 10px;
}

.ddz-product-description {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    border-top: 1px solid var(--ddz-border);
    padding-top: 24px;
}
.ddz-product-description ul {
    margin: 12px 0;
    padding-left: 4px;
    list-style: none;
}
.ddz-product-description li {
    margin-bottom: 8px;
}

/* ---- Related products ---- */
.ddz-related {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 32px 64px;
}
.ddz-related-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
    text-align: center;
}
.ddz-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ddz-related-item {
    text-decoration: none;
    color: inherit;
}
.ddz-related-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--ddz-light);
}
.ddz-related-name {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 4px;
    line-height: 1.4;
}
.ddz-related-price {
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.ddz-related-price .ddz-price-sale {
    font-weight: 700;
    color: var(--ddz-black);
}
.ddz-related-price s {
    color: var(--ddz-grey);
    font-size: 13px;
}
@media (max-width: 900px) {
    .ddz-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Generic page (About / Contact / FAQs / policies) ---- */
.ddz-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 32px 64px;
}
.ddz-page-wrap {
    background: var(--ddz-white);
}
.ddz-page-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 32px;
    text-align: center;
}
.ddz-page-content {
    font-size: 15px;
    line-height: 1.75;
    color: #222;
}
.ddz-page-content h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 36px 0 16px;
}
.ddz-page-content h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 28px 0 12px;
}
.ddz-page-content p {
    margin: 0 0 16px;
}
.ddz-page-content ul,
.ddz-page-content ol {
    margin: 0 0 16px 24px;
    padding: 0;
}
.ddz-page-content li {
    margin-bottom: 8px;
}
.ddz-page-content a {
    color: var(--ddz-red);
    text-decoration: underline;
}
.ddz-page-content a:hover {
    color: var(--ddz-black);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ddz-brands { padding: 16px 20px; }
    .ddz-grid { grid-template-columns: repeat(2, 1fr); }
    ul.products.ddz-grid { grid-template-columns: repeat(2, 1fr); }
    .ddz-footer-cols { grid-template-columns: 1fr; }
    .ddz-product-wrap { grid-template-columns: 1fr; gap: 24px; }
    .ddz-quotes { grid-template-columns: 1fr; }
    .ddz-hero-overlay h1 { font-size: 24px; }
}
@media (max-width: 560px) {
    .ddz-nav { display: none; }
    .ddz-brands { padding: 14px 16px; gap: 16px; }
    .ddz-hero-overlay h1 { font-size: 20px; }
    ul.products.ddz-grid { grid-template-columns: 1fr; }
    .ddz-brand-circle { width: 80px; height: 80px; padding: 10px; }
    .ddz-header .ddz-logo-img { height: 44px; }
}
