/**
 * EZOP Custom Styles
 * Modern Product Gallery & Details Page
 */

/* ========================================
   Product Gallery Styles
   ======================================== */

.ezop-product-gallery {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

/* Main Gallery Container */
.ezop-main-gallery {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ezop-main-image {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: contain;
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.ezop-main-image:hover {
    opacity: 0.95;
}

/* Gallery Navigation Arrows - Modern Design */
.ezop-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #000;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    opacity: 0.7;
}

.ezop-nav-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ezop-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.ezop-prev {
    left: 15px;
}

.ezop-next {
    right: 15px;
}

.ezop-nav-btn i {
    font-size: 22px;
    font-weight: bold;
}

/* Thumbnail Grid */
.ezop-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding: 5px;
}

.ezop-thumbnail-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f5f5f5;
}

.ezop-thumbnail-item:hover {
    border-color: #666;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.ezop-thumbnail-item.active {
    border-color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ezop-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ezop-thumbnail-item:hover img {
    transform: scale(1.05);
}

/* Image Counter */
.ezop-image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    user-select: none;
}

/* Fullscreen Modal */
.ezop-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    animation: fadeIn 0.3s ease;
}

.ezop-fullscreen-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ezop-fullscreen-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ezop-fullscreen-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.ezop-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 100000;
}

.ezop-fullscreen-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

/* Fullscreen Navigation - Modern Design */
.ezop-fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #fff;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100000;
    backdrop-filter: blur(10px);
}

.ezop-fullscreen-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.ezop-fullscreen-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.ezop-fullscreen-nav.prev {
    left: 30px;
}

.ezop-fullscreen-nav.next {
    right: 30px;
}

.ezop-fullscreen-nav i {
    font-size: 26px;
    color: #000;
    font-weight: bold;
}

/* Fullscreen Counter */
.ezop-fullscreen-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    z-index: 100000;
}

/* ========================================
   Product Info Styles
   ======================================== */

.ezop-product-info {
    padding: 0 20px;
}

.ezop-product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

.ezop-product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Technical Specifications */
.ezop-technical-specs {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.ezop-technical-specs h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ezop-spec-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px 15px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
}

.ezop-spec-header strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.ezop-spec-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.ezop-spec-row:hover {
    background: #fff;
}

.ezop-spec-row:last-child {
    border-bottom: none;
}

.ezop-spec-value {
    font-size: 14px;
    color: #666;
}

/* Action Buttons */
.ezop-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.ezop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.ezop-btn-primary {
    background: #000;
    color: #fff;
}

.ezop-btn-primary:hover {
    background: #fff;
    color: #000;
}

.ezop-btn-secondary {
    background: #fff;
    color: #000;
}

.ezop-btn-secondary:hover {
    background: #000;
    color: #fff;
}

/* Loading Spinner */
.ezop-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Zoom Icon */
.ezop-zoom-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.ezop-zoom-icon:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.ezop-zoom-icon i {
    font-size: 18px;
}

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

