/*
Theme Name: Digital Products Pro - Clean Version
Description: Professional WordPress theme with clean design, no hover/focus effects
Version: 1.0.0
Author: Digital Theme Studio
Text Domain: digital-clean-theme
License: GPL v2 or later
*/

/* ===========================
   CSS RESET & BASE STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    color: #1111ED;
    text-decoration: none;
}

strong {
    color: #1111ED;
    font-weight: 600;
}

/* ===========================
   LAYOUT CONTAINERS
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ===========================
   HEADER STYLES
=========================== */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1111ED;
    margin: 0;
}

/* Navigation Menu */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-left: 2rem;
    position: relative;
}

.main-menu a {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.account-link, .cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #333;
}

.cart-count {
    background: #1111ED;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
}

/* ===========================
   BUTTONS - NO HOVER EFFECTS
=========================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #1111ED;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: #1111ED;
    border-color: #1111ED;
}

/* ===========================
   FEATURES SECTION
=========================== */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1111ED;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #1111ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #1111ED;
    margin-bottom: 1rem;
}

/* ===========================
   PRODUCT STYLES
=========================== */
.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1111ED;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* ===========================
   TERMS/POLICY STYLES
=========================== */
.terms-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

.terms-policy-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.terms-policy-title {
    color: #1111ED;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px solid #1111ED;
    padding-bottom: 20px;
}

.terms-policy-image {
    text-align: center;
    margin: 30px 0;
}

.terms-banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 300px;
    object-fit: cover;
}

.terms-policy-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.terms-policy-content h2 {
    color: #1111ED;
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

.terms-policy-content h3 {
    color: #1111ED;
    font-size: 1.4em;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.terms-policy-content h4 {
    color: #1111ED;
    font-size: 1.2em;
    margin: 25px 0 10px 0;
    font-weight: 600;
}

.terms-policy-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.terms-policy-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.terms-policy-content li {
    margin-bottom: 8px;
}

.terms-policy-content a {
    color: #1111ED;
    text-decoration: none;
    font-weight: 500;
}

.terms-policy-section {
    margin-bottom: 35px;
}

.terms-policy-intro {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    border-left: 4px solid #1111ED;
}

.terms-contact {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #1111ED;
}

.terms-contact h2 {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.summary-section {
    background: #f0f4ff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #1111ED;
}

.summary-section h2 {
    margin-top: 0;
    border-bottom: 2px solid #1111ED;
    padding-bottom: 10px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.summary-table th,
.summary-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.summary-table th {
    background-color: #1111ED;
    color: white;
    font-weight: 600;
}

/* ===========================
   FOOTER STYLES
=========================== */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-main {
        padding: 0.75rem 0;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-banner-img {
        max-height: 200px;
    }
    
    .terms-policy-container {
        padding: 20px 15px;
    }
    
    .terms-policy-content {
        padding: 30px 25px;
    }
    
    .terms-policy-title {
        font-size: 2em;
    }
    
    .terms-policy-content h2 {
        font-size: 1.5em;
    }
    
    .terms-policy-content h3 {
        font-size: 1.3em;
    }
    
    .terms-policy-content p {
        text-align: left;
    }
    
    .summary-table {
        font-size: 0.9rem;
    }
    
    .summary-table th,
    .summary-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .terms-policy-content {
        padding: 20px 15px;
    }
    
    .terms-policy-title {
        font-size: 1.8em;
    }
    
    .terms-policy-content h2 {
        font-size: 1.4em;
    }
    
    .terms-policy-content ul {
        padding-left: 20px;
    }
    
    .summary-table {
        font-size: 0.8rem;
    }
}

/* ===========================
   UTILITY CLASSES
=========================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===========================
   NO FOCUS/HOVER EFFECTS
   All interactive states removed
=========================== */
button,
a,
input,
textarea,
select {
    outline: none;
}

/* Remove any remaining transitions */
* {
    transition: none !important;
}

/* Static button states only */
.btn:active {
    transform: none;
}

/* ===========================
   ELEMENTOR COMPATIBILITY
=========================== */
.elementor-section {
    position: relative;
}

.elementor-widget {
    position: relative;
}

.elementor-widget-heading .elementor-heading-title {
    color: inherit;
    font-family: inherit;
}

.elementor-button {
    border-radius: 8px;
}

/* ===========================
   PRINT STYLES
=========================== */
@media print {
    .site-header,
    .site-footer,
    .hero-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}