
:root {
    --dawntheme-primary: #034889;
    --dawntheme-dark: #2a2a2a;
    --dawntheme-light: #E6F7FF;
    --dawntheme-gray: #F5F5F5;
    --dawntheme-text: #333333;
    --dawntheme-border: #E5E5E5;
    --dawntheme-nav-bg: #282828;
    --dawntheme-trust-bar-bg: #f3f4f6;
    --dawntheme-trust-bar-text: #333333;
    --dawntheme-hero-from: #07224a;
    --dawntheme-hero-to: #546b8f;
    --dawntheme-cta-bg: #00b900;
    --dawntheme-cta-hover-bg: #008a00;
    --dawntheme-parts-text: #0093ad;
    --dawntheme-footer-bg: #EEF3F4;
}

html {
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html { overflow-y: scroll; }
}

.currency-symbol {
    font-size: inherit;
    vertical-align: baseline;
    line-height: inherit;
}

.decimal-separator,
.decimal-part {
    font-size: inherit;
    vertical-align: baseline;
    line-height: inherit;
}

.h-9 {
    height: 2.2rem;
}

.text-dawntheme {
    color: var(--dawntheme-primary) !important;
}

.hover\:text-dawntheme:hover {
    color: var(--dawntheme-primary) !important;
}

.bg-dawntheme {
    background-color: var(--dawntheme-primary);
}

.bg-dawntheme-gray {
    background-color: var(--dawntheme-gray);
}

.border-dawntheme {
    border-color: var(--dawntheme-primary);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dawntheme-text);
    line-height: 1.5;
}

.prose {
    color: var(--dawntheme-text);
    max-width: none;
}

.prose p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: var(--dawntheme-text);
}

.prose h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dawntheme-text);
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.1;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dawntheme-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dawntheme-text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.prose ul, .prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.prose strong {
    font-weight: 600;
    color: var(--dawntheme-text);
}

