/*--------------------------------------------------------------
# DEALS PAGE - OPTIMIZED VERSION
--------------------------------------------------------------*/

/* CSS Variables for Deals Page */
.deals-page {
    --deals-card-min-width: 380px;
    --deals-card-min-height: 520px;
    --deals-gap: 2rem;
    --deals-border-radius: 20px;
}

/*--------------------------------------------------------------
# Base Page Styles
--------------------------------------------------------------*/
.deals-page .site-main {
    padding-top: 0;
    background: var(--color-primary-black);
}

.deals-page {
    background: var(--color-primary-black);
    color: var(--color-neutral-white);
    min-height: 100vh;
}

.deals-page #primary {
    width: 100%;
    max-width: none;
}

.deals-page section {
    width: 100%;
    max-width: none;
}

.deals-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.deals-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.deals-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.deals-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: shimmer 2s infinite;
}

.deals-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-neutral-white) 0%, var(--color-accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.deals-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Featured Deals Section
--------------------------------------------------------------*/
.featured-deals-section {
    padding: 5rem 0;
    background: var(--color-primary-black);
    position: relative;
}

.featured-deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.featured-deals-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-neutral-white);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/*--------------------------------------------------------------
# Featured Deal Card
--------------------------------------------------------------*/
.featured-deal-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--deals-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.4s ease;
    position: relative;
}

.featured-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
    border-color: var(--color-accent-gold);
}

/* Featured Deal Link Overlay - Makes entire featured deal card clickable */
.featured-deal-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
    color: transparent;
    background: transparent;
    border: none;
    cursor: pointer;
}

.featured-deal-inner {
    position: relative;
    z-index: 1;
}

.featured-deal-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 400px;
}

@media (min-width: 968px) {
    .featured-deal-content-wrapper {
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }
}

.featured-deal-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
}

.featured-deal-header {
    margin-bottom: 2rem;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-deal-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-deal-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-deal-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.sale-price {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-gold);
}

.savings-badge {
    background: var(--color-error);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
}

.discount-text {
    font-size: 0.9rem;
    color: var(--color-error);
    font-weight: var(--font-weight-semibold);
}

.featured-deal-countdown {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.countdown-header {
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-semibold);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-segment {
    text-align: center;
    min-width: 50px;
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-white);
}

.countdown-text {
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-deal-cta {
    margin-top: auto;
}

.featured-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-primary-black);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 10;
}

.featured-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-primary-black);
    text-decoration: none;
}

.cta-icon {
    font-size: 1.2rem;
}

.featured-deal-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.featured-deal-card:hover .featured-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-deal-card:hover .image-overlay {
    opacity: 1;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--color-accent-gold);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-text {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent-gold);
}

.featured-deal-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.featured-badge-overlay {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.featured-badge-primary {
    background: rgba(255, 215, 0, 0.95);
    color: var(--color-primary-black);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.featured-badge-discount {
    background: rgba(255, 0, 0, 0.95);
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Deals Grid
--------------------------------------------------------------*/
.deals-main-section {
    padding: 4rem 0;
    background: var(--color-primary-black);
}

.deals-grid-container {
    width: 100%;
    max-width: none;
}

/* Consolidated Deal Grid Styles */
.deals-page .deals-grid,
.deals-main-section .deals-grid,
.container .deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--deals-card-min-width), 1fr));
    gap: var(--deals-gap);
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    align-items: start;
    grid-auto-rows: minmax(var(--deals-card-min-height), auto);
    list-style: none;
}

/* Consolidated Deal Card Styles */
.deals-page .deal-card,
.deals-grid .deal-card,
article.deal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-height: var(--deals-card-min-height);
    box-sizing: border-box;
    margin: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--deals-border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    color: var(--color-neutral-white);
    text-decoration: none;
    font-family: inherit;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border-color: var(--color-accent-gold);
}