@media (max-width: 1024px) {
    .ezop-product-title {
        font-size: 28px;
    }
    
    .ezop-spec-header,
    .ezop-spec-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ezop-product-title {
        font-size: 24px;
    }
    
    .ezop-main-gallery {
        min-height: 350px;
    }
    
    .ezop-thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .ezop-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .ezop-prev {
        left: 10px;
    }
    
    .ezop-next {
        right: 10px;
    }
    
    .ezop-nav-btn i {
        font-size: 18px;
    }
    
    .ezop-spec-header {
        display: none;
    }
    
    .ezop-spec-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .ezop-spec-row strong::after {
        content: ': ';
    }
    
    .ezop-fullscreen-nav {
        width: 45px;
        height: 45px;
    }
    
    .ezop-fullscreen-nav.prev {
        left: 15px;
    }
    
    .ezop-fullscreen-nav.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .ezop-product-info {
        padding: 0 10px;
    }
    
    .ezop-product-title {
        font-size: 20px;
    }
    
    .ezop-product-description {
        font-size: 14px;
    }
    
    .ezop-technical-specs {
        padding: 15px;
    }
    
    .ezop-action-buttons {
        gap: 10px;
    }
    
    .ezop-btn {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .ezop-thumbnail-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ezop-animate-in {
    animation: slideUp 0.5s ease;
}

/* Scrollbar Styling */
.ezop-thumbnail-grid::-webkit-scrollbar {
    width: 8px;
}

.ezop-thumbnail-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.ezop-thumbnail-grid::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.ezop-thumbnail-grid::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ========================================
   Action Buttons Styles
   ======================================== */

.ezop-action-buttons {
    margin-top: 30px;
}

.ezop-btn-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ezop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: 2px solid #000;
    border-radius: 6px;
    background: transparent;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.ezop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    transition: left 0.3s ease;
    z-index: -1;
}

.ezop-btn:hover::before {
    left: 0;
}

.ezop-btn:hover {
    color: #fff;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.ezop-btn:active {
    transform: translateY(0);
}

.ezop-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.ezop-btn:hover i {
    transform: scale(1.1);
}

.ezop-btn-primary {
    background: #000;
    color: #fff;
}

.ezop-btn-primary::before {
    background: #fff;
}

.ezop-btn-primary:hover {
    color: #000;
}

.ezop-btn-secondary {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.ezop-btn-secondary::before {
    background: #fff;
}

.ezop-btn-secondary:hover {
    color: #25d366;
    border-color: #25d366;
}

.ezop-btn-outline {
    background: transparent;
    color: #000;
    border-color: #000;
}

.ezop-btn-outline::before {
    background: #000;
}

.ezop-btn-outline:hover {
    color: #fff;
}

/* Responsive Button Layout */
@media (min-width: 768px) {
    .ezop-btn-group {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .ezop-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .ezop-btn i {
        font-size: 16px;
    }
}

/* ========================================
   Project/Product Grid Styles
   ======================================== */

.ezop-product-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.ezop-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.ezop-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f8f8;
}

.ezop-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.ezop-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ezop-main-image,
.ezop-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ezop-hover-image {
    opacity: 0;
    transform: scale(1.1);
}

.ezop-product-card:hover .ezop-main-image {
    transform: scale(1.05);
}

.ezop-product-card:hover .ezop-hover-image {
    opacity: 1;
    transform: scale(1);
}

.ezop-lock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.ezop-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.ezop-product-card:hover .ezop-card-overlay {
    opacity: 1;
}

.ezop-overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.ezop-product-card:hover .ezop-overlay-content {
    transform: translateY(0);
}

.ezop-card-content {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.ezop-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    text-transform: lowercase;
}

.ezop-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ezop-card-title a:hover {
    color: #666;
}

/* Responsive Product Grid */
@media (max-width: 1199px) {
    .ezop-product-card {
        margin-bottom: 25px;
    }
    
    .ezop-card-content {
        padding: 18px;
    }
    
    .ezop-card-title {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .ezop-product-card {
        margin-bottom: 20px;
    }
    
    .ezop-card-content {
        padding: 16px;
    }
    
    .ezop-card-title {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .ezop-product-card {
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .ezop-card-content {
        padding: 14px;
    }
    
    .ezop-card-title {
        font-size: 14px;
    }
    
    .ezop-lock-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .ezop-overlay-content {
        font-size: 14px;
    }
}

/* ========================================
   Product Info Header
   ======================================== */

.ezop-product-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.ezop-product-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.ezop-product-category {
    display: flex;
    align-items: center;
}

.ezop-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.ezop-category-badge i {
    color: #000;
    font-size: 12px;
}

.ezop-full-width-content {
    margin-top: 50px;
}

/* ========================================
   Product Description in Sidebar
   ======================================== */

.ezop-product-description {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.ezop-description-content {
    margin: 0;
}

.ezop-description-text {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

.ezop-description-text p {
    margin-bottom: 15px;
}

.ezop-description-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Modern Technical Specifications
   ======================================== */

.ezop-modern-technical-specs {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.ezop-modern-technical-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #000000 0%, #333333 25%, #666666 50%, #999999 75%, #cccccc 100%);
    border-radius: 20px 20px 0 0;
}

.ezop-tech-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 40px;
    color: #495057;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.ezop-tech-header h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #212529;
}

.ezop-tech-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
    color: #6c757d;
}

.ezop-tech-subtitle {
    margin: 0;
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

.ezop-tech-content {
    padding: 40px;
}

.ezop-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.ezop-spec-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.ezop-spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000 0%, #333333 50%, #666666 100%);
    border-radius: 16px 16px 0 0;
}

.ezop-spec-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #000;
}

.ezop-spec-card:hover::before {
    background: linear-gradient(90deg, #000000 0%, #444444 50%, #888888 100%);
}

.ezop-spec-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px 25px;
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.ezop-spec-card-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.ezop-spec-card-header h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, #666666 100%);
    border-radius: 1px;
}

.ezop-spec-card-body {
    padding: 30px 25px;
    background: #ffffff;
}

.ezop-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
    position: relative;
}

.ezop-spec-item:hover {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding-left: 12px;
    padding-right: 12px;
    margin: 0 -12px;
    border-bottom-color: transparent;
}

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

.ezop-spec-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, #666666 100%);
    transition: width 0.3s ease;
}

.ezop-spec-item:hover::before {
    width: 4px;
}

.ezop-spec-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ezop-spec-label i {
    color: #000;
    width: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.ezop-spec-value {
    font-weight: 700;
    color: #000;
    font-size: 14px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ezop-spec-item:hover .ezop-spec-value {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
}

/* ========================================
   Responsive Design for Full Width Content
   ======================================== */

@media (max-width: 768px) {
    .ezop-full-width-content {
        margin-top: 30px;
    }

    .ezop-tech-header {
        padding: 20px 25px;
    }

    .ezop-tech-header h2 {
        font-size: 20px;
    }

    .ezop-tech-content {
        padding: 25px 20px;
    }

    .ezop-specs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ezop-spec-card-body {
        padding: 25px 20px;
    }

    .ezop-spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 0;
    }

    .ezop-spec-item:hover {
        padding-left: 8px;
        padding-right: 8px;
        margin: 0 -8px;
    }

    .ezop-spec-value {
        align-self: flex-end;
        font-size: 13px;
        padding: 5px 10px;
        border-radius: 20px;
    }

    .ezop-spec-card-header h4 {
        font-size: 14px;
    }

    .ezop-spec-label {
        font-size: 13px;
        gap: 10px;
    }

    .ezop-spec-label i {
        width: 16px;
        font-size: 13px;
    }

    .ezop-product-title {
        font-size: 24px;
    }

    .ezop-category-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ezop-product-description {
        margin: 20px 0;
        padding: 15px;
    }

    .ezop-description-text {
        font-size: 14px;
    }
}