.prose a {
    color: var(--dawntheme-primary);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.prose a:hover {
    color: var(--dawntheme-dark);
}

@media (max-width: 768px) {
    .prose h1 {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
    
    .prose h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .prose h3 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .prose p {
        font-size: 15px;
        margin-bottom: 1rem;
    }
    
    .prose ul, .prose ol {
        margin-bottom: 1rem;
        padding-left: 1.25rem;
    }
    
    .content-area {
        padding: 1.5rem;
        margin: 0.5rem 0;
        border-radius: 8px;
    }

article .prose {
        padding: 0;
    }
}

p {
    font-size: 15px;
    line-height: 1.6;
}

p.text-gray-600 {
    font-size: 15px !important;
}

.prose blockquote {
    border-left: 4px solid var(--dawntheme-primary);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.prose hr {
    border: none;
    border-top: 1px solid var(--dawntheme-border);
    margin: 2rem 0;
}

.prose {
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.prose p + p {
    margin-top: 0;
}

.prose h2 + p,
.prose h3 + p {
    margin-top: 0;
}

.prose strong,
.prose b {
    font-weight: 600;
    color: var(--dawntheme-text);
}

.prose li > p {
    margin-bottom: 0.5rem;
}

.prose li:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.content-area {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 1rem 0;
}

article .prose {
    font-size: 1rem;
    line-height: 1.7;
}

.prose ul li {
    position: relative;
    padding-left: 0.5rem;
}

.prose ul li::before {
    content: "•";
    color: var(--dawntheme-primary);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.prose > *:first-child {
    margin-top: 0 !important;
}

.prose > *:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem; 
    }
    
    h2 {
        font-size: 1.5rem; 
    }
    
    h3 {
        font-size: 1.25rem; 
    }
}

.btn-dawntheme {
    background-color: var(--dawntheme-primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; 
}

.btn-dawntheme:hover {
    background-color: var(--dawntheme-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
}

.btn-dawntheme-outline {
    background-color: transparent;
    color: var(--dawntheme-primary);
    border: 2px solid var(--dawntheme-primary);
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.btn-dawntheme-outline:hover {
    background-color: var(--dawntheme-light);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .btn-dawntheme,
    .btn-dawntheme-outline {
        padding: 14px 20px;
        font-size: 16px; 
        width: 100%;
        justify-content: center;
    }
}

.dawntheme-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    overflow: hidden;
}

.dawntheme-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--dawntheme-border);
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.product-card-horizontal {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--dawntheme-border);
    display: block;
    width: 100%;
}

.product-card:hover,
.product-card-horizontal:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-card img {
    transition: transform 0.2s ease;
}

@media (min-width: 768px) {
    .md\:py-12 {
        padding-top: 2em;
        padding-bottom: 2em;
    }
}

.product-card:hover img,
.product-card-horizontal:hover img {
    transform: scale(1.05);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 8 / 5;
    overflow: hidden;
    background-color: var(--dawntheme-gray);
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@supports not (aspect-ratio: 8 / 5) {
    .product-image-container {
        position: relative;
        width: 100%;
        padding-bottom: 62.5%; 
        height: 0;
    }
    
    .product-image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
}

.product-card .product-content {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.25rem;
}

.product-card .product-title {
    font-weight: 400;
    color: var(--dawntheme-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem; 
    font-weight: 600;
}

.product-card .product-stock {
    font-size: 0.75rem;
}

.product-card .product-button {
    width: 100%;
    margin-top: auto;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-card:hover {
        transform: none; 
    }
    
    .product-card:hover img {
        transform: none;
    }
    
    .product-card .product-content {
        padding: 0.75rem 0.75rem 0 0.75rem;
        gap: 0.25rem;
    }
    
    .product-card .product-title {
        font-size: 0.875rem;
    }
    
    .product-card .product-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

.dawntheme-search {
    border-radius: 8px;
    border: 2px solid var(--dawntheme-border);
    transition: all 0.2s ease;
    font-size: 14px;
    min-height: 44px;
}

.dawntheme-search:focus {
    border-color: var(--dawntheme-primary);
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
    outline: none;
}

@media (max-width: 768px) {
    .dawntheme-search {
        font-size: 16px; 
        padding: 12px 16px;
    }
}

.category-card {
    background: var(--dawntheme-gray);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    min-height: 120px;
}

.category-card:hover {
    background: var(--dawntheme-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.category-card h3 {
    color: var(--dawntheme-text);
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0 4px 0;
}

.category-card:hover h3 {
    color: var(--dawntheme-primary);
}

@media (max-width: 768px) {
    .category-card {
        padding: 16px 8px;
        min-height: 100px;
    }
    
    .category-card h3 {
        font-size: 12px;
    }
    
    .category-card:hover {
        transform: none;
    }
}

.header-top {
    background: var(--dawntheme-dark);
    font-size: 12px;
    padding: 8px 0;
}

.header-main {
    background: var(--dawntheme-primary);
    padding: 16px 0;
}

.header-nav {
    margin-top: 16px;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--dawntheme-light);
}

@media (max-width: 1199px) {
    .header-top {
        display: none; 
    }
    
    .header-main {
        padding: 12px 0;
    }

.header-nav {
        margin-top: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .header-nav::-webkit-scrollbar {
        display: none;
    }
    
    .header-nav ul {
        display: flex;
        gap: 16px;
        padding: 0 0 8px 0;
        margin: 0;
        list-style: none;
        min-width: max-content;
    }
    
    .header-nav a {
        font-size: 13px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        display: block;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
}

@media (max-width: 1199px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .desktop-nav {
        display: block !important;
    }
}

#mobile-menu .flex-1.overflow-y-auto {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--dawntheme-primary) #f5f5f5;
}

#mobile-menu .flex-1.overflow-y-auto::-webkit-scrollbar {
    width: 4px;
}

#mobile-menu .flex-1.overflow-y-auto::-webkit-scrollbar-track {
    background: #f5f5f5;
}

#mobile-menu .flex-1.overflow-y-auto::-webkit-scrollbar-thumb {
    background: var(--dawntheme-primary);
    border-radius: 2px;
}

#mobile-menu .flex-1.overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: var(--dawntheme-dark);
}

.cart-drawer {
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-drawer.open {
    transform: translateX(0);
}

@media (max-width: 1199px) {
    .cart-drawer {
        width: 100vw;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-newsletter {
        margin-bottom: 2rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-payment {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.form-input {
    border: 2px solid var(--dawntheme-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
    min-height: 44px;
}

.form-input:focus {
    border-color: var(--dawntheme-primary);
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
    outline: none;
}

@media (max-width: 768px) {
    
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="url"],
    input[type="search"],
    input[type="date"],
    input[type="time"],
    input[type="datetime-local"],
    input:not([type]),
    select,
    textarea {
        font-size: 15px !important;
    }
    
    .form-input {
        font-size: 16px; 
        padding: 14px 16px;
    }
}

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

.newsletter-form input {
    flex: 1;
    border: 2px solid white;
    border-radius: 8px 0 0 8px;
    padding: 12px 16px;
    font-size: 14px;
    min-height: 44px;
}

.newsletter-form button {
    border-radius: 0 8px 8px 0;
    padding: 12px 24px;
    background: white;
    color: var(--dawntheme-primary);
    border: 2px solid white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.newsletter-form button:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 8px;
        max-width: 100%;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 8px;
        font-size: 16px;
        width: 100%;
    }
}

.grid-responsive {
    display: grid;
    gap: 1rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .sm-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg-grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .lg-grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

@media (max-width: 768px) {
    .mobile-space-y-2 > * + * {
        margin-top: 0.5rem;
    }
    
    .mobile-space-y-4 > * + * {
        margin-top: 1rem;
    }
    
    .mobile-px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .mobile-py-2 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .mobile-py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

@media (max-width: 768px) {
    .mobile-flex-col {
        flex-direction: column;
    }
    
    .mobile-items-stretch {
        align-items: stretch;
    }
    
    .mobile-justify-center {
        justify-content: center;
    }
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

@media (max-width: 768px) {
    .mobile-text-center {
        text-align: center;
    }
    
    .mobile-text-left {
        text-align: left;
    }
}

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .mobile-image-container {
        position: relative;
        overflow: hidden;
    }
    
    .mobile-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 60;
    max-width: 400px;
    padding: 1rem 1.25rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--dawntheme-primary);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #00AA44;
    background-color: #f0fff4;
    color: #065f46;
}

.notification.error {
    border-left-color: #FF4444;
    background-color: #fef2f2;
    color: #991b1b;
}

.notification.warning {
    border-left-color: #f59e0b;
    background-color: #fffbeb;
    color: #92400e;
}

@media (max-width: 768px) {
    .notification {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
        padding: 0.75rem 1rem;
        font-size: 14px;
    }
}

.cart-item {
    border-bottom: 1px solid var(--dawntheme-border);
    padding: 16px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .cart-item {
        padding: 12px 0;
    }
    
    .cart-item img {
        width: 60px;
        height: 60px;
    }
    
    .cart-item h4 {
        font-size: 14px;
    }
    
    .cart-item .quantity-controls button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 55fr 45fr !important;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-gallery {
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .tab-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tab-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .tab-navigation nav {
        min-width: max-content;
    }
    
    .tab-button {
        white-space: nowrap;
        padding: 12px 16px;
        font-size: 14px;
    }
}

.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.price-skeleton,
.price-skeleton-lg,
.price-skeleton-sm {
    display: inline-block;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    border-radius: 4px;
    vertical-align: middle;
}

.price-skeleton {
    min-width: 70px;
    height: 1.2em;
}

.price-skeleton-lg {
    min-width: 90px;
    height: 1.5em;
}

.price-skeleton-sm {
    min-width: 55px;
    height: 1em;
    border-radius: 3px;
}

.price-skeleton:not(:empty),
.price-skeleton-lg:not(:empty),
.price-skeleton-sm:not(:empty) {
    background: none;
    animation: none;
    min-width: auto;
    height: auto;
    border-radius: 0;
}

@media (max-width: 1199px) {
    button,
    .btn,
    .btn-dawntheme,
    .btn-dawntheme-outline,
    input[type="button"],
    input[type="submit"],
    a.button {
        padding: 0.75rem 1rem;
        min-width: 44px;
        touch-action: manipulation;
    }

.cart-drawer .cart-item button {
        padding: 0;
        min-width: auto;
    }

.cart-toggle,
    .mobile-menu-toggle,
    .search-button {
        padding: 12px;
        min-height: 48px;
        min-width: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.focus-ring:focus {
    outline: 2px solid var(--dawntheme-primary);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .btn-dawntheme,
    .btn-dawntheme-outline {
        border: 2px solid currentColor;
    }
    
    .form-input {
        border-width: 2px;
    }
}

@media print {
    .no-print,
    .header,
    .footer,
    .cart-drawer,
    .notification {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .dawntheme-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199px) and (orientation: landscape) {
    .header-main {
        padding: 8px 0;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        min-height: 80px;
    }
    
    .category-card h3 {
        font-size: 0.875rem;
    }
    
    .product-card .btn-dawntheme {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

.custom-add-to-cart-btn {
    border: none !important;
    border-bottom: 3px solid var(--dawntheme-cta-hover-bg, #009900) !important;
    border-radius: 8px !important;
    background-color: var(--dawntheme-cta-bg, #00b900) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    transition: all 0.2s ease !important;
}

.custom-add-to-cart-btn:hover {
    background-color: var(--dawntheme-cta-hover-bg, #008a00) !important;
    border-bottom: 3px solid var(--dawntheme-cta-hover-bg, #007700) !important;
    transform: translateY(-1px) !important;
}

.custom-add-to-cart-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.floating-logo-text {
    color: #9c9c9c;
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-logo-image {
    width: 75px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .floating-logo-text {
        font-size: 9px;
        margin-bottom: 4px;
    }
    
    .floating-logo-image {
        width: 62px;
        max-height: 31px;
    }
}

.hero-adapter-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 225, 255, 0.5));
}

@media (max-width: 768px) {
    .hero-adapter-image {
        max-width: 250px;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .md\:h-96 {
        mix-blend-mode: darken;
    }
}

.h-64 {
    mix-blend-mode: darken;
}

.product-image-container img {
    mix-blend-mode: darken;
}

.product-image-gallery img {
    mix-blend-mode: darken;
}

.cart-item img {
    mix-blend-mode: darken;
    object-fit: contain;
    background-color: #f3f3f3;
    padding: 3px;
}

#checkout-order-items img {
    mix-blend-mode: darken;
    object-fit: contain;
    background-color: #f3f3f3;
    padding: 3px;
}

.product-card img {
    mix-blend-mode: darken;
}

.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--dawntheme-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 113, 199, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-btn:hover {
    background-color: var(--dawntheme-dark);
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 113, 199, 0.4);
}

.back-to-top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    
    details summary {
        list-style: none;
        outline: none;
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

details summary::-webkit-details-marker {
        display: none;
    }

details summary {
        text-align: left !important;
        justify-content: space-between !important;
        align-items: center !important;
        display: flex !important;
    }

details[open] summary svg:last-child {
        transform: rotate(180deg);
        transition: transform 0.2s ease;
    }
    
    details summary svg:last-child {
        transform: rotate(0deg);
        transition: transform 0.2s ease;
    }

details summary {
        min-height: 44px;
        padding: 8px 0;
        cursor: pointer;
        -webkit-touch-callout: none;
    }

#mobile-menu ul li {
        list-style: none;
    }
    
    #mobile-menu details ul {
        margin-top: 8px;
        padding-left: 24px;
    }

#mobile-menu * {
        -webkit-tap-highlight-color: rgba(0, 153, 204, 0.1);
    }

#mobile-menu .overflow-y-auto {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
}

@media (max-width: 768px) {
    #mobile-menu .w-80 {
        width: 100vw !important;
        max-width: 100vw !important;
    }
}

@media (max-width: 320px) {
    #mobile-menu {
        width: 100vw;
    }
    
    #mobile-menu .w-80 {
        width: 100vw;
        max-width: 100vw;
    }
}

#mobile-usp-carousel {
    position: relative;
    overflow: hidden;
    height: 20px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    white-space: nowrap;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.carousel-slide:not(.active) {
    opacity: 0;
    transform: translateX(-30px);
    pointer-events: none;
}

.carousel-slide span {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    padding: 0 12px;
    transition: all 0.3s ease;
}

#mobile-usp-carousel .carousel-slide:first-child {
    animation: fadeInInitial 0.8s ease-out;
}

@keyframes fadeInInitial {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 320px) {
    .carousel-slide span {
        font-size: 11px;
        padding: 0 8px;
    }
    
    #mobile-usp-carousel {
        height: 18px;
    }
}

.revenue-scroll::-webkit-scrollbar {
    display: none;
}

.revenue-scroll {
    -webkit-overflow-scrolling: touch;
}

.cf-turnstile {
    margin: 0.5rem 0;
}

.cf-turnstile iframe {
    max-height: 65px !important;
}
