.elementor-273 .elementor-element.elementor-element-2f79941{--display:flex;--margin-top:20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-2deee21 */.collections-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #297C91, #34a8c4);
    opacity: 0.08;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1400px; /* Increased to accommodate 3 items */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 80px;
    position: relative;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.title-word {
    display: inline-block;
    background: linear-gradient(45deg, #caab59, #caab59, #caab59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease forwards;
}

.title-word-1 { animation-delay: 0.2s; }
.title-word-2 { animation-delay: 0.5s; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Collections Grid - Updated for 3 items */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed to exactly 3 columns */
    gap: 30px; /* Reduced gap to fit 3 items */
    margin-top: 40px;
}

.collection-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(41, 124, 145, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 10px 30px rgba(41, 124, 145, 0.1);
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(41, 124, 145, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.collection-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(41, 124, 145, 0.2),
        0 0 100px rgba(41, 124, 145, 0.1);
}

.collection-item:hover::before {
    opacity: 1;
}

/* Collection Image */
.collection-image {
    position: relative;
    width: 100%;
    height: 500px; /* Slightly reduced height to fit better */
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.95);
}

.collection-item:hover .collection-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05);
}

/* Overlay Effects */
.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(41, 124, 145, 0.1) 0%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.3) 100%
    );
    transition: all 0.6s ease;
    z-index: 2;
}

.collection-item:hover .collection-overlay {
    background: linear-gradient(
        45deg,
        rgba(41, 124, 145, 0.2) 0%,
        transparent 30%,
        transparent 70%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

/* Sparkle Animation */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.sparkle-container::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 4px;
    height: 4px;
    background: #297C91;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s linear infinite;
}

.sparkle-container::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 30%;
    width: 3px;
    height: 3px;
    background: #34a8c4;
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2.5s linear infinite 1s;
}

.collection-item:hover .sparkle-container::before,
.collection-item:hover .sparkle-container::after {
    animation: sparkleHover 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes sparkleHover {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Collection Content */
.collection-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px; /* Slightly reduced padding */
    z-index: 4;
}

.title-wrapper {
    position: relative;
    overflow: hidden;
}

.collection-title {
    font-size: 2.5em; /* Slightly reduced font size */
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px; /* Slightly reduced letter spacing */
    transform: translateY(0);
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.collection-item:hover .collection-title {
    color: #caab59;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #fff, #caab59);
    margin-top: 15px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.collection-item:hover .title-underline {
    width: 100%;
    background: linear-gradient(90deg, #caab59, rgba(255, 255, 255, 0.8));
}

/* Hover Reveal Effect */
.hover-reveal {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    z-index: 3;
}

.collection-item:hover .hover-reveal {
    left: 100%;
}

.reveal-shine {
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
}

/* Collection Specific Styles */
.macbook-collection:hover {
    border-color: rgba(41, 124, 145, 0.5);
    background: rgba(41, 124, 145, 0.1);
}

.iphone-collection:hover {
    border-color: rgba(52, 168, 196, 0.5);
    background: rgba(52, 168, 196, 0.1);
}

.ipad-collection:hover {
    border-color: rgba(41, 100, 120, 0.5);
    background: rgba(41, 100, 120, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .collection-image {
        height: 450px;
    }
    
    .collection-title {
        font-size: 2.2em;
    }
}

@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .collection-item:last-child {
        grid-column: span 2;
        max-width: 70%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .collection-image {
        height: 400px;
    }
    
    .collection-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .collections-section {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .collection-image {
        height: 300px;
    }
    
    .collection-title {
        font-size: 1.8em;
        letter-spacing: 2px;
    }
    
    .collection-content {
        padding: 25px;
    }
}/* End custom CSS */