/* Deal Card Link Overlay - Makes entire card clickable */
.deal-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
    color: transparent;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Deal Card Structure */
.deal-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.deal-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    box-sizing: border-box;
    border-radius: 12px;
}

.deal-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.deal-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 12px;
}

.deal-card:hover .deal-featured-image {
    transform: scale(1.05);
}

/* Deal Badges */
.deal-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
    pointer-events: none;
}

.deal-badge {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    display: inline-block;
    line-height: 1.3;
    font-family: inherit;
    min-width: fit-content;
    width: auto;
}

.deal-badge-primary {
    background: rgba(255, 215, 0, 0.95);
    color: var(--color-primary-black);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.deal-badge-discount {
    background: rgba(255, 0, 0, 0.95);
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Urgency Indicator */
.urgency-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 0, 0, 0.95);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    z-index: 10;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    min-width: fit-content;
    width: auto;
    line-height: 1.3;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Deal Content */
.deal-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-sizing: border-box;
    color: var(--color-neutral-white);
    min-height: 0;
}

.deal-header {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.deal-title {
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.deal-title-text {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-white);
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.deal-card:hover .deal-title-text {
    color: var(--color-accent-gold);
}

.deal-category {
    font-size: var(--font-size-sm);
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.2;
}

.deal-description {
    font-size: var(--font-size-base);
    color: #ccc;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Deal Footer */
.deal-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #333;
    flex-shrink: 0;
    box-sizing: border-box;
}

.deal-expiry-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: var(--font-size-sm);
    color: var(--color-error);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expiry-label,
.expiry-date {
    font-weight: var(--font-weight-semibold);
    color: var(--color-error);
}

.deal-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-primary-black);
    border: none;
    border-radius: 25px;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.deal-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--color-primary-black);
    text-decoration: none;
}

/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/
.deals-newsletter-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 4rem 0;
    border-top: 1px solid #333;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-neutral-white);
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.newsletter-signup {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-signup input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-neutral-white);
    font-size: 1rem;
}

.newsletter-signup input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.newsletter-signup button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-primary-black);
    border: none;
    border-radius: 8px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-signup button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/*--------------------------------------------------------------
# No Deals Section
--------------------------------------------------------------*/
.no-deals-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--color-primary-black);
}

.no-deals-container {
    max-width: 600px;
    margin: 0 auto;
}

.no-deals-content {
    text-align: center;
}

.no-deals-icon {
    font-size: 4rem;
    color: var(--color-accent-gold);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.no-deals-content h2 {
    font-size: 2rem;
    color: var(--color-neutral-white);
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.no-deals-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.no-deals-content .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    color: var(--color-primary-black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.no-deals-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--color-primary-black);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .deals-page {
        --deals-card-min-width: 350px;
    }
}

@media (max-width: 1024px) {
    .deals-page {
        --deals-card-min-width: 320px;
        --deals-gap: 1.5rem;
        --deals-card-min-height: 480px;
    }
    
    .deals-hero .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .featured-deal-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .featured-deal-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-segment {
        min-width: 40px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .deals-page {
        --deals-card-min-width: 100%;
        --deals-gap: 1.5rem;
        --deals-card-min-height: 450px;
    }
    
    .deals-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-signup {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .deals-page {
        --deals-gap: 1rem;
        --deals-card-min-height: 400px;
    }
    
    .deals-hero {
        padding: 3rem 0;
    }
    
    .deals-hero .hero-title {
        font-size: 2rem;
    }
    
    .deals-main-section {
        padding: 3rem 0;
    }
    
    .deal-card-content {
        padding: 1.2rem;
    }
    
    .deal-cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Ensure visibility and prevent layout issues */
.deal-card,
.featured-deal-card {
    opacity: 1;
    visibility: visible;
}

/* Grid stability */
.deals-grid > * {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Clear floats */
.deals-grid-container::before,
.deals-grid-container::after {
    content: "";
    display: table;
    clear: both;
} 